1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Controllers/ClientPortal/QuoteController.php

210 lines
6.8 KiB
PHP
Raw Normal View History

2020-03-23 18:10:42 +01:00
<?php
2021-06-17 14:37:06 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2021-06-17 14:37:06 +02:00
*
2021-06-21 07:10:20 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2021-06-17 14:37:06 +02:00
*/
2020-03-23 18:10:42 +01:00
namespace App\Http\Controllers\ClientPortal;
use App\Events\Misc\InvitationWasViewed;
use App\Events\Quote\QuoteWasApproved;
use App\Events\Quote\QuoteWasViewed;
2020-03-23 18:10:42 +01:00
use App\Http\Controllers\Controller;
2021-06-17 14:37:06 +02:00
use App\Http\Requests\ClientPortal\Quotes\ProcessQuotesInBulkRequest;
use App\Http\Requests\ClientPortal\Quotes\ShowQuoteRequest;
use App\Http\Requests\ClientPortal\Quotes\ShowQuotesRequest;
2020-11-17 16:57:42 +01:00
use App\Jobs\Invoice\InjectSignature;
2020-03-23 18:10:42 +01:00
use App\Models\Quote;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
use App\Utils\TempFile;
2020-03-23 18:10:42 +01:00
use App\Utils\Traits\MakesHash;
2020-10-28 11:10:49 +01:00
use Illuminate\Contracts\View\Factory;
use Illuminate\Http\Request;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Storage;
2020-10-28 11:10:49 +01:00
use Illuminate\View\View;
use Symfony\Component\HttpFoundation\BinaryFileResponse;
2020-03-23 18:10:42 +01:00
class QuoteController extends Controller
{
use MakesHash;
/**
* Display a listing of the quotes.
*
2020-10-28 11:10:49 +01:00
* @return Factory|View
2020-03-23 18:10:42 +01:00
*/
2021-06-17 14:37:06 +02:00
public function index(ShowQuotesRequest $request)
2020-03-23 18:10:42 +01:00
{
return $this->render('quotes.index');
2020-03-23 18:10:42 +01:00
}
/**
* Display the specified resource.
*
* @param ShowQuoteRequest $request
* @param Quote $quote
* @return Factory|View|BinaryFileResponse
2020-03-23 18:10:42 +01:00
*/
public function show(ShowQuoteRequest $request, Quote $quote)
{
2022-01-07 05:03:42 +01:00
/* If the quote is expired, convert the status here */
2022-02-10 01:36:44 +01:00
$invitation = $quote->invitations()->where('client_contact_id', auth()->user()->id)->first();
$data = [
2020-03-23 18:10:42 +01:00
'quote' => $quote,
2022-02-16 00:47:54 +01:00
'key' => $invitation ? $invitation->key : false,
'invitation' => $invitation
];
if ($invitation && auth()->guard('contact') && ! request()->has('silent') && ! $invitation->viewed_date) {
$invitation->markViewed();
event(new InvitationWasViewed($quote, $invitation, $quote->company, Ninja::eventVars()));
event(new QuoteWasViewed($invitation, $invitation->company, Ninja::eventVars()));
}
if ($request->query('mode') === 'fullscreen') {
2021-05-10 13:28:31 +02:00
return render('quotes.show-fullscreen', $data);
}
return $this->render('quotes.show', $data);
2020-03-23 18:10:42 +01:00
}
public function bulk(ProcessQuotesInBulkRequest $request)
{
$transformed_ids = $this->transformKeys($request->quotes);
if ($request->action == 'download') {
return $this->downloadQuotes((array) $transformed_ids);
2020-03-23 18:10:42 +01:00
}
if ($request->action = 'approve') {
return $this->approve((array) $transformed_ids, $request->has('process'));
2020-03-23 18:10:42 +01:00
}
return back();
}
public function downloadQuotes($ids)
{
$data['quotes'] = Quote::whereIn('id', $ids)
->whereClientId(auth()->user()->client->id)
->withTrashed()
->get();
if (count($data['quotes']) == 0) {
return back()->with(['message' => ctrans('texts.no_items_selected')]);
}
return $this->render('quotes.download', $data);
}
public function download(Request $request)
{
$transformed_ids = $this->transformKeys($request->quotes);
return $this->downloadQuotePdf((array) $transformed_ids);
}
2020-03-23 18:10:42 +01:00
protected function downloadQuotePdf(array $ids)
{
$quotes = Quote::whereIn('id', $ids)
->whereClientId(auth()->user()->client->id)
->withTrashed()
2020-03-23 18:10:42 +01:00
->get();
if (! $quotes || $quotes->count() == 0) {
return redirect()
->route('client.quotes.index')
->with('message', ctrans('texts.no_quotes_available_for_download'));
2020-03-23 18:10:42 +01:00
}
if ($quotes->count() == 1) {
$file = $quotes->first()->service()->getQuotePdf();
// return response()->download($file, basename($file), ['Cache-Control:' => 'no-cache'])->deleteFileAfterSend(true);
return response()->streamDownload(function () use ($file) {
echo Storage::get($file);
}, basename($file), ['Content-Type' => 'application/pdf']);
2020-03-23 18:10:42 +01:00
}
2022-02-18 11:45:01 +01:00
return $this->buildZip($quotes);
}
2020-03-23 18:10:42 +01:00
2022-02-18 11:45:01 +01:00
private function buildZip($quotes)
{
// create new archive
$zipFile = new \PhpZip\ZipFile();
try {
2022-02-18 11:45:01 +01:00
foreach ($quotes as $quote) {
2021-07-30 02:37:32 +02:00
//add it to the zip
2022-02-18 11:45:01 +01:00
$zipFile->addFromString(basename($quote->pdf_file_path()), file_get_contents($quote->pdf_file_path(null, 'url', true)));
}
2020-03-23 18:10:42 +01:00
2022-02-18 11:45:01 +01:00
$filename = date('Y-m-d').'_'.str_replace(' ', '_', trans('texts.quotes')).'.zip';
$filepath = sys_get_temp_dir().'/'.$filename;
2022-02-18 11:45:01 +01:00
$zipFile->saveAsFile($filepath) // save the archive to a file
2022-02-18 11:45:01 +01:00
->close(); // close archive
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();
}
2020-03-23 18:10:42 +01:00
}
protected function approve(array $ids, $process = false)
{
$quotes = Quote::whereIn('id', $ids)
->where('client_id', auth()->guard('contact')->user()->client->id)
->where('company_id', auth()->guard('contact')->user()->client->company_id)
->whereIn('status_id', [Quote::STATUS_DRAFT, Quote::STATUS_SENT])
->withTrashed()
2020-03-23 18:10:42 +01:00
->get();
if (! $quotes || $quotes->count() == 0) {
return redirect()
->route('client.quotes.index')
->with('message', ctrans('texts.quotes_with_status_sent_can_be_approved'));
2020-03-23 18:10:42 +01:00
}
if ($process) {
foreach ($quotes as $quote) {
$quote->service()->approve(auth()->user())->save();
if (request()->has('signature') && ! is_null(request()->signature) && ! empty(request()->signature)) {
2020-11-17 16:57:42 +01:00
InjectSignature::dispatch($quote, request()->signature);
}
2020-03-23 18:10:42 +01:00
}
if (count($ids) == 1) {
2022-02-12 01:17:36 +01:00
//forward client to the invoice if it exists
if ($quote->invoice()->exists()) {
return redirect()->route('client.invoice.show', $quote->invoice->hashed_id);
}
return redirect()->route('client.quote.show', $quotes->first()->hashed_id);
}
2020-07-14 13:00:28 +02:00
return redirect()
->route('client.quotes.index')
->withSuccess('Quote(s) approved successfully.');
2020-03-23 18:10:42 +01:00
}
return $this->render('quotes.approve', [
'quotes' => $quotes,
]);
}
}