58 lines
894 B
PHP
58 lines
894 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Created by PhpStorm.
|
||
|
* User: deon
|
||
|
* Date: 4/8/17
|
||
|
* Time: 9:33 PM
|
||
|
*/
|
||
|
|
||
|
namespace App\Http\Middleware;
|
||
|
|
||
|
use Closure;
|
||
|
use Illuminate\Contracts\Auth\Guard;
|
||
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
||
|
|
||
|
class CheckAdmin {
|
||
|
|
||
|
/**
|
||
|
* The Guard implementation.
|
||
|
*
|
||
|
* @var Guard
|
||
|
*/
|
||
|
protected $auth;
|
||
|
|
||
|
/**
|
||
|
* Create a new filter instance.
|
||
|
*
|
||
|
* @param Guard $auth
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct(Guard $auth)
|
||
|
{
|
||
|
$this->auth = $auth;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Handle an incoming request.
|
||
|
*
|
||
|
* @param Request $request
|
||
|
* @param Closure $next
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function handle($request, Closure $next)
|
||
|
{
|
||
|
if ( ! $this->auth->user()->isAdministrator())
|
||
|
{
|
||
|
if ($request->ajax())
|
||
|
{
|
||
|
return response('Forbbiden.', 403);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
throw new AccessDeniedHttpException;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $next($request);
|
||
|
}
|
||
|
}
|