mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
35 lines
1021 B
PHP
Executable File
35 lines
1021 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Closure;
|
|
use Laravel\Horizon\Horizon;
|
|
|
|
class Admin
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
$authorization = $request->input('auth_data') ?? $request->header('authorization');
|
|
if (!$authorization) abort(403, '未登录或登陆已过期');
|
|
|
|
$authData = explode(':', base64_decode($authorization));
|
|
if (!isset($authData[1]) || !isset($authData[0])) abort(403, '鉴权失败,请重新登入');
|
|
$user = \App\Models\User::where('password', $authData[1])
|
|
->where('email', $authData[0])
|
|
->first();
|
|
if (!$user) abort(403, '鉴权失败,请重新登入');
|
|
if (!$user->is_admin) abort(403, '未登录或登陆已过期');
|
|
$request->merge([
|
|
'user' => $user
|
|
]);
|
|
return $next($request);
|
|
}
|
|
}
|