Common cache optimization
This commit is contained in:
parent
06b3690d48
commit
23d2631fd7
@ -331,32 +331,29 @@ class common
|
|||||||
*/
|
*/
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
// Construct cache
|
// Récupération du cache des propriétés
|
||||||
if(isset($GLOBALS['common_construct'])) {
|
if(isset($GLOBALS['common_cache'])) {
|
||||||
$this->input['_POST'] = $GLOBALS['common_construct']['input']['_POST'];
|
$this->input['_POST'] = $GLOBALS['common_cache']['input']['_POST'];
|
||||||
$this->input['_COOKIE'] = $GLOBALS['common_construct']['input']['_COOKIE'];
|
$this->input['_COOKIE'] = $GLOBALS['common_cache']['input']['_COOKIE'];
|
||||||
self::$siteContent = $GLOBALS['common_construct']['siteContent'];
|
self::$siteContent = $GLOBALS['common_cache']['siteContent'];
|
||||||
$this->dataFiles = $GLOBALS['common_construct']['dataFiles'];
|
$this->dataFiles = $GLOBALS['common_cache']['dataFiles'];
|
||||||
$this->user = $GLOBALS['common_construct']['user'];
|
$this->user = $GLOBALS['common_cache']['user'];
|
||||||
self::$i18nUI = $GLOBALS['common_construct']['i18nUI'];
|
self::$i18nUI = $GLOBALS['common_cache']['i18nUI'];
|
||||||
$this->hierarchy = $GLOBALS['common_construct']['hierarchy'];
|
$this->hierarchy = $GLOBALS['common_cache']['hierarchy'];
|
||||||
$this->url = $GLOBALS['common_construct']['url'];
|
$this->url = $GLOBALS['common_cache']['url'];
|
||||||
self::$dialog = $GLOBALS['common_construct']['dialog'];
|
self::$dialog = $GLOBALS['common_cache']['dialog'];
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Extraction des données http
|
// Extraction des données http
|
||||||
if (isset($_POST)) {
|
if (isset($_POST)) {
|
||||||
$this->input['_POST'] = $_POST;
|
$this->input['_POST'] = $_POST;
|
||||||
// Cache
|
|
||||||
$GLOBALS['common_construct']['input']['_POST'] = $this->input['_POST'];
|
|
||||||
}
|
}
|
||||||
if (isset($_COOKIE)) {
|
if (isset($_COOKIE)) {
|
||||||
$this->input['_COOKIE'] = $_COOKIE;
|
$this->input['_COOKIE'] = $_COOKIE;
|
||||||
// Cache
|
|
||||||
$GLOBALS['common_construct']['input']['_COOKIE'] = $this->input['_COOKIE'];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Déterminer la langue du contenu du site
|
// Déterminer la langue du contenu du site
|
||||||
if (isset($_SESSION['ZWII_SITE_CONTENT'])) {
|
if (isset($_SESSION['ZWII_SITE_CONTENT'])) {
|
||||||
// Déterminé par la session présente
|
// Déterminé par la session présente
|
||||||
@ -371,17 +368,12 @@ class common
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Cache
|
|
||||||
$GLOBALS['common_construct']['siteContent'] = self::$siteContent;
|
|
||||||
|
|
||||||
// Localisation
|
// Localisation
|
||||||
\setlocale(LC_ALL, self::$siteContent . '.UTF8');
|
\setlocale(LC_ALL, self::$siteContent . '.UTF8');
|
||||||
|
|
||||||
// Instanciation de la classe des entrées / sorties
|
// Instanciation de la classe des entrées / sorties
|
||||||
$this->jsonDB(self::$siteContent);
|
$this->jsonDB(self::$siteContent);
|
||||||
// Cache
|
|
||||||
$GLOBALS['common_construct']['dataFiles'] = $this->dataFiles;
|
|
||||||
|
|
||||||
|
|
||||||
// Installation fraîche, initialisation des modules
|
// Installation fraîche, initialisation des modules
|
||||||
if ($this->user === []) {
|
if ($this->user === []) {
|
||||||
@ -400,8 +392,6 @@ class common
|
|||||||
if ($this->user === []) {
|
if ($this->user === []) {
|
||||||
$this->user = $this->getData(['user', $this->getInput('ZWII_USER_ID')]);
|
$this->user = $this->getData(['user', $this->getInput('ZWII_USER_ID')]);
|
||||||
}
|
}
|
||||||
// Cache
|
|
||||||
$GLOBALS['common_construct']['user'] = $this->user;
|
|
||||||
|
|
||||||
// Langue de l'administration si le user est connecté
|
// Langue de l'administration si le user est connecté
|
||||||
if ($this->getData(['user', $this->getUser('id'), 'language'])) {
|
if ($this->getData(['user', $this->getUser('id'), 'language'])) {
|
||||||
@ -423,15 +413,11 @@ class common
|
|||||||
}
|
}
|
||||||
// Stocker le cookie de langue pour l'éditeur de texte
|
// Stocker le cookie de langue pour l'éditeur de texte
|
||||||
setcookie('ZWII_UI', self::$i18nUI, time() + 3600, helper::baseUrl(false, false), '', false, false);
|
setcookie('ZWII_UI', self::$i18nUI, time() + 3600, helper::baseUrl(false, false), '', false, false);
|
||||||
// Cache
|
|
||||||
$GLOBALS['common_construct']['i18nUI'] = self::$i18nUI;
|
|
||||||
|
|
||||||
// Construit la liste des pages parents/enfants
|
// Construit la liste des pages parents/enfants
|
||||||
if ($this->hierarchy['all'] === []) {
|
if ($this->hierarchy['all'] === []) {
|
||||||
$this->buildHierarchy();
|
$this->buildHierarchy();
|
||||||
}
|
}
|
||||||
// Cache
|
|
||||||
$GLOBALS['common_construct']['hierarchy'] = $this->hierarchy;
|
|
||||||
|
|
||||||
// Construit l'url
|
// Construit l'url
|
||||||
if ($this->url === '') {
|
if ($this->url === '') {
|
||||||
@ -441,8 +427,6 @@ class common
|
|||||||
$this->url = $this->getData(['locale', 'homePageId']);
|
$this->url = $this->getData(['locale', 'homePageId']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Cache
|
|
||||||
$GLOBALS['common_construct']['url'] = $this->url;
|
|
||||||
|
|
||||||
// Chargement des dialogues
|
// Chargement des dialogues
|
||||||
if (!file_exists(self::I18N_DIR . self::$i18nUI . '.json')) {
|
if (!file_exists(self::I18N_DIR . self::$i18nUI . '.json')) {
|
||||||
@ -463,9 +447,6 @@ class common
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Cache
|
|
||||||
$GLOBALS['common_construct']['dialog'] = self::$dialog;
|
|
||||||
|
|
||||||
// Données de proxy
|
// Données de proxy
|
||||||
$proxy = $this->getData(['config', 'proxyType']) . $this->getData(['config', 'proxyUrl']) . ':' . $this->getData(['config', 'proxyPort']);
|
$proxy = $this->getData(['config', 'proxyType']) . $this->getData(['config', 'proxyUrl']) . ':' . $this->getData(['config', 'proxyPort']);
|
||||||
if (
|
if (
|
||||||
@ -487,6 +468,21 @@ class common
|
|||||||
stream_context_set_default($context);
|
stream_context_set_default($context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Mise en cache des propriétés
|
||||||
|
$GLOBALS['common_cache'] = [
|
||||||
|
'input' => [
|
||||||
|
'_POST' => $this->input['_POST'],
|
||||||
|
'_COOKIE' => $this->input['_COOKIE'],
|
||||||
|
],
|
||||||
|
'siteContent' => self::$siteContent,
|
||||||
|
'dataFiles' => $this->dataFiles,
|
||||||
|
'user' => $this->user,
|
||||||
|
'i18nUI' => self::$i18nUI,
|
||||||
|
'hierarchy' => $this->hierarchy,
|
||||||
|
'url' => $this->url,
|
||||||
|
'dialog' => self::$dialog,
|
||||||
|
];
|
||||||
|
|
||||||
// Mise à jour des données core
|
// Mise à jour des données core
|
||||||
include('core/include/update.inc.php');
|
include('core/include/update.inc.php');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user