Files
vuefilemanager/src/Domain/Files/Controllers/FileAccess/VisitorGetThumbnailController.php
2022-02-19 12:49:56 +01:00

51 lines
1.5 KiB
PHP

<?php
namespace Domain\Files\Controllers\FileAccess;
use Domain\Sharing\Models\Share;
use App\Http\Controllers\Controller;
use Domain\Files\Models\File as UserFile;
use Domain\Traffic\Actions\RecordDownloadAction;
use Domain\Files\Actions\DownloadThumbnailAction;
use Domain\Sharing\Actions\ProtectShareRecordAction;
use Symfony\Component\HttpFoundation\StreamedResponse;
use Domain\Sharing\Actions\VerifyAccessToItemWithinAction;
/**
* Get public image thumbnail
*/
class VisitorGetThumbnailController extends Controller
{
public function __construct(
private RecordDownloadAction $recordDownload,
private DownloadThumbnailAction $downloadThumbnail,
private ProtectShareRecordAction $protectShareRecord,
private VerifyAccessToItemWithinAction $verifyAccessToItemWithin,
) {
}
public function __invoke(
$filename,
Share $shared,
): StreamedResponse {
// Check ability to access protected share files
($this->protectShareRecord)($shared);
// Get file record
$file = UserFile::where('user_id', $shared->user_id)
->where('basename', substr($filename, 3))
->firstOrFail();
// Check file access
($this->verifyAccessToItemWithin)($shared, $file);
// Store user download size
($this->recordDownload)(
file_size: (int) $file->getRawOriginal('filesize'),
user_id: $shared->user_id,
);
// Finally, download thumbnail
return ($this->downloadThumbnail)($filename, $file);
}
}