mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 13:52:19 +08:00
55 lines
1.9 KiB
PHP
55 lines
1.9 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Providers;
|
||
|
|
||
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
||
|
use Illuminate\Support\Facades\Cache;
|
||
|
use Laravel\Passport\Passport;
|
||
|
|
||
|
class AuthServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
/**
|
||
|
* The policy mappings for the application.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $policies = [
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* Register any authentication / authorization services.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function boot()
|
||
|
{
|
||
|
$this->registerPolicies();
|
||
|
|
||
|
Passport::routes();
|
||
|
|
||
|
$defaultScopes = [
|
||
|
'User.Read' => 'auth.oauth.scope.user.read',
|
||
|
'Notification.Read' => 'auth.oauth.scope.notification.read',
|
||
|
'Notification.ReadWrite' => 'auth.oauth.scope.notification.readwrite',
|
||
|
'Player.Read' => 'auth.oauth.scope.player.read',
|
||
|
'Player.ReadWrite' => 'auth.oauth.scope.player.readwrite',
|
||
|
'Closet.Read' => 'auth.oauth.scope.closet.read',
|
||
|
'Closet.ReadWrtie' => 'auth.oauth.scope.closet.readwrite',
|
||
|
'UsersManagement.Read' => 'auth.oauth.scope.users-management.read',
|
||
|
'UsersManagement.ReadWrite' => 'auth.oauth.scope.users-management.readwrite',
|
||
|
'PlayersManagement.Read' => 'auth.oauth.scope.players-management.read',
|
||
|
'PlayersManagement.ReadWrite' => 'auth.oauth.scope.players-management.readwrite',
|
||
|
'ClosetManagement.Read' => 'auth.oauth.scope.closet-management.read',
|
||
|
'ClosetManagement.ReadWrite' => 'auth.oauth.scope.closet-management.readwrite',
|
||
|
'ReportsManagement.Read' => 'auth.oauth.scope.reports-management.read',
|
||
|
'ReportsManagement.ReadWrite' => 'auth.oauth.scope.reports-management.readwrite',
|
||
|
];
|
||
|
|
||
|
$scopes = Cache::get('scopes', []);
|
||
|
|
||
|
Passport::tokensCan(array_merge($defaultScopes, $scopes));
|
||
|
|
||
|
Passport::setDefaultScope(['User.Read']);
|
||
|
}
|
||
|
}
|