koel/app/Http/Middleware/ObjectStorageAuthenticate.php
2019-08-05 17:57:10 +07:00

22 lines
485 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
{
public function handle(Request $request, Closure $next)
{
if ($request->appKey !== config('app.key')) {
return response('Unauthorized.', 401);
}
return $next($request);
}
}