BookStack/app/Providers/AuthServiceProvider.php

70 lines
2.0 KiB
PHP
Raw Normal View History

<?php
namespace BookStack\Providers;
use BookStack\Api\ApiTokenGuard;
use BookStack\Auth\Access\ExternalBaseUserProvider;
use BookStack\Auth\Access\Guards\AsyncExternalBaseSessionGuard;
use BookStack\Auth\Access\Guards\LdapSessionGuard;
use BookStack\Auth\Access\LdapService;
use BookStack\Auth\Access\LoginService;
use BookStack\Auth\Access\RegistrationService;
2021-09-26 14:48:22 +00:00
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\ServiceProvider;
use Illuminate\Validation\Rules\Password;
class AuthServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
// Password Configuration
// Changes here must be reflected in ApiDocsGenerate@getValidationAsString.
Password::defaults(fn () => Password::min(8));
// Custom guards
Auth::extend('api-token', function ($app, $name, array $config) {
return new ApiTokenGuard($app['request'], $app->make(LoginService::class));
});
Auth::extend('ldap-session', function ($app, $name, array $config) {
$provider = Auth::createUserProvider($config['provider']);
2021-06-26 15:23:15 +00:00
return new LdapSessionGuard(
$name,
$provider,
$app['session.store'],
$app[LdapService::class],
$app[RegistrationService::class]
);
});
2020-02-02 10:59:03 +00:00
Auth::extend('async-external-session', function ($app, $name, array $config) {
2020-02-02 10:59:03 +00:00
$provider = Auth::createUserProvider($config['provider']);
2021-06-26 15:23:15 +00:00
return new AsyncExternalBaseSessionGuard(
2020-02-02 10:59:03 +00:00
$name,
$provider,
$app['session.store'],
$app[RegistrationService::class]
2020-02-02 10:59:03 +00:00
);
});
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
Auth::provider('external-users', function ($app, array $config) {
return new ExternalBaseUserProvider($config['model']);
});
}
}