2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
2023-05-17 12:56:55 -04:00
|
|
|
namespace BookStack\App\Providers;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2023-12-06 08:49:53 -05:00
|
|
|
use BookStack\Access\SocialDriverManager;
|
2023-05-17 12:56:55 -04:00
|
|
|
use BookStack\Activity\Tools\ActivityLogger;
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Book;
|
|
|
|
use BookStack\Entities\Models\Bookshelf;
|
|
|
|
use BookStack\Entities\Models\Chapter;
|
|
|
|
use BookStack\Entities\Models\Page;
|
2023-02-06 15:41:33 -05:00
|
|
|
use BookStack\Exceptions\BookStackExceptionHandlerPage;
|
2023-09-08 09:16:09 -04:00
|
|
|
use BookStack\Http\HttpRequestService;
|
2023-08-17 12:57:31 -04:00
|
|
|
use BookStack\Permissions\PermissionApplicator;
|
2018-09-25 11:58:03 -04:00
|
|
|
use BookStack\Settings\SettingService;
|
2021-09-04 08:57:04 -04:00
|
|
|
use BookStack\Util\CspService;
|
2023-02-06 15:41:33 -05:00
|
|
|
use Illuminate\Contracts\Foundation\ExceptionRenderer;
|
2018-09-25 07:30:50 -04:00
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
2021-09-26 10:48:22 -04:00
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Support\Facades\URL;
|
2015-07-12 15:01:42 -04:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
2022-09-26 21:48:05 -04:00
|
|
|
/**
|
|
|
|
* Custom container bindings to register.
|
|
|
|
* @var string[]
|
|
|
|
*/
|
2024-03-16 11:12:14 -04:00
|
|
|
public array $bindings = [
|
2023-02-06 15:41:33 -05:00
|
|
|
ExceptionRenderer::class => BookStackExceptionHandlerPage::class,
|
2022-09-26 21:48:05 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom singleton bindings to register.
|
|
|
|
* @var string[]
|
|
|
|
*/
|
2024-03-16 11:12:14 -04:00
|
|
|
public array $singletons = [
|
2022-09-26 21:48:05 -04:00
|
|
|
'activity' => ActivityLogger::class,
|
|
|
|
SettingService::class => SettingService::class,
|
2023-12-06 08:49:53 -05:00
|
|
|
SocialDriverManager::class => SocialDriverManager::class,
|
2022-09-26 21:48:05 -04:00
|
|
|
CspService::class => CspService::class,
|
2023-09-08 09:16:09 -04:00
|
|
|
HttpRequestService::class => HttpRequestService::class,
|
2022-09-26 21:48:05 -04:00
|
|
|
];
|
|
|
|
|
2024-03-16 11:12:14 -04:00
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*/
|
|
|
|
public function register(): void
|
|
|
|
{
|
|
|
|
$this->app->singleton(PermissionApplicator::class, function ($app) {
|
|
|
|
return new PermissionApplicator(null);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*/
|
2024-03-16 11:12:14 -04:00
|
|
|
public function boot(): void
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2019-08-04 09:26:39 -04:00
|
|
|
// Set root URL
|
2019-09-01 07:07:51 -04:00
|
|
|
$appUrl = config('app.url');
|
|
|
|
if ($appUrl) {
|
2023-09-08 09:16:09 -04:00
|
|
|
$isHttps = str_starts_with($appUrl, 'https://');
|
2019-09-01 07:07:51 -04:00
|
|
|
URL::forceRootUrl($appUrl);
|
|
|
|
URL::forceScheme($isHttps ? 'https' : 'http');
|
|
|
|
}
|
2019-08-04 09:26:39 -04:00
|
|
|
|
2017-07-02 12:20:05 -04:00
|
|
|
// Allow longer string lengths after upgrade to utf8mb4
|
2018-09-25 07:30:50 -04:00
|
|
|
Schema::defaultStringLength(191);
|
|
|
|
|
2022-04-25 13:31:37 -04:00
|
|
|
// Set morph-map for our relations to friendlier aliases
|
|
|
|
Relation::enforceMorphMap([
|
|
|
|
'bookshelf' => Bookshelf::class,
|
|
|
|
'book' => Book::class,
|
|
|
|
'chapter' => Chapter::class,
|
|
|
|
'page' => Page::class,
|
2018-09-25 07:30:50 -04:00
|
|
|
]);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
}
|