mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
62 lines
1.9 KiB
PHP
62 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Domain\Sharing\Controllers;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Domain\Files\Actions\DownloadFileAction;
|
|
use Domain\Files\Models\File;
|
|
use Domain\Sharing\Actions\ProtectShareRecordAction;
|
|
use Domain\Sharing\Actions\VerifyAccessToItemWithinAction;
|
|
use Domain\Sharing\Models\Share;
|
|
use Domain\Traffic\Actions\RecordDownloadAction;
|
|
use Illuminate\Http\Response;
|
|
use Symfony\Component\HttpFoundation\BinaryFileResponse;
|
|
|
|
class DirectlyDownloadFileController extends Controller
|
|
{
|
|
public function __construct(
|
|
private DownloadFileAction $downloadFile,
|
|
private RecordDownloadAction $recordDownload,
|
|
private ProtectShareRecordAction $protectShareRecord,
|
|
private VerifyAccessToItemWithinAction $verifyAccessToItemWithin,
|
|
) {
|
|
}
|
|
|
|
public function __invoke(
|
|
Share $share
|
|
): BinaryFileResponse|Response {
|
|
|
|
// Check if item is not a folder
|
|
if ($share->type !== 'file') {
|
|
return response('This content is not downloadable');
|
|
}
|
|
|
|
// Check ability to access protected share files
|
|
($this->protectShareRecord)($share);
|
|
|
|
// Check if user can download file
|
|
if (! $share->user->canDownload()) {
|
|
return response([
|
|
'type' => 'error',
|
|
'message' => 'This user action is not allowed.',
|
|
], 401);
|
|
}
|
|
|
|
// Get file record
|
|
$file = File::where('user_id', $share->user_id)
|
|
->where('id', $share->item_id)
|
|
->firstOrFail();
|
|
|
|
// Check file access
|
|
($this->verifyAccessToItemWithin)($share, $file);
|
|
|
|
// Store user download size
|
|
($this->recordDownload)(
|
|
file_size: (int) $file->getRawOriginal('filesize'),
|
|
user_id: $share->user_id,
|
|
);
|
|
|
|
// Finally, download file
|
|
return ($this->downloadFile)($file, $share->user_id);
|
|
}
|
|
} |