1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Controllers/ProtectedDownloadController.php

38 lines
991 B
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Controllers;
use App\Exceptions\SystemError;
2023-10-26 04:57:44 +02:00
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Storage;
class ProtectedDownloadController extends BaseController
{
2023-11-19 23:04:11 +01:00
public function index(Request $request, string $hash)
{
2023-10-17 12:28:18 +02:00
/** @var string $hashed_path */
2023-11-19 23:04:11 +01:00
$hashed_path = Cache::pull($hash);
2024-01-14 05:05:00 +01:00
if (!$hashed_path) {
throw new SystemError('File no longer available', 404);
abort(404, 'File no longer available');
}
2024-01-14 05:05:00 +01:00
2023-07-17 04:01:35 +02:00
return response()->streamDownload(function () use ($hashed_path) {
echo Storage::get($hashed_path);
}, basename($hashed_path), []);
}
}