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).
|
|
|
|
* Such requests must have an apKey data, which matches with our app key.
|
|
|
|
*/
|
|
|
|
class ObjectStorageAuthenticate
|
|
|
|
{
|
2016-08-03 10:42:11 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|