mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-11 19:14:30 +01:00
44 lines
1011 B
PHP
44 lines
1011 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Http\Middleware;
|
|
|
|
use Closure;
|
|
use Illuminate\Http\Request;
|
|
use Symfony\Component\HttpKernel\Exception\NotAcceptableHttpException;
|
|
|
|
/**
|
|
* This is the acceptable middleware class.
|
|
*
|
|
* @author Graham Campbell <james@alt-three.com>
|
|
* @author James Brooks <james@alt-three.com>
|
|
*/
|
|
class Acceptable
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
* @param string|null $type
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle(Request $request, Closure $next, $type = null)
|
|
{
|
|
if (!$request->accepts($type ?: 'application/json')) {
|
|
throw new NotAcceptableHttpException();
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|