2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Providers;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2022-09-26 21:48:05 -04:00
|
|
|
use BookStack\Actions\ActivityLogger;
|
2021-03-19 12:16:26 -04:00
|
|
|
use BookStack\Auth\Access\SocialAuthService;
|
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;
|
2018-09-25 11:58:03 -04:00
|
|
|
use BookStack\Settings\SettingService;
|
2021-09-04 08:57:04 -04:00
|
|
|
use BookStack\Util\CspService;
|
2021-10-13 11:51:27 -04:00
|
|
|
use GuzzleHttp\Client;
|
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;
|
2021-10-13 11:51:27 -04:00
|
|
|
use Psr\Http\Client\ClientInterface as HttpClientInterface;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
2022-09-26 21:48:05 -04:00
|
|
|
/**
|
|
|
|
* Custom container bindings to register.
|
|
|
|
* @var string[]
|
|
|
|
*/
|
|
|
|
public $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[]
|
|
|
|
*/
|
|
|
|
public $singletons = [
|
|
|
|
'activity' => ActivityLogger::class,
|
|
|
|
SettingService::class => SettingService::class,
|
|
|
|
SocialAuthService::class => SocialAuthService::class,
|
|
|
|
CspService::class => CspService::class,
|
|
|
|
];
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
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) {
|
|
|
|
$isHttps = (strpos($appUrl, 'https://') === 0);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
2021-10-16 11:01:59 -04:00
|
|
|
$this->app->bind(HttpClientInterface::class, function ($app) {
|
2021-10-14 08:37:55 -04:00
|
|
|
return new Client([
|
|
|
|
'timeout' => 3,
|
|
|
|
]);
|
2021-10-13 11:51:27 -04:00
|
|
|
});
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
}
|