. * */ namespace Vvveb\Controller; use \Vvveb\System\Core\FrontController; use function Vvveb\__; use function Vvveb\config; use function Vvveb\siteSettings; use Vvveb\System\Core\Request; use Vvveb\System\Core\Response; use Vvveb\System\Event; use Vvveb\System\Extensions\Plugins; use Vvveb\System\Session; use Vvveb\System\Traits\Permission; use Vvveb\System\User\Admin; #[\AllowDynamicProperties] class Base { use Permission; protected $global = []; function auth() { $admin = Admin::current(); if (! $admin) { $authMode = config(APP . '.auth.mode'); if ($authMode == 'http') { if (isset($_SERVER['PHP_AUTH_USER'])) { $user = $_SERVER['PHP_AUTH_USER']; $password = $_SERVER['PHP_AUTH_PW'] ?? ''; $loginData = compact('user', 'password'); if ($userInfo = Admin::login($loginData, [], $feedback)) { } else { $this->response->addHeader('WWW-Authenticate', 'Basic realm="REST Api"'); $this->response->addHeader('HTTP/1.0 401 Unauthorized'); $message = __('Auth failed!'); if (DEBUG) { $message .= ' ' . $feedback['message'] ?? []; $message .= " auth.mode = $authMode"; } //FrontController::notFound(false, $message, 403); $this->notFound($message, 403); } } else { $this->response->addHeader('WWW-Authenticate', 'Basic realm="REST Api"'); $this->response->addHeader('HTTP/1.0 401 Unauthorized'); $message = __('Auth failed!'); if (DEBUG) { $message .= __('No credentials!'); $message .= " auth.mode = $authMode"; } //FrontController::notFound(false, $message, 403); $this->notFound($message, 403); } } else { if ($authMode == 'token') { $headers = getallheaders(); $token = $headers['Bearer'] ?? $_SERVER['HTTP_BEARER'] ?? null; if (! $token) { $token = $headers['Authorization'] ?? $_SERVER['HTTP_AUTHORIZATION'] ?? ''; $token = trim(substr($token, 6)) ?: $this->request->get['_token'] ?? false; } if ($token) { if ($userInfo = Admin::auth($token, [], $feedback)) { } else { $this->response->addHeader('HTTP/1.0 401 Unauthorized'); $message = __('Auth failed!'); if (DEBUG) { $message .= ' ' . $feedback['message'] ?? []; $message .= " auth.mode = $authMode"; $message .= " token = $token"; } //FrontController::notFound(false, $message, 403); $this->notFound($message, 403); } } else { $this->response->addHeader('HTTP/1.0 401 Unauthorized'); $message = __('Auth failed!'); if (DEBUG) { $message .= __('No credentials!'); $message .= " auth.mode = $authMode"; $message .= " token = $token"; } //FrontController::notFound(false, $message, 403); $this->notFound($message, 403); } } } } } protected function initEcommerce($countryId, $regionId) { $tax = \Vvveb\System\Cart\Tax::getInstance(); $tax->setRegionRules($countryId, $regionId, 'store'); } function init() { $this->response = Response::getInstance(); $this->request = Request::getInstance(); $this->session = Session::getInstance(); $this->response->setType('json'); if (! GRAPHQL) { $this->notFound(__('GRAPHQL is disabled!'), 404); } $this->auth(); $method = $this->request->getMethod(); Plugins :: loadPlugins(); $site = siteSettings(); list($site) = Event::trigger(__CLASS__, __FUNCTION__, $site); $this->global['site_id'] = SITE_ID ?? 1; $this->global['language_id'] = $this->session->get('language_id') ?? $site['language_id'] ?? 1; $this->global['default_language_id'] = $this->session->get('default_language_id') ?? $site['language_id'] ?? 1; $this->global['limit'] = 10; $this->global['start'] = 0; $this->global['user_id'] = $user['user_id'] ?? false; $this->global['user_group_id'] = $user['user_group_id'] ?? 1; $this->global['site'] = &$site; $this->global['user'] = $user ?? []; $language_id = $this->global['language_id']; if (isset($site['description'][$language_id])) { $site['description'] = $site['description'][$language_id]; } if (isset($site['country_id'])) { $this->initEcommerce($site['country_id'], $site['region_id']); } $this->global['site'] = &$site; list($this->global) = Event::trigger(__CLASS__, __FUNCTION__ . ':after', $this->global); } /** * Call this function if the requeste information was not found, for example if the specifed news, image, profile etc is not found then call this function. * It shows a "Not found" page and it also send 404 http status code, this is usefull for search engines etc. * * @param unknown_type $code * @param mixed $service * @param mixed $statusCode * @param null|mixed $message */ protected function notFound($message = null, $statusCode = 404, $service = false) { $response = Response::getInstance(); http_response_code($statusCode); $response->output(['errors' => is_array($message) ? $message : ['message' => $message]]); die(); } }