2018-04-15 23:56:48 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
2018-12-31 04:30:57 +00:00
|
|
|
|
use Laravel\Passport\Passport;
|
2018-04-15 23:56:48 +00:00
|
|
|
|
|
|
|
|
|
class AuthServiceProvider extends ServiceProvider
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The policy mappings for the application.
|
|
|
|
|
*
|
|
|
|
|
* @var array
|
|
|
|
|
*/
|
|
|
|
|
protected $policies = [
|
|
|
|
|
'App\Model' => 'App\Policies\ModelPolicy',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Register any authentication / authorization services.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function boot()
|
|
|
|
|
{
|
|
|
|
|
$this->registerPolicies();
|
|
|
|
|
|
2019-04-18 01:45:23 +00:00
|
|
|
|
if(config('pixelfed.oauth_enabled')) {
|
|
|
|
|
Passport::routes();
|
|
|
|
|
Passport::tokensExpireIn(now()->addDays(15));
|
|
|
|
|
Passport::refreshTokensExpireIn(now()->addDays(30));
|
|
|
|
|
Passport::enableImplicitGrant();
|
|
|
|
|
|
|
|
|
|
Passport::setDefaultScope([
|
|
|
|
|
'user:read',
|
|
|
|
|
'user:write'
|
|
|
|
|
]);
|
2019-04-08 07:30:47 +00:00
|
|
|
|
|
2019-04-18 01:45:23 +00:00
|
|
|
|
Passport::tokensCan([
|
|
|
|
|
'user:read' => 'Read a user’s profile info and media',
|
|
|
|
|
'user:write' => 'This scope lets an app "Change your profile information"',
|
|
|
|
|
]);
|
|
|
|
|
}
|
2018-04-15 23:56:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|