2019-08-07 02:44:38 +02:00
|
|
|
<?php
|
2020-09-28 12:04:34 +02:00
|
|
|
|
2019-08-07 02:44:38 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-08-07 02:44:38 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-08-07 02:44:38 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
2020-09-28 12:04:34 +02:00
|
|
|
use App\Http\Requests\ClientPortal\Documents\ShowDocumentRequest;
|
|
|
|
use App\Http\Requests\Document\DownloadMultipleDocumentsRequest;
|
|
|
|
use App\Models\Document;
|
|
|
|
use App\Utils\TempFile;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-08-07 08:56:19 +02:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2020-09-28 12:04:34 +02:00
|
|
|
use ZipStream\Option\Archive;
|
|
|
|
use ZipStream\ZipStream;
|
2019-08-07 02:44:38 +02:00
|
|
|
|
|
|
|
class DocumentController extends Controller
|
|
|
|
{
|
2020-09-28 12:04:34 +02:00
|
|
|
use MakesHash;
|
2019-08-07 02:44:38 +02:00
|
|
|
|
|
|
|
/**
|
2020-09-28 12:04:34 +02:00
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
2019-08-07 02:44:38 +02:00
|
|
|
*/
|
2020-09-28 12:04:34 +02:00
|
|
|
public function index()
|
2019-08-07 02:44:38 +02:00
|
|
|
{
|
2020-09-28 12:04:34 +02:00
|
|
|
return render('documents.index');
|
2019-08-07 02:44:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-09-28 12:04:34 +02:00
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
2019-08-07 02:44:38 +02:00
|
|
|
*/
|
2020-09-28 12:04:34 +02:00
|
|
|
public function show(ShowDocumentRequest $request, Document $document)
|
2019-08-07 02:44:38 +02:00
|
|
|
{
|
2020-09-28 12:04:34 +02:00
|
|
|
return render('documents.show', [
|
|
|
|
'document' => $document,
|
|
|
|
]);
|
2019-08-07 02:44:38 +02:00
|
|
|
}
|
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
public function download(ShowDocumentRequest $request, Document $document)
|
2019-08-07 02:44:38 +02:00
|
|
|
{
|
2020-09-28 12:04:34 +02:00
|
|
|
return Storage::disk($document->disk)->download($document->url, $document->name);
|
2019-08-07 02:44:38 +02:00
|
|
|
}
|
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
public function downloadMultiple(DownloadMultipleDocumentsRequest $request)
|
2019-08-07 02:44:38 +02:00
|
|
|
{
|
2020-09-28 12:04:34 +02:00
|
|
|
$documents = Document::whereIn('id', $this->transformKeys($request->file_hash))
|
|
|
|
->where('company_id', auth('contact')->user()->company->id)
|
|
|
|
->get();
|
2019-08-07 02:44:38 +02:00
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
$documents->map(function ($document) {
|
|
|
|
if (auth()->user('contact')->client->id != $document->documentable->id) {
|
|
|
|
abort(401);
|
|
|
|
}
|
|
|
|
});
|
2019-08-07 02:44:38 +02:00
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
$options = new Archive();
|
2019-08-08 13:07:26 +02:00
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
$options->setSendHttpHeaders(true);
|
2019-08-08 13:07:26 +02:00
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
$zip = new ZipStream('files.zip', $options);
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
foreach ($documents as $document) {
|
|
|
|
$zip->addFileFromPath(basename($document->filePath()), TempFile::path($document->filePath()));
|
|
|
|
}
|
2019-08-08 13:07:26 +02:00
|
|
|
|
2020-09-28 12:04:34 +02:00
|
|
|
$zip->finish();
|
2019-08-07 02:44:38 +02:00
|
|
|
}
|
|
|
|
}
|