whoami7 - Manager
:
/
home
/
qbizpnmr
/
test.qbiztax.com
/
app
/
Http
/
Middleware
/
Upload File:
files >> //home/qbizpnmr/test.qbiztax.com/app/Http/Middleware/IdentifyCompany.php
<?php namespace App\Http\Middleware; use App\Traits\Companies; use App\Traits\Users; use Closure; use Illuminate\Auth\AuthenticationException; class IdentifyCompany { use Companies, Users; /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @param string[] ...$guards * @return mixed * * @throws \Illuminate\Auth\AuthenticationException */ public function handle($request, Closure $next, ...$guards) { $this->request = $request; $company_id = $this->getCompanyId(); if (empty($company_id)) { abort(500, 'Missing company'); } // Check if user can access company if ($this->request->isNotSigned($company_id) && $this->isNotUserCompany($company_id)) { throw new AuthenticationException('Unauthenticated.', $guards); } // Set company as current $company = company($company_id); if (empty($company)) { abort(500, 'Company not found'); } $company->makeCurrent(); // Fix file/folder paths config(['filesystems.disks.' . config('filesystems.default') . '.url' => url('/' . $company_id) . '/uploads']); // Fix routes if ($this->request->isNotApi()) { app('url')->defaults(['company_id' => $company_id]); $this->request->route()->forgetParameter('company_id'); } return $next($this->request); } }
Copyright ©2021 || Defacer Indonesia