filesharing/app/Http/Middleware/GuestAccess.php
2023-05-16 15:00:22 +02:00

43 lines
1.1 KiB
PHP

<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Http\Request;
use Symfony\Component\HttpFoundation\Response;
use App\Helpers\Upload;
class GuestAccess
{
/**
* Handle an incoming request.
*
* @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next
*/
public function handle(Request $request, Closure $next): Response
{
// Aborting if Bundle ID is not present
abort_if(empty($request->route()->parameter('bundle')), 401);
abort_if(empty($request->auth), 401);
// Getting metadata
$metadata = Upload::getMetadata($request->route()->parameter('bundle'));
// Aborting if metadata are empty
abort_if(empty($metadata), 404);
// Aborting if auth_token is different from URL param
abort_if($metadata['preview_token'] !== $request->auth, 401);
// Checking bundle expiration
abort_if($metadata['expires_at'] < time(), 404);
// If there is no file into the bundle (should never happen but ...)
abort_if(count($metadata['files']) == 0, 404);
abort_if(($metadata['max_downloads'] ?? 0) > 0 && $metadata['downloads'] >= $metadata['max_downloads'], 404);
return $next($request);
}
}