/home/ivoiecob/email.hirewise-va.com/system/Application.php
<?php
/**
 * This code is licensed under AGPLv3 license or Afterlogic Software License
 * if commercial version of the product was purchased.
 * For full statements of the licenses see LICENSE-AFTERLOGIC and LICENSE-AGPL3 files.
 */

namespace Aurora\System;

/**
 * @license https://www.gnu.org/licenses/agpl-3.0.html AGPL-3.0
 * @license https://afterlogic.com/products/common-licensing Afterlogic Software License
 * @copyright Copyright (c) 2019, Afterlogic Corp.
 *
 * @category Core
 */
class Application
{
    /**
     * @type string
     */
    public const AUTH_TOKEN_KEY = 'AuthToken';

    /**
     * @var \Aurora\System\Module\Manager
     */
    protected $oModuleManager;

    protected static $sBaseUrl = '';

    /**
     * @return void
     */
    protected function __construct()
    {
        //		\MailSo\Config::$FixIconvByMbstring = false;
        \MailSo\Config::$SystemLogger = Api::SystemLogger();
        \register_shutdown_function([$this, '__ApplicationShutdown']);
    }

    public function __ApplicationShutdown()
    {
        $aStatistic = \MailSo\Base\Loader::Statistic();
        if (\is_array($aStatistic)) {
            if (isset($aStatistic['php']['memory_get_peak_usage'])) {
                \Aurora\Api::Log('INFO[MEMORY]: Memory peak usage: ' . $aStatistic['php']['memory_get_peak_usage']);
            }

            if (isset($aStatistic['time'])) {
                \Aurora\Api::Log('INFO[TIME]: Time delta: ' . $aStatistic['time']);
            }
        }
    }

    /**
     * @return \Aurora\System\Application
     */
    public static function NewInstance()
    {
        return new self();
    }

    /**
     * @return \Aurora\System\Application
     */
    public static function SingletonInstance()
    {
        static $oInstance = null;
        if (null === $oInstance) {
            $oInstance = self::NewInstance();
        }

        return $oInstance;
    }

    public static function DebugMode($bDebug)
    {
        Api::$bDebug = $bDebug;
    }

    public static function UseDbLogs()
    {
        Api::$bUseDbLog = true;
    }

    public static function Start($sDefaultEntry = 'default')
    {
        if (!defined('AU_APP_START')) {
            define('AU_APP_START', microtime(true));
        }

        try {
            Api::Init();
        } catch (\Aurora\System\Exceptions\ApiException $oEx) {
            \Aurora\System\Api::LogException($oEx);
        }

        $oSettings = Api::GetSettings();
        $sAllowedOrigin = $oSettings->AllowCrossDomainRequestsFromOrigin;
        if ($sAllowedOrigin) {
            // you cannot simply set Access-Control-Allow-Origin: * to allow any origin, it's doesn't work correctly with cookies
            header('Access-Control-Allow-Origin: ' . (trim($sAllowedOrigin) === '*' ? @$_SERVER['HTTP_ORIGIN'] : $sAllowedOrigin));
            // if set to false server tells the browser do not sent credentials (cookie)
            header('Access-Control-Allow-Credentials: true');

            if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
                if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD'])) {
                    // may also be used: PUT, PATCH, HEAD etc, or *
                    header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
                }

                if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {
                    header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
                }

                exit(0);
            }
        }

        $mResult = self::SingletonInstance()->Route(
            \strtolower(
                Router::getItemByIndex(0, $sDefaultEntry)
            )
        );
        if (\MailSo\Base\Http::SingletonInstance()->GetRequest('Format') !== 'Raw') {
            echo $mResult;
        }
    }

    /**
     * @return array
     */
    public static function GetPaths()
    {
        return Router::getItems();
    }

    public function Route($sRoute)
    {
        return Api::GetModuleManager()->RunEntry($sRoute);
    }

    public static function setBaseUrl($sBaseUrl = '')
    {
        self::$sBaseUrl = $sBaseUrl;
    }

    public static function getBaseUrl()
    {
        if (empty(self::$sBaseUrl)) {
            self::$sBaseUrl = \MailSo\Base\Http::SingletonInstance()->GetFullUrl();
        }
        return self::$sBaseUrl;
    }
}