1 Star 0 Fork 0

没有哆啦a梦的大雄/laravue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
AdminServiceProvider.php 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
没有哆啦a梦的大雄 提交于 2024-06-02 07:27 . 222222
<?php
namespace App\Admin;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Str;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Facades\Redis;
use Illuminate\Support\Facades\Config;
use Illuminate\Http\Request;
use App\Admin\Models\User as AdminUserModel;
class AdminServiceProvider extends ServiceProvider
{
private static $adminGuardName = 'admin-token';
/**
* 启动服务
*/
public function boot(): void
{
if (!config('admin.enabled')) {
return;
}
// 注册看守器
$this->registerGuard();
Auth::viaRequest(static::$adminGuardName, [$this, 'guard']);
// 注册路由
$this->registerRoutes();
}
public function registerGuard()
{
Config::set('auth.guards.admin', [
'driver' => static::$adminGuardName,
'provider' => 'admin',
]);
Config::set('auth.providers.admin', [
'driver' => 'eloquent',
'model' => App\Admin\Models\User::class,
]);
}
/**
* 注册后台路由
*/
protected function registerRoutes()
{
Route::middlewareGroup('admin.api', config('admin.middleware', []));
Route::group([
'domain' => config('admin.domain', null),
'namespace' => 'App\Admin\Controllers',
'prefix' => config('admin.path', 'admin-api'),
'middleware' => 'admin.api',
], function () {
// $this->loadRoutesFrom(__DIR__.'/routes.php');
$this->loadRoutesFrom(base_path('routes/admin.php'));
});
}
/**
* 注册后台看守器
*/
public function guard(Request $request)
{
$token = Admin::getAuthorization($request);
if( empty($token) ){
return null;
}
$uid = Redis::get($token);
if( $uid==null ){
return null;
}
return AdminUserModel::where('id', $uid)->first();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tangzhangming/laravue.git
[email protected]:tangzhangming/laravue.git
tangzhangming
laravue
laravue
master

搜索帮助