1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 18:48:21 +00:00
pixelfed/app/Providers/AuthServiceProvider.php

56 lines
1.7 KiB
PHP
Raw Normal View History

2018-04-15 17:56:48 -06:00
<?php
namespace App\Providers;
2024-03-12 03:55:51 -06:00
use Gate;
2018-04-15 17:56:48 -06:00
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
2018-12-30 21:30:57 -07:00
use Laravel\Passport\Passport;
2018-04-15 17:56:48 -06:00
class AuthServiceProvider extends ServiceProvider
{
/**
* The policy mappings for the application.
*
* @var array
*/
protected $policies = [
2023-12-27 02:51:47 -07:00
// 'App\Model' => 'App\Policies\ModelPolicy',
2018-04-15 17:56:48 -06:00
];
/**
* Register any authentication / authorization services.
*
* @return void
*/
public function boot()
{
2024-03-12 03:55:51 -06:00
if (config('app.env') === 'production' && (bool) config_cache('pixelfed.oauth_enabled') == true) {
Passport::tokensExpireIn(now()->addDays(config('instance.oauth.token_expiration', 356)));
Passport::refreshTokensExpireIn(now()->addDays(config('instance.oauth.refresh_expiration', 400)));
2019-04-17 19:45:23 -06:00
Passport::enableImplicitGrant();
2024-03-12 03:55:51 -06:00
if (config('instance.oauth.pat.enabled')) {
2020-06-11 18:39:03 -06:00
Passport::personalAccessClientId(config('instance.oauth.pat.id'));
}
2019-04-08 01:30:47 -06:00
2019-04-17 19:45:23 -06:00
Passport::tokensCan([
2019-09-13 19:55:24 -06:00
'read' => 'Full read access to your account',
'write' => 'Full write access to your account',
2019-09-13 20:17:00 -06:00
'follow' => 'Ability to follow other profiles',
'admin:read' => 'Read all data on the server',
'admin:write' => 'Modify all data on the server',
2024-03-12 03:55:51 -06:00
'push' => 'Receive your push notifications',
2019-04-17 19:45:23 -06:00
]);
2024-02-09 20:54:17 -07:00
Passport::setDefaultScope([
'read',
'write',
'follow',
]);
2019-04-17 19:45:23 -06:00
}
2019-09-13 19:55:24 -06:00
// Gate::define('viewWebSocketsDashboard', function ($user = null) {
// return $user->is_admin;
// });
2018-04-15 17:56:48 -06:00
}
}