mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
ba75a44eb8
* Adopt Laravel coding style The Laravel framework adopts the PSR-2 coding style with some additions. Laravel apps *should* adopt this coding style as well. However, Shift allows you to customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config to your project. You may use [Shift's .php_cs][2] file as a base. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200 * Shift bindings PHP 5.5.9+ adds the new static `class` property which provides the fully qualified class name. This is preferred over using class name strings as these references are checked by the parser. * Shift core files * Shift to Throwable * Add laravel/ui dependency * Unindent vendor mail templates * Shift config files * Default config files In an effort to make upgrading the constantly changing config files easier, Shift defaulted them so you can review the commit diff for changes. Moving forward, you should use ENV variables or create a separate config file to allow the core config files to remain automatically upgradeable. * Shift Laravel dependencies * Shift cleanup * Upgrade to Laravel 7 Co-authored-by: Laravel Shift <shift@laravelshift.com>
124 lines
3.6 KiB
PHP
124 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
use App\Events\Quote\QuoteWasApproved;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\ClientPortal\ProcessQuotesInBulkRequest;
|
|
use App\Http\Requests\ClientPortal\ShowQuoteRequest;
|
|
use App\Models\Company;
|
|
use App\Models\Quote;
|
|
use App\Utils\Ninja;
|
|
use App\Utils\TempFile;
|
|
use App\Utils\Traits\MakesHash;
|
|
use ZipStream\Option\Archive;
|
|
use ZipStream\ZipStream;
|
|
|
|
class QuoteController extends Controller
|
|
{
|
|
use MakesHash;
|
|
|
|
/**
|
|
* Display a listing of the quotes.
|
|
*
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
*/
|
|
public function index()
|
|
{
|
|
return $this->render('quotes.index');
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param ShowQuoteRequest $request
|
|
* @param Quote $quote
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
*/
|
|
public function show(ShowQuoteRequest $request, Quote $quote)
|
|
{
|
|
$data = [
|
|
'quote' => $quote,
|
|
];
|
|
|
|
if ($request->query('mode') === 'fullscreen') {
|
|
return $this->render('quotes.show.fullscreen', $data);
|
|
}
|
|
|
|
return $this->render('quotes.show', $data);
|
|
}
|
|
|
|
public function bulk(ProcessQuotesInBulkRequest $request)
|
|
{
|
|
$transformed_ids = $this->transformKeys($request->quotes);
|
|
|
|
if ($request->action == 'download') {
|
|
return $this->downloadQuotePdf((array) $transformed_ids);
|
|
}
|
|
|
|
if ($request->action = 'approve') {
|
|
return $this->approve((array) $transformed_ids, $request->has('process'));
|
|
}
|
|
|
|
return back();
|
|
}
|
|
|
|
protected function downloadQuotePdf(array $ids)
|
|
{
|
|
$quotes = Quote::whereIn('id', $ids)
|
|
->whereClientId(auth()->user()->client->id)
|
|
->get();
|
|
|
|
if (! $quotes || $quotes->count() == 0) {
|
|
return;
|
|
}
|
|
|
|
if ($quotes->count() == 1) {
|
|
return response()->streamDownload(function () use ($invoices) {
|
|
echo file_get_contents($invoices->first()->pdf_file_path());
|
|
}, basename($invoices->first()->pdf_file_path()));
|
|
//return response()->download(TempFile::path($invoices->first()->pdf_file_path()), basename($quotes->first()->pdf_file_path()));
|
|
}
|
|
|
|
// enable output of HTTP headers
|
|
$options = new Archive();
|
|
$options->setSendHttpHeaders(true);
|
|
|
|
// create a new zipstream object
|
|
$zip = new ZipStream(date('Y-m-d').'_'.str_replace(' ', '_', trans('texts.invoices')).'.zip', $options);
|
|
|
|
foreach ($quotes as $quote) {
|
|
$zip->addFileFromPath(basename($quote->pdf_file_path()), TempFile::path($quote->pdf_file_path()));
|
|
}
|
|
|
|
// finish the zip stream
|
|
$zip->finish();
|
|
}
|
|
|
|
protected function approve(array $ids, $process = false)
|
|
{
|
|
$quotes = Quote::whereIn('id', $ids)
|
|
->whereClientId(auth()->user()->client->id)
|
|
->get();
|
|
|
|
if (! $quotes || $quotes->count() == 0) {
|
|
return redirect()->route('client.quotes.index');
|
|
}
|
|
|
|
if ($process) {
|
|
foreach ($quotes as $quote) {
|
|
$quote->service()->approve()->save();
|
|
event(new QuoteWasApproved(auth()->user(), $quote, $quote->company, Ninja::eventVars()));
|
|
}
|
|
|
|
return redirect()
|
|
->route('client.quotes.index')
|
|
->withSuccess('Quote(s) approved successfully.');
|
|
}
|
|
|
|
return $this->render('quotes.approve', [
|
|
'quotes' => $quotes,
|
|
]);
|
|
}
|
|
}
|