BookStack/app/Providers/AppServiceProvider.php

84 lines
2.3 KiB
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\Providers;
2015-07-12 19:01:42 +00:00
use BookStack\Actions\ActivityLogger;
use BookStack\Auth\Access\SocialAuthService;
use BookStack\Entities\Models\Book;
use BookStack\Entities\Models\Bookshelf;
use BookStack\Entities\Models\Chapter;
use BookStack\Entities\Models\Page;
2023-02-06 20:41:33 +00:00
use BookStack\Exceptions\BookStackExceptionHandlerPage;
use BookStack\Settings\SettingService;
use BookStack\Util\CspService;
2021-10-13 15:51:27 +00:00
use GuzzleHttp\Client;
2023-02-06 20:41:33 +00:00
use Illuminate\Contracts\Foundation\ExceptionRenderer;
use Illuminate\Database\Eloquent\Relations\Relation;
2021-09-26 14:48:22 +00:00
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\URL;
2015-07-12 19:01:42 +00:00
use Illuminate\Support\ServiceProvider;
2021-10-13 15:51:27 +00:00
use Psr\Http\Client\ClientInterface as HttpClientInterface;
2015-07-12 19:01:42 +00:00
class AppServiceProvider extends ServiceProvider
{
/**
* Custom container bindings to register.
* @var string[]
*/
public $bindings = [
2023-02-06 20:41:33 +00:00
ExceptionRenderer::class => BookStackExceptionHandlerPage::class,
];
/**
* Custom singleton bindings to register.
* @var string[]
*/
public $singletons = [
'activity' => ActivityLogger::class,
SettingService::class => SettingService::class,
SocialAuthService::class => SocialAuthService::class,
CspService::class => CspService::class,
];
2015-07-12 19:01:42 +00:00
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
// Set root URL
$appUrl = config('app.url');
if ($appUrl) {
$isHttps = (strpos($appUrl, 'https://') === 0);
URL::forceRootUrl($appUrl);
URL::forceScheme($isHttps ? 'https' : 'http');
}
// Allow longer string lengths after upgrade to utf8mb4
Schema::defaultStringLength(191);
// Set morph-map for our relations to friendlier aliases
Relation::enforceMorphMap([
'bookshelf' => Bookshelf::class,
'book' => Book::class,
'chapter' => Chapter::class,
'page' => Page::class,
]);
2015-07-12 19:01:42 +00:00
}
/**
* Register any application services.
*
* @return void
*/
public function register()
{
$this->app->bind(HttpClientInterface::class, function ($app) {
return new Client([
'timeout' => 3,
]);
2021-10-13 15:51:27 +00:00
});
2015-07-12 19:01:42 +00:00
}
}