コード例 #1
0
 public function register()
 {
     $this->core = app(Component::CORE);
     if (!$this->core->bootChecker()->shouldCmsApiRegister()) {
         return;
     }
     $this->registerResponseBuilder()->registerConfiguredServiceProviders();
 }
コード例 #2
0
 /**
  * Handle an incoming request.
  *
  * @param \Illuminate\Http\Request $request
  * @param Closure                  $next
  * @param string|null              $permission
  * @return mixed
  */
 public function handle($request, Closure $next, $permission = null)
 {
     if ($permission && !$this->core->auth()->admin() && !$this->core->auth()->can($permission)) {
         if ($this->core->bootChecker()->isCmsApiRequest()) {
             return $this->core->api()->error('Permission denied', 403);
         }
         if ($request->ajax() || $request->wantsJson()) {
             return response('Permission denied.', 403);
         }
         /** @var CoreInterface $core */
         $core = app(Component::CORE);
         return redirect()->route($core->prefixRoute(NamedRoute::HOME));
     }
     return $next($request);
 }
コード例 #3
0
 /**
  * @param Router        $router
  * @param Kernel        $kernel
  * @param CoreInterface $core
  */
 public function boot(Router $router, Kernel $kernel, CoreInterface $core)
 {
     // If we don't need the web routes, skip booting entirely
     if (!$core->bootChecker()->shouldRegisterCmsWebRoutes()) {
         return;
     }
     $this->router = $router;
     $this->kernel = $kernel;
     $this->core = $core;
     $this->registerRoutes();
 }