whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
Modules
/
RestAPI
/
Upload File:
files >> /home/kckglobal/public_html/portal/Modules/RestAPI/start.php
<?php /* |-------------------------------------------------------------------------- | Register Namespaces And Routes |-------------------------------------------------------------------------- | | When a module starting, this file will executed automatically. This helps | to register some namespaces like translator or view. Also this file | will load the routes file for each module. You may also modify | this file as you want. | */ use Froiden\RestAPI\Exceptions\UnauthorizedException; require __DIR__ . '/Routes/api.php'; if (!function_exists('parseUser')) { function parseUser() { if (isRunningInBrowser()) { // if (empty(request()->header('Authorization'))) { // throw new UnauthorizedException('Token is invalid', null, 403, 403, 2008); // } $user = auth()->user(); if (!$user) { return null; } return $user; } return null; } } if (!function_exists('api_user')) { /** * @return \Illuminate\Contracts\Auth\Authenticatable|\Illuminate\Http\Response|null * * @throws UnauthorizedException */ function api_user() { $user = parseUser(); return is_a($user, '\App\Models\User') || is_a($user, '\Modules\RestAPI\Entities') ? $user : null; } } if (!function_exists('isRunningInBrowser')) { /** * Check if app is running in browser * * @return bool */ function isRunningInBrowser() { // App should not be running in console, or if it is, then it should // be running unit tests. We need to check browser running because // we want to prevent some parts getting executed in seeders, migrations, etc. // which are run in console. return !App::runningInConsole() || (App::runningInConsole() && App::runningUnitTests()); } } if (!function_exists('isSeedingData')) { /** * Check if app is seeding data * * @return bool */ function isSeedingData() { // We set $_ENV['SEEDING'] at the begining of each seeder. And check here return isset($_ENV['SEEDING']) && $_ENV['SEEDING'] == true; } } if (!function_exists('isRunningTests')) { /** * Check if app is running unit tests * * @return bool */ function isRunningTests() { // If app env is testing return env('APP_ENV') == 'testing'; } } if (!function_exists('shouldSendMail')) { /** * Check if app is running unit tests * * @return bool */ function shouldSendMail() { // If app is not seeding data and not running unit tests return !isSeedingData() && !isRunningTests(); } }
Copyright ©2021 || Defacer Indonesia