2019-09-23 07:59:01 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-09-23 07:59:01 +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-09-23 07:59:01 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
|
2020-08-12 04:02:21 +02:00
|
|
|
use App\Events\Credit\CreditWasViewed;
|
2020-07-17 03:18:40 +02:00
|
|
|
use App\Events\Invoice\InvoiceWasViewed;
|
2020-03-05 08:14:57 +01:00
|
|
|
use App\Events\Misc\InvitationWasViewed;
|
2020-08-12 04:02:21 +02:00
|
|
|
use App\Events\Quote\QuoteWasViewed;
|
2019-09-23 07:59:01 +02:00
|
|
|
use App\Http\Controllers\Controller;
|
2020-07-08 14:02:16 +02:00
|
|
|
use App\Utils\Ninja;
|
2019-09-23 07:59:01 +02:00
|
|
|
use App\Utils\Traits\MakesDates;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
2020-10-09 03:59:59 +02:00
|
|
|
use Illuminate\Support\Str;
|
2019-09-23 07:59:01 +02:00
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class InvitationController.
|
2019-09-23 07:59:01 +02:00
|
|
|
*/
|
|
|
|
class InvitationController extends Controller
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use MakesDates;
|
|
|
|
|
2019-11-16 04:12:29 +01:00
|
|
|
public function router(string $entity, string $invitation_key)
|
2019-09-23 07:59:01 +02:00
|
|
|
{
|
2019-11-16 04:12:29 +01:00
|
|
|
$key = $entity.'_id';
|
2020-03-06 14:41:15 +01:00
|
|
|
|
2020-11-11 01:13:39 +01:00
|
|
|
$entity_obj = 'App\Models\\'.ucfirst(Str::camel($entity)).'Invitation';
|
2019-09-23 07:59:01 +02:00
|
|
|
|
2020-09-07 06:49:57 +02:00
|
|
|
$invitation = $entity_obj::whereRaw('BINARY `key`= ?', [$invitation_key])
|
|
|
|
->with('contact.client')
|
|
|
|
->firstOrFail();
|
2019-09-23 07:59:01 +02:00
|
|
|
|
2020-09-07 06:49:57 +02:00
|
|
|
/* Return early if we have the correct client_hash embedded */
|
2020-07-14 07:37:49 +02:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if (request()->has('client_hash') && request()->input('client_hash') == $invitation->contact->client->client_hash) {
|
2020-09-07 06:49:57 +02:00
|
|
|
auth()->guard('contact')->login($invitation->contact, true);
|
2020-11-25 15:19:52 +01:00
|
|
|
} elseif ((bool) $invitation->contact->client->getSetting('enable_client_portal_password') !== false) {
|
2020-09-07 06:49:57 +02:00
|
|
|
$this->middleware('auth:contact');
|
2020-11-25 15:19:52 +01:00
|
|
|
} else {
|
2020-09-07 06:49:57 +02:00
|
|
|
auth()->guard('contact')->login($invitation->contact, true);
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-09-07 06:49:57 +02:00
|
|
|
if (auth()->guard('contact') && ! request()->has('silent') && ! $invitation->viewed_date) {
|
|
|
|
$invitation->markViewed();
|
2020-07-17 03:18:40 +02:00
|
|
|
|
2020-09-07 06:49:57 +02:00
|
|
|
event(new InvitationWasViewed($invitation->{$entity}, $invitation, $invitation->{$entity}->company, Ninja::eventVars()));
|
2019-11-04 01:22:59 +01:00
|
|
|
|
2020-09-07 06:49:57 +02:00
|
|
|
$this->fireEntityViewedEvent($invitation, $entity);
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-09-07 06:49:57 +02:00
|
|
|
|
|
|
|
return redirect()->route('client.'.$entity.'.show', [$entity => $this->encodePrimaryKey($invitation->{$key})]);
|
2020-03-06 14:41:15 +01:00
|
|
|
}
|
|
|
|
|
2020-07-17 03:18:40 +02:00
|
|
|
private function fireEntityViewedEvent($invitation, $entity_string)
|
|
|
|
{
|
|
|
|
switch ($entity_string) {
|
|
|
|
case 'invoice':
|
|
|
|
event(new InvoiceWasViewed($invitation, $invitation->company, Ninja::eventVars()));
|
|
|
|
break;
|
2020-08-12 04:02:21 +02:00
|
|
|
case 'quote':
|
|
|
|
event(new QuoteWasViewed($invitation, $invitation->company, Ninja::eventVars()));
|
|
|
|
break;
|
|
|
|
case 'credit':
|
|
|
|
event(new CreditWasViewed($invitation, $invitation->company, Ninja::eventVars()));
|
2020-09-06 11:38:10 +02:00
|
|
|
break;
|
2020-07-17 03:18:40 +02:00
|
|
|
default:
|
2020-09-06 11:38:10 +02:00
|
|
|
// code...
|
2020-07-17 03:18:40 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-06 14:41:15 +01:00
|
|
|
public function routerForDownload(string $entity, string $invitation_key)
|
|
|
|
{
|
2020-03-11 12:05:05 +01:00
|
|
|
return redirect('client/'.$entity.'/'.$invitation_key.'/download_pdf');
|
2019-09-23 07:59:01 +02:00
|
|
|
}
|
2019-11-06 23:57:09 +01:00
|
|
|
|
2019-11-16 04:12:29 +01:00
|
|
|
public function routerForIframe(string $entity, string $client_hash, string $invitation_key)
|
|
|
|
{
|
|
|
|
}
|
2019-09-23 07:59:01 +02:00
|
|
|
}
|