2016-09-03 13:08:58 +02:00
|
|
|
<?php namespace BookStack\Providers;
|
2015-07-12 21:01:42 +02:00
|
|
|
|
2018-09-25 13:30:50 +02:00
|
|
|
use Blade;
|
|
|
|
use BookStack\Entities\Book;
|
|
|
|
use BookStack\Entities\Bookshelf;
|
|
|
|
use BookStack\Entities\Chapter;
|
|
|
|
use BookStack\Entities\Page;
|
|
|
|
use BookStack\Settings\Setting;
|
2018-09-25 17:58:03 +02:00
|
|
|
use BookStack\Settings\SettingService;
|
2018-09-25 13:30:50 +02:00
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
2019-03-21 20:43:15 +01:00
|
|
|
use Illuminate\Http\UploadedFile;
|
2015-07-12 21:01:42 +02:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
2018-09-25 13:30:50 +02:00
|
|
|
use Schema;
|
2016-12-31 15:38:04 +01:00
|
|
|
use Validator;
|
2015-07-12 21:01:42 +02:00
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
2019-03-21 20:43:15 +01:00
|
|
|
// Custom validation methods
|
|
|
|
Validator::extend('image_extension', function ($attribute, $value, $parameters, $validator) {
|
|
|
|
$validImageExtensions = ['png', 'jpg', 'jpeg', 'bmp', 'gif', 'tiff', 'webp'];
|
|
|
|
return in_array(strtolower($value->getClientOriginalExtension()), $validImageExtensions);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2018-09-25 13:30:50 +02:00
|
|
|
// Custom blade view directives
|
|
|
|
Blade::directive('icon', function ($expression) {
|
2017-02-04 12:01:49 +01:00
|
|
|
return "<?php echo icon($expression); ?>";
|
|
|
|
});
|
2017-07-02 18:20:05 +02:00
|
|
|
|
|
|
|
// Allow longer string lengths after upgrade to utf8mb4
|
2018-09-25 13:30:50 +02: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,
|
|
|
|
]);
|
2015-07-12 21:01:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
2018-01-28 17:58:52 +01:00
|
|
|
$this->app->singleton(SettingService::class, function ($app) {
|
2017-02-05 19:57:57 +01:00
|
|
|
return new SettingService($app->make(Setting::class), $app->make('Illuminate\Contracts\Cache\Repository'));
|
|
|
|
});
|
2015-07-12 21:01:42 +02:00
|
|
|
}
|
|
|
|
}
|