mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 07:57:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://opensource.org/licenses/AAL
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Http\Controllers\ClientPortal;
 | 
						|
 | 
						|
use App\Events\Misc\InvitationWasViewed;
 | 
						|
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 = 'App\Models\\'.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');
 | 
						|
            } else {
 | 
						|
                auth()->guard('contact')->login($invitation->contact, true);
 | 
						|
            }
 | 
						|
            
 | 
						|
            if (!request()->has('silent')) {
 | 
						|
                $invitation->markViewed();
 | 
						|
 | 
						|
                event(new InvitationWasViewed($entity, $invitation));
 | 
						|
            }
 | 
						|
 | 
						|
            return redirect()->route('client.'.$entity.'.show', [$entity => $this->encodePrimaryKey($invitation->{$key})]);
 | 
						|
        } else {
 | 
						|
            abort(404);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function routerForDownload(string $entity, string $invitation_key)
 | 
						|
    {
 | 
						|
        return redirect('client/'.$entity.'/'.$invitation_key.'/download_pdf');
 | 
						|
    }
 | 
						|
 | 
						|
    public function routerForIframe(string $entity, string $client_hash, string $invitation_key)
 | 
						|
    {
 | 
						|
    }
 | 
						|
}
 |