koel/app/Http/Middleware/ObjectStorageAuthenticate.php

24 lines
519 B
PHP
Raw Normal View History

2016-06-13 09:04:42 +00:00
<?php
namespace App\Http\Middleware;
use Closure;
2016-08-03 10:42:11 +00:00
use Illuminate\Http\Request;
2016-06-13 09:04:42 +00:00
/**
* Authenticate requests from Object Storage services (like S3).
2020-09-13 22:04:07 +00:00
* Such requests must have an `appKey` query parameter, which matches our app key.
2016-06-13 09:04:42 +00:00
*/
class ObjectStorageAuthenticate
{
2020-12-22 23:01:49 +00:00
/** @return mixed */
public function handle(Request $request, Closure $next)
2016-06-13 09:04:42 +00:00
{
if ($request->appKey !== config('app.key')) {
return response('Unauthorized.', 401);
}
return $next($request);
}
}