Your IP : 216.73.216.133


Current Path : /proc/3751963/cwd/public_html/pano.4uweb.ca/src/
Upload File :
Current File : //proc/3751963/cwd/public_html/pano.4uweb.ca/src/Dispatcher.php

<?php
/**
 * @package   panopticon
 * @copyright Copyright (c)2023-2024 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   https://www.gnu.org/licenses/agpl-3.0.txt GNU Affero General Public License, version 3 or later
 */

namespace Akeeba\Panopticon;

use Akeeba\Panopticon\Library\Editor\ACE;
use Akeeba\Panopticon\Library\Editor\TinyMCE;
use Awf\Dispatcher\Dispatcher as AWFDispatcher;
use Awf\Input\Filter;
use Awf\Uri\Uri;
use Awf\Utils\Template;

defined('AKEEBA') || die;

class Dispatcher extends AWFDispatcher
{
	public function __construct($container = null)
	{
		parent::__construct($container);

		if (empty(Uri::getInstance()->getVar('view')))
		{
			Uri::getInstance()->setVar('view', $this->view);
		}
	}


	public function dispatch()
	{
		try
		{
			parent::dispatch();
		}
		catch (\Exception $e)
		{
			// Access Denied: redirect to the login page
			if ($e->getCode() === 403 && !$this->container->userManager->getUser()->getId())
			{
				$returnUrl = base64_encode(Uri::getInstance()->toString());
				$redirectUrl = $this->container->router->route(
					sprintf('index.php?view=login&return=%s', $returnUrl)
				);

				$this->container->application->redirect($redirectUrl);

				// Just for static analysis. Not really necessary; the statement above halts execution and redirects.
				return;
			}

			throw $e;
		}
	}


	public function onBeforeDispatch(): bool
	{
		$results = $this->getContainer()->eventDispatcher->trigger('onBeforeDispatch');

		if (in_array(false, $results, true))
		{
			return false;
		}

		$this->loadCommonCSS();
		$this->loadCommonJavaScript();

		return true;
	}

	public function onAfterDispatch()
	{
		$results = $this->getContainer()->eventDispatcher->trigger('onAfterDispatch');

		if (in_array(false, $results, true))
		{
			return false;
		}

		return true;
	}


	private function loadCommonJavaScript(): void
	{
		$app = $this->getContainer()->application;

		Template::addJs('media://js/bootstrap.bundle.min.js', $app, defer: true);
		Template::addJs('media://js/system.min.js', $app, defer: false);
		Template::addJs('media://js/ajax.min.js', $app, defer: true);
	}

	private function loadCommonCSS(): void
	{
		$themeFile = $this->container->appConfig->get('theme', 'theme') ?: 'theme';
		$themeFile = (new Filter())->clean($themeFile, 'path');
		$themeFile .= '.min.css';

		if (!@file_exists(Template::parsePath('media://css/' . $themeFile, true, $this->getContainer()->application)))
		{
			$themeFile = 'theme.min.css';
		}

		$app = $this->getContainer()->application;

		Template::addCss('media://css/' . $themeFile, $app);
		Template::addCss('media://css/fontawesome.min.css', $app);

		// Prepare the editors
		ACE::setContainer($this->getContainer());
		TinyMCE::setContainer($this->getContainer());
	}
}