2018-04-15 23:56:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2024-03-12 09:55:51 +00:00
|
|
|
use Gate;
|
2018-04-15 23:56:48 +00:00
|
|
|
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 = [
|
2023-12-27 09:51:47 +00:00
|
|
|
// 'App\Model' => 'App\Policies\ModelPolicy',
|
2018-04-15 23:56:48 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register any authentication / authorization services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
2024-03-29 23:17:20 +00:00
|
|
|
if(config('pixelfed.oauth_enabled') == true) {
|
2021-05-28 05:04:24 +00:00
|
|
|
Passport::tokensExpireIn(now()->addDays(config('instance.oauth.token_expiration', 356)));
|
|
|
|
Passport::refreshTokensExpireIn(now()->addDays(config('instance.oauth.refresh_expiration', 400)));
|
2019-04-18 01:45:23 +00:00
|
|
|
Passport::enableImplicitGrant();
|
2024-03-12 09:55:51 +00:00
|
|
|
if (config('instance.oauth.pat.enabled')) {
|
2020-06-12 00:39:03 +00:00
|
|
|
Passport::personalAccessClientId(config('instance.oauth.pat.id'));
|
|
|
|
}
|
2019-04-08 07:30:47 +00:00
|
|
|
|
2019-04-18 01:45:23 +00:00
|
|
|
Passport::tokensCan([
|
2019-09-14 01:55:24 +00:00
|
|
|
'read' => 'Full read access to your account',
|
|
|
|
'write' => 'Full write access to your account',
|
2019-09-14 02:17:00 +00:00
|
|
|
'follow' => 'Ability to follow other profiles',
|
2024-02-08 01:50:02 +00:00
|
|
|
'admin:read' => 'Read all data on the server',
|
2024-03-29 23:16:06 +00:00
|
|
|
'admin:read:domain_blocks' => 'Read sensitive information of all domain blocks',
|
2024-02-08 01:50:02 +00:00
|
|
|
'admin:write' => 'Modify all data on the server',
|
2024-03-29 23:16:06 +00:00
|
|
|
'admin:write:domain_blocks' => 'Perform moderation actions on domain blocks',
|
2024-02-08 01:50:02 +00:00
|
|
|
'push' => 'Receive your push notifications'
|
2019-04-18 01:45:23 +00:00
|
|
|
]);
|
2024-02-10 03:54:17 +00:00
|
|
|
|
|
|
|
Passport::setDefaultScope([
|
|
|
|
'read',
|
|
|
|
'write',
|
|
|
|
'follow',
|
|
|
|
]);
|
2019-04-18 01:45:23 +00:00
|
|
|
}
|
2019-09-14 01:55:24 +00:00
|
|
|
|
2021-05-28 05:04:24 +00:00
|
|
|
// Gate::define('viewWebSocketsDashboard', function ($user = null) {
|
|
|
|
// return $user->is_admin;
|
|
|
|
// });
|
2018-04-15 23:56:48 +00:00
|
|
|
}
|
|
|
|
}
|