mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-01 10:54:36 -04:00
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the code style applied by adding a [PHP CS Fixer][1] or [PHP CodeSniffer][2] ruleset to your project root. Feel free to use [Shift's Laravel ruleset][3] to help you get started. For more information on customizing the code style applied by Shift, [watch this short video][4]. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://github.com/squizlabs/PHP_CodeSniffer [3]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200 [4]: https://laravelshift.com/videos/shift-code-style
136 lines
4.7 KiB
PHP
136 lines
4.7 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Http\Controllers\VendorPortal;
|
|
|
|
use App\Events\Credit\CreditWasViewed;
|
|
use App\Events\Invoice\InvoiceWasViewed;
|
|
use App\Events\Misc\InvitationWasViewed;
|
|
use App\Events\Quote\QuoteWasViewed;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Jobs\Entity\CreateRawPdf;
|
|
use App\Models\Client;
|
|
use App\Models\ClientContact;
|
|
use App\Models\CreditInvitation;
|
|
use App\Models\InvoiceInvitation;
|
|
use App\Models\Payment;
|
|
use App\Models\PurchaseOrderInvitation;
|
|
use App\Models\QuoteInvitation;
|
|
use App\Services\ClientPortal\InstantPayment;
|
|
use App\Utils\CurlUtils;
|
|
use App\Utils\Ninja;
|
|
use App\Utils\Traits\MakesDates;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Str;
|
|
|
|
/**
|
|
* Class InvitationController.
|
|
*/
|
|
class InvitationController extends Controller
|
|
{
|
|
use MakesHash;
|
|
use MakesDates;
|
|
|
|
public function purchaseOrder(string $invitation_key)
|
|
{
|
|
Auth::logout();
|
|
|
|
$invitation = PurchaseOrderInvitation::withTrashed()
|
|
->where('key', $invitation_key)
|
|
->whereHas('purchase_order', function ($query) {
|
|
$query->where('is_deleted', 0);
|
|
})
|
|
->with('contact.vendor')
|
|
->first();
|
|
|
|
if (! $invitation) {
|
|
return abort(404, 'The resource is no longer available.');
|
|
}
|
|
|
|
if ($invitation->contact->trashed()) {
|
|
$invitation->contact->restore();
|
|
}
|
|
|
|
$vendor_contact = $invitation->contact;
|
|
$entity = 'purchase_order';
|
|
|
|
if (empty($vendor_contact->email)) {
|
|
$vendor_contact->email = Str::random(15).'@example.com';
|
|
}
|
|
$vendor_contact->save();
|
|
|
|
if (request()->has('vendor_hash') && request()->input('vendor_hash') == $invitation->contact->vendor->vendor_hash) {
|
|
request()->session()->invalidate();
|
|
auth()->guard('vendor')->loginUsingId($vendor_contact->id, true);
|
|
} else {
|
|
nlog('else - default - login contact');
|
|
request()->session()->invalidate();
|
|
auth()->guard('vendor')->loginUsingId($vendor_contact->id, true);
|
|
}
|
|
|
|
session()->put('is_silent', request()->has('silent'));
|
|
|
|
if (auth()->guard('vendor')->user() && ! session()->get('is_silent') && ! $invitation->viewed_date) {
|
|
$invitation->markViewed();
|
|
event(new InvitationWasViewed($invitation->purchase_order, $invitation, $invitation->company, Ninja::eventVars()));
|
|
} else {
|
|
return redirect()->route('vendor.'.$entity.'.show', [$entity => $this->encodePrimaryKey($invitation->purchase_order_id), 'silent' => session()->get('is_silent')]);
|
|
}
|
|
|
|
return redirect()->route('vendor.'.$entity.'.show', [$entity => $this->encodePrimaryKey($invitation->purchase_order_id)]);
|
|
}
|
|
|
|
// public function routerForDownload(string $entity, string $invitation_key)
|
|
// {
|
|
|
|
// set_time_limit(45);
|
|
|
|
// if(Ninja::isHosted())
|
|
// return $this->returnRawPdf($entity, $invitation_key);
|
|
|
|
// return redirect('client/'.$entity.'/'.$invitation_key.'/download_pdf');
|
|
// }
|
|
|
|
// private function returnRawPdf(string $entity, string $invitation_key)
|
|
// {
|
|
|
|
// if(!in_array($entity, ['invoice', 'credit', 'quote', 'recurring_invoice']))
|
|
// return response()->json(['message' => 'Invalid resource request']);
|
|
|
|
// $key = $entity.'_id';
|
|
|
|
// $entity_obj = 'App\Models\\'.ucfirst(Str::camel($entity)).'Invitation';
|
|
|
|
// $invitation = $entity_obj::where('key', $invitation_key)
|
|
// ->with('contact.client')
|
|
// ->firstOrFail();
|
|
|
|
// if(!$invitation)
|
|
// return response()->json(["message" => "no record found"], 400);
|
|
|
|
// $file_name = $invitation->purchase_order->numberFormatter().'.pdf';
|
|
|
|
// $file = CreateRawPdf::dispatchNow($invitation, $invitation->company->db);
|
|
|
|
// $headers = ['Content-Type' => 'application/pdf'];
|
|
|
|
// if(request()->input('inline') == 'true')
|
|
// $headers = array_merge($headers, ['Content-Disposition' => 'inline']);
|
|
|
|
// return response()->streamDownload(function () use($file) {
|
|
// echo $file;
|
|
// }, $file_name, $headers);
|
|
|
|
// }
|
|
}
|