2016-09-03 19:08:58 +08:00
|
|
|
<?php namespace BookStack\Providers;
|
2015-07-13 03:01:42 +08:00
|
|
|
|
2018-09-25 19:30:50 +08:00
|
|
|
use Blade;
|
2021-03-20 00:16:26 +08:00
|
|
|
use BookStack\Auth\Access\SocialAuthService;
|
2020-11-22 08:17:45 +08:00
|
|
|
use BookStack\Entities\Models\Book;
|
|
|
|
use BookStack\Entities\Models\Bookshelf;
|
2019-04-08 01:28:11 +08:00
|
|
|
use BookStack\Entities\BreadcrumbsViewComposer;
|
2020-11-22 08:17:45 +08:00
|
|
|
use BookStack\Entities\Models\Chapter;
|
|
|
|
use BookStack\Entities\Models\Page;
|
2018-09-25 19:30:50 +08:00
|
|
|
use BookStack\Settings\Setting;
|
2018-09-25 23:58:03 +08:00
|
|
|
use BookStack\Settings\SettingService;
|
2021-01-29 06:46:15 +08:00
|
|
|
use Illuminate\Contracts\Cache\Repository;
|
2018-09-25 19:30:50 +08:00
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
2019-04-08 01:28:11 +08:00
|
|
|
use Illuminate\Support\Facades\View;
|
2015-07-13 03:01:42 +08:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
2021-03-20 00:16:26 +08:00
|
|
|
use Laravel\Socialite\Contracts\Factory as SocialiteFactory;
|
2018-09-25 19:30:50 +08:00
|
|
|
use Schema;
|
2019-08-04 21:26:39 +08:00
|
|
|
use URL;
|
2015-07-13 03:01:42 +08:00
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
2019-08-04 21:26:39 +08:00
|
|
|
// Set root URL
|
2019-09-01 19:07:51 +08:00
|
|
|
$appUrl = config('app.url');
|
|
|
|
if ($appUrl) {
|
|
|
|
$isHttps = (strpos($appUrl, 'https://') === 0);
|
|
|
|
URL::forceRootUrl($appUrl);
|
|
|
|
URL::forceScheme($isHttps ? 'https' : 'http');
|
|
|
|
}
|
2019-08-04 21:26:39 +08:00
|
|
|
|
2018-09-25 19:30:50 +08:00
|
|
|
// Custom blade view directives
|
|
|
|
Blade::directive('icon', function ($expression) {
|
2017-02-04 19:01:49 +08:00
|
|
|
return "<?php echo icon($expression); ?>";
|
|
|
|
});
|
2017-07-03 00:20:05 +08:00
|
|
|
|
|
|
|
// Allow longer string lengths after upgrade to utf8mb4
|
2018-09-25 19:30:50 +08:00
|
|
|
Schema::defaultStringLength(191);
|
|
|
|
|
|
|
|
// Set morph-map due to namespace changes
|
|
|
|
Relation::morphMap([
|
|
|
|
'BookStack\\Bookshelf' => Bookshelf::class,
|
|
|
|
'BookStack\\Book' => Book::class,
|
|
|
|
'BookStack\\Chapter' => Chapter::class,
|
|
|
|
'BookStack\\Page' => Page::class,
|
|
|
|
]);
|
2019-04-08 01:28:11 +08:00
|
|
|
|
|
|
|
// View Composers
|
|
|
|
View::composer('partials.breadcrumbs', BreadcrumbsViewComposer::class);
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
2018-01-29 00:58:52 +08:00
|
|
|
$this->app->singleton(SettingService::class, function ($app) {
|
2021-01-29 06:46:15 +08:00
|
|
|
return new SettingService($app->make(Setting::class), $app->make(Repository::class));
|
2017-02-06 02:57:57 +08:00
|
|
|
});
|
2021-03-20 00:16:26 +08:00
|
|
|
|
|
|
|
$this->app->singleton(SocialAuthService::class, function($app) {
|
|
|
|
return new SocialAuthService($app->make(SocialiteFactory::class));
|
|
|
|
});
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|
|
|
|
}
|