Skip to content

Commit af40739

Browse files
committed
站点权限部署
1 parent d358ee4 commit af40739

File tree

8 files changed

+150
-12
lines changed

8 files changed

+150
-12
lines changed

app/Policies/Policy.php

+5-9
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,11 @@ class Policy
88
{
99
use HandlesAuthorization;
1010

11-
public function __construct()
11+
public function before($user, $ability)
1212
{
13-
//
13+
// 如果用户拥有管理内容的权限的话,即授权通过
14+
if ($user->can('manage_contents')) {
15+
return true;
16+
}
1417
}
15-
16-
public function before($user, $ability)
17-
{
18-
// if ($user->isSuperAdmin()) {
19-
// return true;
20-
// }
21-
}
2218
}

app/Providers/AppServiceProvider.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ class AppServiceProvider extends ServiceProvider
1313
*/
1414
public function register()
1515
{
16-
//
16+
if (app()->isLocal()) {
17+
$this->app->register(\VIACreative\SudoSu\ServiceProvider::class);
18+
}
1719
}
1820

1921
/**

app/Providers/AuthServiceProvider.php

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
66
use Illuminate\Support\Facades\Gate;
7+
use Illuminate\Support\Facades\Auth;
8+
use Laravel\Horizon\Horizon;
79

810
class AuthServiceProvider extends ServiceProvider
911
{
@@ -31,5 +33,10 @@ public function boot()
3133
// 动态返回模型对应的策略名称,如:// 'App\Model\User' => 'App\Policies\UserPolicy',
3234
return 'App\Policies\\'.class_basename($modelClass).'Policy';
3335
});
36+
37+
Horizon::auth(function ($request) {
38+
// 是否是站长
39+
return Auth::user()->hasRole('Founder');
40+
});
3441
}
3542
}

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"overtrue/pinyin": "~4.0",
1919
"predis/predis": "~1.1",
2020
"spatie/laravel-permission": "~5.5",
21-
"summerblue/laravel-active": "9.*"
21+
"summerblue/laravel-active": "9.*",
22+
"viacreative/sudo-su": "~1.1"
2223
},
2324
"require-dev": {
2425
"barryvdh/laravel-debugbar": "~3.6",

composer.lock

+51-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/sudosu.php

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
return [
4+
5+
// 允许使用的顶级域名
6+
'allowed_tlds' => ['dev', 'local', 'test'],
7+
8+
// 用户模型
9+
'user_model' => App\Models\User::class
10+
];

public/sudo-su/css/app.css

+68
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/views/layouts/app.blade.php

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@
3535
@include('layouts._footer')
3636
</div>
3737

38+
@if (app()->isLocal())
39+
@include('sudosu::user-selector')
40+
@endif
41+
3842
<!-- Scripts -->
3943
<script src="{{ mix('js/app.js') }}"></script>
4044

0 commit comments

Comments
 (0)