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