for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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);