2022-08-04 08:22:48 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-08-04 08:22:48 +02:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\VendorPortal;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use Auth;
|
|
|
|
|
|
|
|
class VendorContactHashLoginController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Logs a user into the client portal using their contact_key
|
|
|
|
* @param string $contact_key The contact key
|
2023-08-06 09:03:12 +02:00
|
|
|
* @return Auth|\Illuminate\Support\Facades\Redirect
|
2022-08-04 08:22:48 +02:00
|
|
|
*/
|
|
|
|
public function login(string $contact_key)
|
|
|
|
{
|
|
|
|
return redirect('/vendors/purchase_orders');
|
|
|
|
}
|
|
|
|
|
2023-08-06 09:35:19 +02:00
|
|
|
/**
|
|
|
|
* @return \Illuminate\Support\Facades\Redirect
|
|
|
|
*/
|
|
|
|
|
2022-08-04 08:22:48 +02:00
|
|
|
public function magicLink(string $magic_link)
|
|
|
|
{
|
|
|
|
return redirect($this->setRedirectPath());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function errorPage()
|
|
|
|
{
|
|
|
|
return render('generic.error', ['title' => session()->get('title'), 'notification' => session()->get('notification')]);
|
|
|
|
}
|
|
|
|
}
|