blessing-skin-server/app/Http/Middleware/CheckAuthenticated.php

65 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace App\Http\Middleware;
use App\Models\User;
use App\Models\UserModel;
use App\Exceptions\PrettyPageException;
use View;
use Http;
use Session;
class CheckAuthenticated
{
public function handle($request, \Closure $next, $return_user = false)
{
if (Session::has('uid')) {
$user = new User(session('uid'));
if (session('token') != $user->getToken())
Http::redirect('../auth/login', '无效的 token请重新登录~');
if ($user->getPermission() == "-1") {
// delete cookies
setcookie('uid', '', time() - 3600, '/');
setcookie('token', '', time() - 3600, '/');
Session::flush();
Session::save();
throw new PrettyPageException('你已经被本站封禁啦,请联系管理员解决', 5);
}
// ask for filling email
if ($user->email == "") {
if (isset($_POST['email'])) {
if (\Validate::email($_POST['email'])) {
if (UserModel::where('email', $_POST['email'])->get()->isEmpty()) {
$user->setEmail($_POST['email']);
// refresh token
Session::put('token', $user->getToken(true));
setcookie('token', session('token'), time() + 3600, '/');
return $user;
} else {
return View::make('auth.bind')->with('msg', '该邮箱已被占用');
}
} else {
return View::make('auth.bind')->with('msg', '邮箱格式错误');
}
exit;
}
return view('auth.bind');
exit;
}
if ($return_user)
return $user;
return $next($request);
} else {
Http::redirect('../auth/login', '非法访问,请先登录');
}
return $next($request);
}
}