2018-05-20 12:53:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2020-05-25 07:45:17 +00:00
|
|
|
use Clarkeash\Doorman\Exceptions\{DoormanException,ExpiredInviteCode};
|
|
|
|
use Clarkeash\Doorman\Facades\Doorman;
|
2018-07-13 04:53:44 +00:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
2020-05-25 07:45:17 +00:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2020-02-05 04:47:24 +00:00
|
|
|
use Illuminate\View\View;
|
2019-07-02 05:28:27 +00:00
|
|
|
|
2021-06-29 03:18:52 +00:00
|
|
|
use App\Models\{Invoice,Service,User};
|
2018-07-13 04:53:44 +00:00
|
|
|
|
2021-06-29 03:18:52 +00:00
|
|
|
/**
|
|
|
|
* Class HomeController
|
|
|
|
* This controller is the logged in users home page
|
|
|
|
*
|
|
|
|
* The methods to this controller should be projected by the route
|
|
|
|
*
|
|
|
|
* @package App\Http\Controllers
|
|
|
|
*/
|
2021-06-29 00:37:24 +00:00
|
|
|
class HomeController extends Controller
|
2018-05-20 12:53:14 +00:00
|
|
|
{
|
2020-02-05 04:47:24 +00:00
|
|
|
/**
|
|
|
|
* Logged in users home page
|
|
|
|
*
|
2022-07-29 07:45:17 +00:00
|
|
|
* @param User $o
|
|
|
|
* @return View
|
2020-02-05 04:47:24 +00:00
|
|
|
*/
|
2021-06-29 03:18:52 +00:00
|
|
|
public function home(User $o): View
|
2018-05-20 12:53:14 +00:00
|
|
|
{
|
2022-04-21 04:41:26 +00:00
|
|
|
if (! $o->exists)
|
|
|
|
$o = Auth::user();
|
2018-07-13 04:53:44 +00:00
|
|
|
|
2022-07-29 07:45:17 +00:00
|
|
|
return View('home',['o'=>$o]);
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|
2018-07-16 05:06:43 +00:00
|
|
|
|
2020-05-25 07:45:17 +00:00
|
|
|
/**
|
|
|
|
* Enable the user to down an invoice by providing a link in email
|
|
|
|
*
|
|
|
|
* @param Invoice $o
|
|
|
|
* @param string $code
|
|
|
|
* @return \Illuminate\Http\RedirectResponse|mixed
|
|
|
|
*/
|
|
|
|
public function invoice_pdf_email(Invoice $o,string $code)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
Doorman::redeem($code,$o->account->user->email);
|
|
|
|
|
|
|
|
} catch (ExpiredInviteCode $e) {
|
|
|
|
Log::alert(sprintf('User is using an expired token for invoice [%s] using [%s]',$o->id,$code));
|
|
|
|
|
|
|
|
return redirect()->to('/login');
|
|
|
|
|
|
|
|
} catch (DoormanException $e) {
|
|
|
|
Log::alert(sprintf('An attempt to read invoice id [%s] using [%s]',$o->id,$code));
|
|
|
|
|
|
|
|
abort(404);
|
|
|
|
}
|
|
|
|
|
2021-09-29 07:36:55 +00:00
|
|
|
return $this->invoice($o);
|
2020-05-25 07:45:17 +00:00
|
|
|
}
|
|
|
|
|
2020-04-18 22:33:41 +00:00
|
|
|
/**
|
|
|
|
* Progress the order to the next stage
|
|
|
|
*
|
|
|
|
* @note: Route Middleware protects this path
|
|
|
|
* @param Service $o
|
|
|
|
* @param string $status
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
2021-09-29 07:36:55 +00:00
|
|
|
* @deprecated
|
2020-04-18 22:33:41 +00:00
|
|
|
*/
|
|
|
|
public function service_progress(Service $o,string $status)
|
|
|
|
{
|
|
|
|
return redirect()->to($o->action($status) ?: url('u/service',$o->id));
|
2018-08-01 07:09:38 +00:00
|
|
|
}
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|