81 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php namespace BookStack\Providers;
 | 
						|
 | 
						|
use Blade;
 | 
						|
use BookStack\Entities\Book;
 | 
						|
use BookStack\Entities\Bookshelf;
 | 
						|
use BookStack\Entities\BreadcrumbsViewComposer;
 | 
						|
use BookStack\Entities\Chapter;
 | 
						|
use BookStack\Entities\Page;
 | 
						|
use BookStack\Settings\Setting;
 | 
						|
use BookStack\Settings\SettingService;
 | 
						|
use Illuminate\Database\Eloquent\Relations\Relation;
 | 
						|
use Illuminate\Support\Facades\View;
 | 
						|
use Illuminate\Support\ServiceProvider;
 | 
						|
use Schema;
 | 
						|
use URL;
 | 
						|
use Validator;
 | 
						|
 | 
						|
class AppServiceProvider extends ServiceProvider
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Bootstrap any application services.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function boot()
 | 
						|
    {
 | 
						|
        // Set root URL
 | 
						|
        URL::forceRootUrl(config('app.url'));
 | 
						|
 | 
						|
        // 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);
 | 
						|
        });
 | 
						|
 | 
						|
        Validator::extend('no_double_extension', function ($attribute, $value, $parameters, $validator) {
 | 
						|
            $uploadName = $value->getClientOriginalName();
 | 
						|
            return substr_count($uploadName, '.') < 2;
 | 
						|
        });
 | 
						|
 | 
						|
        // Custom blade view directives
 | 
						|
        Blade::directive('icon', function ($expression) {
 | 
						|
            return "<?php echo icon($expression); ?>";
 | 
						|
        });
 | 
						|
 | 
						|
        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(); ?>';
 | 
						|
        });
 | 
						|
 | 
						|
        // Allow longer string lengths after upgrade to utf8mb4
 | 
						|
        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,
 | 
						|
        ]);
 | 
						|
 | 
						|
        // View Composers
 | 
						|
        View::composer('partials.breadcrumbs', BreadcrumbsViewComposer::class);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Register any application services.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function register()
 | 
						|
    {
 | 
						|
        $this->app->singleton(SettingService::class, function ($app) {
 | 
						|
            return new SettingService($app->make(Setting::class), $app->make('Illuminate\Contracts\Cache\Repository'));
 | 
						|
        });
 | 
						|
    }
 | 
						|
}
 |