1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 09:51:35 +02:00
invoiceninja/app/Http/Controllers/ClientPortal/DocumentController.php

99 lines
2.9 KiB
PHP
Raw Normal View History

2019-08-07 02:44:38 +02:00
<?php
2019-08-07 02:44:38 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-08-07 02:44:38 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-08-07 02:44:38 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-08-07 02:44:38 +02:00
*/
namespace App\Http\Controllers\ClientPortal;
use App\Http\Controllers\Controller;
use App\Http\Requests\ClientPortal\Documents\ShowDocumentRequest;
use App\Http\Requests\Document\DownloadMultipleDocumentsRequest;
2021-11-30 21:22:17 +01:00
use App\Libraries\MultiDB;
use App\Models\Document;
use App\Utils\TempFile;
use App\Utils\Traits\MakesHash;
2020-10-28 11:10:49 +01:00
use Illuminate\Contracts\View\Factory;
2019-08-07 08:56:19 +02:00
use Illuminate\Support\Facades\Storage;
2020-10-28 11:10:49 +01:00
use Illuminate\View\View;
2019-08-07 02:44:38 +02:00
class DocumentController extends Controller
{
use MakesHash;
2019-08-07 02:44:38 +02:00
/**
2020-10-28 11:10:49 +01:00
* @return Factory|View
2019-08-07 02:44:38 +02:00
*/
public function index()
2019-08-07 02:44:38 +02:00
{
return render('documents.index');
2019-08-07 02:44:38 +02:00
}
/**
2020-10-28 11:10:49 +01:00
* @param ShowDocumentRequest $request
* @param Document $document
* @return Factory|View
2019-08-07 02:44:38 +02:00
*/
public function show(ShowDocumentRequest $request, Document $document)
2019-08-07 02:44:38 +02:00
{
return render('documents.show', [
'document' => $document,
]);
2019-08-07 02:44:38 +02:00
}
public function download(ShowDocumentRequest $request, Document $document)
2019-08-07 02:44:38 +02:00
{
return Storage::disk($document->disk)->download($document->url, $document->name);
2019-08-07 02:44:38 +02:00
}
public function publicDownload(string $document_hash)
2020-12-12 09:46:28 +01:00
{
2021-11-30 21:22:17 +01:00
MultiDB::documentFindAndSetDb($document_hash);
2023-08-04 08:40:44 +02:00
/** @var \App\Models\Document $document **/
$document = Document::where('hash', $document_hash)->firstOrFail();
2020-12-12 09:46:28 +01:00
2023-06-14 02:10:11 +02:00
$headers = ['Cache-Control:' => 'no-cache'];
2021-09-27 00:03:11 +02:00
if (request()->input('inline') == 'true') {
2021-09-27 00:03:11 +02:00
$headers = array_merge($headers, ['Content-Disposition' => 'inline']);
}
2021-09-27 00:03:11 +02:00
return Storage::disk($document->disk)->download($document->url, $document->name, $headers);
2020-12-12 09:46:28 +01:00
}
public function downloadMultiple(DownloadMultipleDocumentsRequest $request)
2019-08-07 02:44:38 +02:00
{
2023-08-04 08:40:44 +02:00
/** @var \Illuminate\Database\Eloquent\Collection<Document> $documents **/
2023-08-06 09:03:12 +02:00
$documents = Document::query()->whereIn('id', $this->transformKeys($request->file_hash))
2022-02-18 11:45:01 +01:00
->where('company_id', auth()->guard('contact')->user()->company_id)
->get();
2019-08-07 02:44:38 +02:00
2022-02-18 11:45:01 +01:00
$zipFile = new \PhpZip\ZipFile();
2019-08-07 02:44:38 +02:00
try {
2022-02-18 11:45:01 +01:00
foreach ($documents as $document) {
$zipFile->addFile(TempFile::path($document->filePath()), $document->name);
}
2019-08-08 13:07:26 +02:00
$filename = now().'-documents.zip';
$filepath = sys_get_temp_dir().'/'.$filename;
2019-08-08 13:07:26 +02:00
$zipFile->saveAsFile($filepath) // save the archive to a file
2022-02-18 11:45:01 +01:00
->close(); // close archive
2023-02-16 02:36:09 +01:00
return response()->download($filepath, $filename)->deleteFileAfterSend(true);
} catch (\PhpZip\Exception\ZipException $e) {
2022-02-18 11:45:01 +01:00
// handle exception
} finally {
2022-02-18 11:45:01 +01:00
$zipFile->close();
}
2019-08-07 02:44:38 +02:00
}
}