blessing-skin-server/app/Http/Middleware/CheckAuthenticated.php
2016-09-11 15:39:55 +08:00

66 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())
return redirect('auth/login')->with('msg', '无效的 token请重新登录');
if ($user->getPermission() == "-1") {
// delete cookies
setcookie('uid', '', time() - 3600, '/');
setcookie('token', '', time() - 3600, '/');
Session::flush();
throw new PrettyPageException('你已经被本站封禁啦,请联系管理员解决', 5);
}
// ask for filling email
if ($user->email == "") {
if (isset($request->email)) {
if (filter_var($request->email, FILTER_VALIDATE_EMAIL)) {
if (UserModel::where('email', $request->email)->get()->isEmpty()) {
$user->setEmail($request->email);
// refresh token
Session::put('token', $user->getToken(true));
setcookie('token', session('token'), time() + 3600, '/');
return $next($request);
} else {
echo View::make('auth.bind')->with('msg', '该邮箱已被占用');
}
} else {
echo View::make('auth.bind')->with('msg', '邮箱格式错误');
}
exit;
}
View::show('auth.bind');
exit;
}
if ($return_user)
return $user;
return $next($request);
} else {
return redirect('auth/login')->with('msg', '非法访问,请先登录');
}
return $next($request);
}
}