2016-09-03 07:08:58 -04:00
|
|
|
<?php namespace BookStack\Providers;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2018-09-25 07:30:50 -04:00
|
|
|
use Blade;
|
|
|
|
use BookStack\Entities\Book;
|
|
|
|
use BookStack\Entities\Bookshelf;
|
2019-04-07 13:28:11 -04:00
|
|
|
use BookStack\Entities\BreadcrumbsViewComposer;
|
2018-09-25 07:30:50 -04:00
|
|
|
use BookStack\Entities\Chapter;
|
|
|
|
use BookStack\Entities\Page;
|
|
|
|
use BookStack\Settings\Setting;
|
2018-09-25 11:58:03 -04:00
|
|
|
use BookStack\Settings\SettingService;
|
2018-09-25 07:30:50 -04:00
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
2019-04-07 13:28:11 -04:00
|
|
|
use Illuminate\Support\Facades\View;
|
2015-07-12 15:01:42 -04:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
2018-09-25 07:30:50 -04:00
|
|
|
use Schema;
|
2019-08-04 09:26:39 -04:00
|
|
|
use URL;
|
2016-12-31 09:38:04 -05:00
|
|
|
use Validator;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
2019-03-21 15:43:15 -04: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);
|
|
|
|
});
|
|
|
|
|
2019-03-24 15:07:18 -04:00
|
|
|
Validator::extend('no_double_extension', function ($attribute, $value, $parameters, $validator) {
|
|
|
|
$uploadName = $value->getClientOriginalName();
|
|
|
|
return substr_count($uploadName, '.') < 2;
|
|
|
|
});
|
|
|
|
|
2018-09-25 07:30:50 -04:00
|
|
|
// Custom blade view directives
|
|
|
|
Blade::directive('icon', function ($expression) {
|
2017-02-04 06:01:49 -05:00
|
|
|
return "<?php echo icon($expression); ?>";
|
|
|
|
});
|
2017-07-02 12:20:05 -04:00
|
|
|
|
2019-07-06 09:52:25 -04:00
|
|
|
Blade::directive('exposeTranslations', function($expression) {
|
|
|
|
return "<?php \$__env->startPush('translations'); ?>" .
|
|
|
|
"<?php foreach({$expression} as \$key): ?>" .
|
|
|
|
'<meta name="translation" key="<?php echo e($key); ?>" value="<?php echo e(trans($key)); ?>">' . "\n" .
|
|
|
|
"<?php endforeach; ?>" .
|
|
|
|
'<?php $__env->stopPush(); ?>';
|
|
|
|
});
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
// 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-07 13:28:11 -04:00
|
|
|
|
|
|
|
// View Composers
|
|
|
|
View::composer('partials.breadcrumbs', BreadcrumbsViewComposer::class);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
2018-01-28 11:58:52 -05:00
|
|
|
$this->app->singleton(SettingService::class, function ($app) {
|
2017-02-05 13:57:57 -05:00
|
|
|
return new SettingService($app->make(Setting::class), $app->make('Illuminate\Contracts\Cache\Repository'));
|
|
|
|
});
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
}
|