koel/app/Http/Middleware/ObjectStorageAuthenticate.php
2018-08-29 13:15:23 +07:00

25 lines
522 B
PHP

<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Http\Request;
/**
* Authenticate requests from Object Storage services (like S3).
* Such requests must have an apKey data, which matches with our app key.
*/
class ObjectStorageAuthenticate
{
/**
* @return mixed
*/
public function handle(Request $request, Closure $next)
{
if ($request->appKey !== config('app.key')) {
return response('Unauthorized.', 401);
}
return $next($request);
}
}