mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
81c481c071
* Provide failsafe creation of invoice invitations * URL Links for invitations * open up route for invitations * Set DB by Invite * Set DB By invitation Key * Tests for setting DB based on user email address * Middleware for setting db by email address * fixes for tets * fixes for tests * Tests for bulk actions * Payments API * Fixes for tests
60 lines
1.4 KiB
PHP
60 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\InvoiceInvitation;
|
|
use App\Utils\Traits\MakesDates;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
/**
|
|
* Class InvitationController
|
|
* @package App\Http\Controllers\ClientPortal\InvitationController
|
|
*/
|
|
|
|
class InvitationController extends Controller
|
|
{
|
|
|
|
use MakesHash;
|
|
use MakesDates;
|
|
|
|
public function router(string $entity, string $invitation_key)
|
|
{
|
|
$key = $entity.'_id';
|
|
$entity_obj = ucfirst($entity).'Invitation';
|
|
|
|
$invitation = $entity_obj::whereRaw("BINARY `key`= ?", [$invitation_key])->first();
|
|
|
|
if($invitation){
|
|
|
|
if((bool)$invitation->contact->client->getSetting('enable_client_portal_password') !== false)
|
|
$this->middleware('auth:contact');
|
|
|
|
$invitation->markViewed();
|
|
|
|
return redirect()->route('client.'.$entity.'.show', [$entity => $this->encodePrimaryKey($invitation->{$key})]);
|
|
|
|
}
|
|
else
|
|
abort(404);
|
|
|
|
}
|
|
|
|
public function routerForIframe(string $entity, string $client_hash, string $invitation_key)
|
|
{
|
|
|
|
}
|
|
|
|
}
|