ZwiiCMS/core/core.php

3308 lines
118 KiB
PHP
Raw Normal View History

2021-06-07 10:16:09 +02:00
<?php
/**
* This file is part of Zwii.
* For full copyright and license information, please see the LICENSE
* file that was distributed with this source code.
*
* @author Rémi Jean <remi.jean@outlook.com>
* @copyright Copyright (C) 2008-2018, Rémi Jean
* @author Frédéric Tempez <frederic.tempez@outlook.com>
2023-01-09 10:23:32 +01:00
* @copyright Copyright (C) 2018-2023, Frédéric Tempez
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
2021-06-07 10:16:09 +02:00
* @link http://zwiicms.fr/
*/
2022-09-29 08:45:59 +02:00
class common
{
2021-06-07 10:16:09 +02:00
const DISPLAY_RAW = 0;
const DISPLAY_JSON = 1;
const DISPLAY_RSS = 2;
const DISPLAY_LAYOUT_BLANK = 3;
const DISPLAY_LAYOUT_MAIN = 4;
const DISPLAY_LAYOUT_LIGHT = 5;
const GROUP_BANNED = -1;
const GROUP_VISITOR = 0;
const GROUP_MEMBER = 1;
const GROUP_MODERATOR = 2;
const GROUP_ADMIN = 3;
const SIGNATURE_ID = 1;
const SIGNATURE_PSEUDO = 2;
const SIGNATURE_FIRSTLASTNAME = 3;
const SIGNATURE_LASTFIRSTNAME = 4;
// Dossier de travail
const BACKUP_DIR = 'site/backup/';
const DATA_DIR = 'site/data/';
const FILE_DIR = 'site/file/';
const TEMP_DIR = 'site/tmp/';
2022-09-02 15:37:23 +02:00
const I18N_DIR = 'site/i18n/';
2022-04-08 09:47:35 +02:00
const MODULE_DIR = 'module/';
2021-06-07 10:16:09 +02:00
// Miniatures de la galerie
const THUMBS_SEPARATOR = 'mini_';
const THUMBS_WIDTH = 640;
// Contrôle d'édition temps maxi en secondes avant déconnexion 30 minutes
const ACCESS_TIMER = 1800;
2023-02-07 08:36:19 +01:00
// Numéro de version et branche pour l'auto-update
const ZWII_VERSION = '12.2.04';
const ZWII_DATAVERSION = 12204;
2023-02-07 08:36:19 +01:00
// URL autoupdate
const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/update/raw/branch/master/';
const ZWII_UPDATE_CHANNEL = "v12";
// Constantes de test
//const ZWII_UPDATE_URL = 'http://localhost/update/';
//const ZWII_UPDATE_CHANNEL = "test";
2022-08-08 10:16:12 +02:00
// URL langues de l'UI en ligne
const ZWII_UI_URL = 'https://forge.chapril.org/ZwiiCMS-Team/zwiicms-translations/raw/branch/master/';
2021-06-07 10:16:09 +02:00
public static $actions = [];
public static $coreModuleIds = [
'config',
'install',
'maintenance',
'page',
'sitemap',
'theme',
'user',
'translate',
2022-02-17 15:45:25 +01:00
'plugin'
2021-06-07 10:16:09 +02:00
];
public static $accessList = [
'user',
'theme',
'config',
'edit',
2022-05-05 18:19:56 +02:00
'config',
'translate'
2021-06-07 10:16:09 +02:00
];
public static $accessExclude = [
'login',
'logout'
];
2022-05-05 18:19:56 +02:00
private $data = [];
2021-06-07 10:16:09 +02:00
private $hierarchy = [
'all' => [],
'visible' => [],
'bar' => []
];
private $input = [
'_COOKIE' => [],
'_POST' => []
];
public static $inputBefore = [];
public static $inputNotices = [];
public static $importNotices = [];
public static $captchaNotices = [];
public static $coreNotices = [];
public $output = [
'access' => true,
'content' => '',
'contentLeft' => '',
'contentRight' => '',
'display' => self::DISPLAY_LAYOUT_MAIN,
'metaDescription' => '',
'metaTitle' => '',
'notification' => '',
'redirect' => '',
'script' => '',
'showBarEditButton' => false,
'showPageContent' => false,
'state' => false,
'style' => '',
2023-02-02 21:00:03 +01:00
'title' => null,
// Null car un titre peut être vide
2021-06-07 10:16:09 +02:00
// Trié par ordre d'exécution
'vendor' => [
'jquery',
'normalize',
'lity',
'filemanager',
//'flatpickr', Appelé par les modules désactivé par défaut
// 'tinycolorpicker', Désactivé par défaut
// 'tinymce', Désactivé par défaut
// 'codemirror', // Désactivé par défaut
'tippy',
'zwiico',
'imagemap',
'simplelightbox'
],
'view' => ''
];
public static $groups = [
self::GROUP_BANNED => 'Banni',
self::GROUP_VISITOR => 'Visiteur',
self::GROUP_MEMBER => 'Membre',
self::GROUP_MODERATOR => 'Éditeur',
self::GROUP_ADMIN => 'Administrateur'
];
public static $groupEdits = [
self::GROUP_BANNED => 'Banni',
self::GROUP_MEMBER => 'Membre',
self::GROUP_MODERATOR => 'Éditeur',
self::GROUP_ADMIN => 'Administrateur'
];
public static $groupNews = [
self::GROUP_MEMBER => 'Membre',
self::GROUP_MODERATOR => 'Éditeur',
self::GROUP_ADMIN => 'Administrateur'
];
public static $groupPublics = [
self::GROUP_VISITOR => 'Visiteur',
self::GROUP_MEMBER => 'Membre',
self::GROUP_MODERATOR => 'Éditeur',
self::GROUP_ADMIN => 'Administrateur'
];
2022-09-21 16:02:06 +02:00
//Langues de l'UI
// Langue de l'interface, tableau des dialogues
public static $dialog;
// Langue de l'interface sélectionnée
public static $i18nUI = 'fr_FR';
// Langues de contenu
public static $i18nContent = 'fr_FR';
public static $languages = [
'az_AZ' => 'Azərbaycan dili',
'bg_BG' => 'български език',
//'ca' => 'Català, valencià',
//'cs' => 'čeština, český jazyk',
//'da' => 'Dansk',
2022-09-21 16:02:06 +02:00
'de' => 'Deutsch',
'en_EN' => 'English',
'es' => 'Español',
//'fa' => 'فارسی',
2022-09-21 16:02:06 +02:00
'fr_FR' => 'Français',
'he_IL' => 'Hebrew (Israel)',
'gr_GR' => 'Ελληνικά',
'hr' => 'Hrvatski jezik',
'hu_HU' => 'Magyar',
'id' => 'Bahasa Indonesia',
2022-09-21 16:02:06 +02:00
'it' => 'Italiano',
'ja' => '日本',
'lt' => 'Lietuvių kalba',
//'mn_MN' => 'монгол',
'nb_NO' => 'Norsk bokmål',
'nn_NO' => 'Norsk nynorsk',
2022-09-21 16:02:06 +02:00
'nl' => 'Nederlands, Vlaams',
'pl' => 'Język polski, polszczyzna',
'pt_BR' => 'Português(Brazil)',
2022-09-21 16:02:06 +02:00
'pt_PT' => 'Português',
'ro' => 'Română',
'ru' => 'Pусский язык',
'sk' => 'Slovenčina',
'sl' => 'Slovenski jezik',
2022-09-21 16:02:06 +02:00
'sv_SE' => 'Svenska',
'th_TH' => 'ไทย',
'tr_TR' => 'Türkçe',
'uk_UA' => 'Yкраїнська мова',
'vi' => 'Tiếng Việt',
'zh_CN' => '中文 (Zhōngwén), 汉语, 漢語',
2022-09-21 16:02:06 +02:00
// source: http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
];
// Zone de temps
2021-06-07 10:16:09 +02:00
public static $timezone;
private $url = '';
// Données de site
private $user = [];
2022-02-25 10:54:37 +01:00
// Drapeau de sauvegarde
private $saveFlag = false;
2021-06-07 10:16:09 +02:00
// Descripteur de données Entrées / Sorties
2022-05-05 18:19:56 +02:00
// Liste ici tous les fichiers de données
2021-06-07 10:16:09 +02:00
private $dataFiles = [
2022-02-17 16:58:52 +01:00
'admin' => '',
'blacklist' => '',
2021-06-07 10:16:09 +02:00
'config' => '',
'core' => '',
2022-02-17 16:58:52 +01:00
'fonts' => '',
'module' => '',
'locale' => '',
2021-06-07 10:16:09 +02:00
'page' => '',
'theme' => '',
'user' => '',
'languages' => '',
2021-06-07 10:16:09 +02:00
];
public static $fontsWebSafe = [
2023-02-02 21:00:03 +01:00
'arial' => [
'name' => 'Arial',
'font-family' => 'Arial, Helvetica, sans-serif',
'resource' => 'websafe'
],
2022-05-05 18:19:56 +02:00
'arial-black' => [
2023-02-02 21:00:03 +01:00
'name' => 'Arial Black',
'font-family' => '\'Arial Black\', Gadget, sans-serif',
'resource' => 'websafe'
2022-05-05 18:19:56 +02:00
],
'courrier' => [
2023-02-02 21:00:03 +01:00
'name' => 'Courier',
'font-family' => 'Courier, \'Liberation Mono\', monospace',
'resource' => 'websafe'
],
2023-02-02 21:00:03 +01:00
'courrier-new' => [
'name' => 'Courier New',
'font-family' => '\'Courier New\', Courier, monospace',
'resource' => 'websafe'
],
2023-02-02 21:00:03 +01:00
'garamond' => [
'name' => 'Garamond',
'font-family' => 'Garamond, serif',
'resource' => 'websafe'
],
2023-02-02 21:00:03 +01:00
'georgia' => [
'name' => 'Geogia',
'font-family' => 'Georgia, serif',
'resource' => 'websafe'
],
2023-02-02 21:00:03 +01:00
'impact' => [
'name' => 'Impact',
'font-family' => 'Impact, Charcoal, sans-serif',
'resource' => 'websafe'
],
2023-02-02 21:00:03 +01:00
'lucida' => [
'name' => 'Lucida',
'font-family' => '\'Lucida Sans Unicode\', \'Lucida Grande\', sans-serif',
'resource' => 'websafe'
],
2023-02-02 21:00:03 +01:00
'tahoma' => [
'name' => 'Tahoma',
'font-family' => 'Tahoma, Geneva, sans-serif',
'resource' => 'websafe'
],
2023-02-02 21:00:03 +01:00
'times-new-roman' => [
'name' => 'Times New Roman',
'font-family' => '\'Times New Roman\', \'Liberation Serif\', serif',
'resource' => 'websafe'
],
2023-02-02 21:00:03 +01:00
'trebuchet' => [
'name' => 'Trebuchet',
'font-family' => '\'Trebuchet MS\', Arial, Helvetica, sans-serif',
'resource' => 'websafe'
],
2023-02-02 21:00:03 +01:00
'verdana' => [
'name' => 'Verdana',
'font-family' => 'Verdana, Geneva, sans-serif;',
'resource' => 'websafe'
]
];
2022-03-07 11:31:52 +01:00
2021-06-07 10:16:09 +02:00
/**
* Constructeur commun
*/
2022-09-29 08:45:59 +02:00
public function __construct()
{
2021-06-14 18:37:45 +02:00
2021-06-07 10:16:09 +02:00
// Extraction des données http
2022-09-29 08:45:59 +02:00
if (isset($_POST)) {
2021-06-07 10:16:09 +02:00
$this->input['_POST'] = $_POST;
}
2022-09-29 08:45:59 +02:00
if (isset($_COOKIE)) {
2021-06-07 10:16:09 +02:00
$this->input['_COOKIE'] = $_COOKIE;
}
// Déterminer la langue du contenu du site
2022-09-29 19:08:32 +02:00
if (isset($this->input['_COOKIE']['ZWII_CONTENT'])) {
2022-09-21 19:51:46 +02:00
// Déterminé par le cookie
2022-09-29 19:08:32 +02:00
self::$i18nContent = $this->input['_COOKIE']['ZWII_CONTENT'];
\setlocale(LC_ALL, self::$i18nContent . '.UTF8');
}
// Instanciation de la classe des entrées / sorties
// Récupère les descripteurs
foreach ($this->dataFiles as $keys => $value) {
// Constructeur JsonDB
$this->dataFiles[$keys] = new \Prowebcraft\JsonDb([
'name' => $keys . '.json',
'dir' => $this->dataPath($keys, self::$i18nContent),
'backup' => file_exists('site/data/.backup')
2023-02-02 21:00:03 +01:00
]);
2022-11-21 10:05:55 +01:00
}
2022-05-05 18:19:56 +02:00
// Installation fraîche, initialisation des modules manquants
foreach ($this->dataFiles as $stageId => $item) {
2022-09-29 08:45:59 +02:00
$folder = $this->dataPath($stageId, self::$i18nContent);
if (
file_exists($folder . $stageId . '.json') === false ||
$this->getData([$stageId]) === NULL
) {
2022-09-02 18:45:55 +02:00
$this->initData($stageId, self::$i18nContent);
2022-09-29 08:45:59 +02:00
common::$coreNotices[] = $stageId;
2022-05-05 18:19:56 +02:00
}
}
// Langue de l'administration
if ($this->getData(['user']) === []) {
// Installation en cours
self::$i18nUI = array_key_exists($this->getInput('ZWII_UI'), self::$languages) ? $this->getInput('ZWII_UI') : 'fr_FR';
} else {
// Langue sélectionnée dans le compte
self::$i18nUI = $this->getData(['user', $this->getUser('id'), 'language']);
// Validation de la langue
self::$i18nUI = (empty(self::$i18nUI) || is_null(self::$i18nUI))
&& !file_exists(self::I18N_DIR . self::$i18nUI . '.json')
? 'fr_FR'
: self::$i18nUI;
}
2022-11-07 17:44:38 +01:00
// Stocker le cookie de langue pour l'éditeur de texte
2022-11-07 18:11:34 +01:00
setcookie('ZWII_UI', self::$i18nUI, time() + 3600, '/', '', false, false);
2022-11-07 17:44:38 +01:00
2021-06-07 10:16:09 +02:00
// Utilisateur connecté
2022-09-29 08:45:59 +02:00
if ($this->user === []) {
2021-06-07 10:16:09 +02:00
$this->user = $this->getData(['user', $this->getInput('ZWII_USER_ID')]);
}
// Construit la liste des pages parents/enfants
2022-09-29 08:45:59 +02:00
if ($this->hierarchy['all'] === []) {
$pages = helper::arrayColumn($this->getData(['page']), 'position', 'SORT_ASC');
2021-06-07 10:16:09 +02:00
// Parents
2022-09-29 08:45:59 +02:00
foreach ($pages as $pageId => $pagePosition) {
if (
2021-06-07 10:16:09 +02:00
// Page parent
$this->getData(['page', $pageId, 'parentPageId']) === ""
// Ignore les pages dont l'utilisateur n'a pas accès
2022-09-29 08:45:59 +02:00
and ($this->getData(['page', $pageId, 'group']) === self::GROUP_VISITOR
or ($this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
and $this->getUser('group') >= $this->getData(['page', $pageId, 'group'])
2021-06-07 10:16:09 +02:00
)
)
) {
2022-09-29 08:45:59 +02:00
if ($pagePosition !== 0) {
2021-06-07 10:16:09 +02:00
$this->hierarchy['visible'][$pageId] = [];
}
2022-09-29 08:45:59 +02:00
if ($this->getData(['page', $pageId, 'block']) === 'bar') {
2021-06-07 10:16:09 +02:00
$this->hierarchy['bar'][$pageId] = [];
}
$this->hierarchy['all'][$pageId] = [];
}
}
// Enfants
2022-09-29 08:45:59 +02:00
foreach ($pages as $pageId => $pagePosition) {
if (
2021-06-07 10:16:09 +02:00
// Page parent
$parentId = $this->getData(['page', $pageId, 'parentPageId'])
// Ignore les pages dont l'utilisateur n'a pas accès
2022-09-29 08:45:59 +02:00
and (
($this->getData(['page', $pageId, 'group']) === self::GROUP_VISITOR
and $this->getData(['page', $parentId, 'group']) === self::GROUP_VISITOR
2021-06-07 10:16:09 +02:00
)
2022-09-29 08:45:59 +02:00
or ($this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
and $this->getUser('group') >= $this->getData(['page', $parentId, 'group'])
and $this->getUser('group') >= $this->getData(['page', $pageId, 'group'])
2021-06-07 10:16:09 +02:00
)
)
) {
2022-09-29 08:45:59 +02:00
if ($pagePosition !== 0) {
2021-06-07 10:16:09 +02:00
$this->hierarchy['visible'][$parentId][] = $pageId;
}
2022-09-29 08:45:59 +02:00
if ($this->getData(['page', $pageId, 'block']) === 'bar') {
2021-06-07 10:16:09 +02:00
$this->hierarchy['bar'][$pageId] = [];
}
$this->hierarchy['all'][$parentId][] = $pageId;
}
}
}
2021-06-07 10:16:09 +02:00
// Construit l'url
2022-09-29 08:45:59 +02:00
if ($this->url === '') {
if ($url = $_SERVER['QUERY_STRING']) {
2021-06-07 10:16:09 +02:00
$this->url = $url;
2022-09-29 08:45:59 +02:00
} else {
2021-06-07 10:16:09 +02:00
$this->url = $this->getData(['locale', 'homePageId']);
}
}
// Chargement des dialogues
2022-11-07 17:44:38 +01:00
if (!file_exists(self::I18N_DIR . self::$i18nUI . '.json')) {
// Copie des fichiers de langue par défaut fr_FR si pas initialisé
2022-11-07 17:44:38 +01:00
$this->copyDir('core/module/install/ressource/i18n', self::I18N_DIR);
}
2022-09-21 16:02:06 +02:00
self::$dialog = json_decode(file_get_contents(self::I18N_DIR . self::$i18nUI . '.json'), true);
2023-02-02 21:00:03 +01:00
2023-01-23 15:44:11 +01:00
// Dialogue du module
if ($this->getData(['page', $this->getUrl(0), 'moduleId'])) {
$moduleId = $this->getData(['page', $this->getUrl(0), 'moduleId']);
if (
is_dir(self::MODULE_DIR . $moduleId . '/i18n')
&& file_exists(self::MODULE_DIR . $moduleId . '/i18n/' . self::$i18nUI . '.json')
) {
$d = json_decode(file_get_contents(self::MODULE_DIR . $moduleId . '/i18n/' . self::$i18nUI . '.json'), true);
self::$dialog = array_merge(self::$dialog, $d);
}
}
// Mise à jour des données core selon la version du jeu de données
if ($this->getData(['core', 'dataVersion']) < common::ZWII_DATAVERSION) {
2023-02-02 21:00:03 +01:00
include('core/include/update.inc.php');
}
2021-06-07 10:16:09 +02:00
// Données de proxy
2022-09-29 08:45:59 +02:00
$proxy = $this->getData(['config', 'proxyType']) . $this->getData(['config', 'proxyUrl']) . ':' . $this->getData(['config', 'proxyPort']);
if (
!empty($this->getData(['config', 'proxyUrl'])) &&
!empty($this->getData(['config', 'proxyPort']))
) {
2021-06-07 10:16:09 +02:00
$context = array(
'http' => array(
'proxy' => $proxy,
'request_fulluri' => true,
2023-02-02 21:00:03 +01:00
'verify_peer' => false,
2021-06-07 10:16:09 +02:00
'verify_peer_name' => false,
),
2022-09-29 08:45:59 +02:00
"ssl" => array(
"verify_peer" => false,
"verify_peer_name" => false
2021-06-07 10:16:09 +02:00
)
);
stream_context_set_default($context);
}
2021-06-07 10:16:09 +02:00
}
2021-06-07 10:16:09 +02:00
/**
* Ajoute les valeurs en sortie
* @param array $output Valeurs en sortie
*/
2022-09-29 08:45:59 +02:00
public function addOutput($output)
{
2021-06-07 10:16:09 +02:00
$this->output = array_merge($this->output, $output);
}
/**
* Ajoute une notice de champ obligatoire
* @param string $key Clef du champ
*/
2022-09-29 08:45:59 +02:00
public function addRequiredInputNotices($key)
{
2021-06-07 10:16:09 +02:00
// La clef est un tableau
2022-09-29 08:45:59 +02:00
if (preg_match('#\[(.*)\]#', $key, $secondKey)) {
2021-06-07 10:16:09 +02:00
$firstKey = explode('[', $key)[0];
$secondKey = $secondKey[1];
2022-09-29 08:45:59 +02:00
if (empty($this->input['_POST'][$firstKey][$secondKey])) {
2021-06-07 10:16:09 +02:00
common::$inputNotices[$firstKey . '_' . $secondKey] = 'Obligatoire';
}
}
// La clef est une chaine
2022-09-29 08:45:59 +02:00
elseif (empty($this->input['_POST'][$key])) {
2021-06-07 10:16:09 +02:00
common::$inputNotices[$key] = 'Obligatoire';
}
}
/**
* Check du token CSRF (true = bo
*/
2022-09-29 08:45:59 +02:00
public function checkCSRF()
{
return ((empty($_POST['csrf']) or hash_equals($_SESSION['csrf'], $_POST['csrf']) === false) === false);
2021-06-07 10:16:09 +02:00
}
/**
* Supprime des données
* @param array $keys Clé(s) des données
*/
2022-09-29 08:45:59 +02:00
public function deleteData($keys)
{
2022-02-25 09:05:37 +01:00
// Descripteur de la base
2021-06-07 10:16:09 +02:00
$db = $this->dataFiles[$keys[0]];
2022-02-25 09:05:37 +01:00
// Initialisation de la requête par le nom de la base
$query = $keys[0];
// Construire la requête
2022-09-29 08:45:59 +02:00
for ($i = 1; $i <= count($keys) - 1; $i++) {
2022-02-25 09:05:37 +01:00
$query .= '.' . $keys[$i];
2021-06-07 10:16:09 +02:00
}
2022-02-25 09:05:37 +01:00
// Effacer la donnée
$success = $db->delete($query, true);
2022-02-25 08:49:06 +01:00
return is_object($success);
2021-06-07 10:16:09 +02:00
}
2022-09-29 08:45:59 +02:00
/**
2022-02-24 15:41:51 +01:00
* Sauvegarde des données
* @param array $keys Clé(s) des données
*/
2022-09-29 08:45:59 +02:00
public function setData($keys = [])
{
2022-02-24 15:41:51 +01:00
// Pas d'enregistrement lorsqu'une notice est présente ou tableau transmis vide
2022-09-29 08:45:59 +02:00
if (
!empty(self::$inputNotices)
or empty($keys)
) {
2022-02-24 15:41:51 +01:00
return false;
}
// Empêcher la sauvegarde d'une donnée nulle.
2022-09-29 08:45:59 +02:00
if (gettype($keys[count($keys) - 1]) === NULL) {
2022-02-24 15:41:51 +01:00
return false;
}
2022-02-25 09:05:37 +01:00
// Initialisation du retour en cas d'erreur de descripteur
2022-02-25 08:27:16 +01:00
$success = false;
2022-02-25 09:05:37 +01:00
// Construire la requête dans la base inf à 1 retourner toute la base
2022-02-24 15:41:51 +01:00
if (count($keys) >= 1) {
2022-02-25 09:05:37 +01:00
// Descripteur de la base
2022-02-24 15:41:51 +01:00
$db = $this->dataFiles[$keys[0]];
2022-02-25 09:05:37 +01:00
$query = $keys[0];
// Construire la requête
2022-02-25 08:42:00 +01:00
// Ne pas tenir compte du dernier élément qui une une value donc <
2022-09-29 08:45:59 +02:00
for ($i = 1; $i < count($keys) - 1; $i++) {
2022-02-25 09:05:37 +01:00
$query .= '.' . $keys[$i];
2022-02-24 15:41:51 +01:00
}
2022-02-25 09:05:37 +01:00
// Appliquer la modification, le dernier élément étant la donnée à sauvegarder
2022-09-29 08:45:59 +02:00
$success = is_object($db->set($query, $keys[count($keys) - 1], true));
2022-02-24 15:41:51 +01:00
}
2022-02-25 08:27:16 +01:00
return $success;
2022-02-24 15:41:51 +01:00
}
2021-06-07 10:16:09 +02:00
/**
* Accède aux données
* @param array $keys Clé(s) des données
* @return mixed
*/
2022-09-29 08:45:59 +02:00
public function getData($keys = [])
{
2021-06-07 10:16:09 +02:00
2022-02-25 09:05:37 +01:00
// Eviter une requete vide
2021-06-07 10:16:09 +02:00
if (count($keys) >= 1) {
2022-02-25 09:05:37 +01:00
// descripteur de la base
2021-06-07 10:16:09 +02:00
$db = $this->dataFiles[$keys[0]];
2022-02-25 09:05:37 +01:00
$query = $keys[0];
// Construire la requête
2022-09-29 08:45:59 +02:00
for ($i = 1; $i < count($keys); $i++) {
2022-02-25 09:05:37 +01:00
$query .= '.' . $keys[$i];
2021-06-07 10:16:09 +02:00
}
2022-02-25 09:05:37 +01:00
return $db->get($query);
2021-06-07 10:16:09 +02:00
}
}
2021-08-17 08:24:12 +02:00
/**
* Lire les données de la page
* @param string pageId
* @param string langue
* @return string contenu de la page
2021-08-17 08:24:12 +02:00
*/
2022-09-29 08:45:59 +02:00
public function getPage($page, $lang)
{
2021-08-17 08:24:12 +02:00
2021-11-18 11:34:19 +01:00
// Le nom de la ressource et le fichier de contenu sont définis :
if (
2022-09-29 08:45:59 +02:00
$this->getData(['page', $page, 'content']) !== ''
&& file_exists(self::DATA_DIR . $lang . '/content/' . $this->getData(['page', $page, 'content']))
) {
return file_get_contents(self::DATA_DIR . $lang . '/content/' . $this->getData(['page', $page, 'content']));
} else {
return 'Aucun contenu trouvé.';
2021-11-18 11:34:19 +01:00
}
2021-08-17 08:24:12 +02:00
}
/**
* Ecrire les données de la page
* @param string pageId
2021-11-18 11:34:19 +01:00
* @param string contenu de la page
* @return int nombre d'octets écrits ou erreur
2021-08-17 08:24:12 +02:00
*/
2022-09-29 08:45:59 +02:00
public function setPage($page, $value, $lang)
{
2021-08-17 08:24:12 +02:00
return file_put_contents(self::DATA_DIR . $lang . '/content/' . $page . '.html', $value);
2021-08-17 08:24:12 +02:00
}
2022-02-18 12:43:48 +01:00
2021-08-17 08:24:12 +02:00
/**
* Effacer les données de la page
* @param string pageId
* @return bool statut de l'effacement
2021-08-17 08:24:12 +02:00
*/
2022-09-29 08:45:59 +02:00
public function deletePage($page, $lang)
{
2021-08-17 08:24:12 +02:00
2022-09-29 08:45:59 +02:00
return unlink(self::DATA_DIR . $lang . '/content/' . $this->getData(['page', $page, 'content']));
2022-02-18 12:43:48 +01:00
}
2021-06-07 10:16:09 +02:00
/**
* Initialisation des données
* @param array $module : nom du module à générer
* choix valides : core config user theme page module
*/
2022-09-29 08:45:59 +02:00
public function initData($module, $lang, $sampleSite = false)
{
2021-06-07 10:16:09 +02:00
2023-02-02 21:00:03 +01:00
// Créer la base de données des langues
if ($module === 'languages') {
copy('core/module/install/ressource/i18n/languages.json', self::DATA_DIR . 'languages.json');
$this->copyDir('core/module/install/ressource/i18n', self::I18N_DIR);
unlink(self::I18N_DIR . 'languages.json');
return;
}
2021-06-07 10:16:09 +02:00
// Tableau avec les données vierges
require_once('core/module/install/ressource/defaultdata.php');
// Stockage dans un sous-dossier localisé
2023-02-02 21:00:03 +01:00
if (!file_exists(self::DATA_DIR . $lang)) {
2022-09-29 08:45:59 +02:00
mkdir(self::DATA_DIR . $lang, 0755);
2021-06-07 10:16:09 +02:00
}
$db = $this->dataFiles[$module];
2022-09-28 14:15:06 +02:00
if ($sampleSite === true && $lang === 'fr_FR') {
2022-09-29 08:45:59 +02:00
$db->set($module, init::$siteData[$module]);
2021-06-07 10:16:09 +02:00
} else {
2022-09-29 08:45:59 +02:00
$db->set($module, init::$defaultData[$module]);
2021-06-07 10:16:09 +02:00
}
$db->save;
// Créer le jeu de pages du site de test
2022-09-29 08:45:59 +02:00
if ($module === 'page') {
$langFolder = $lang . '/content/';
// Dossier des pages
if (!is_dir(self::DATA_DIR . $langFolder)) {
mkdir(self::DATA_DIR . $langFolder, 0755);
}
2021-06-07 10:16:09 +02:00
// Site de test ou page simple
if ($lang === 'fr_FR') {
if ($sampleSite === true) {
foreach (init::$siteContent as $key => $value) {
// Creation du contenu de la page
if (!empty($this->getData(['page', $key, 'content']))) {
file_put_contents(self::DATA_DIR . $langFolder . $this->getData(['page', $key, 'content']), $value);
}
2021-10-19 19:14:52 +02:00
}
} else {
// Créer la page d'accueil
2022-12-20 13:55:29 +01:00
file_put_contents(self::DATA_DIR . $langFolder . 'accueil.html', '<p>Contenu de votre nouvelle page.</p>');
2021-06-07 10:16:09 +02:00
}
} else {
// En_EN si le contenu localisé n'est pas traduit
if (!isset(init::$defaultDataI18n[$lang])) {
$lang = 'en_EN';
}
// Messages localisés
$this->setData(['locale', init::$defaultDataI18n[$lang]['locale']]);
// Page dans une autre langue, page d'accueil
$this->setData(['page', init::$defaultDataI18n[$lang]['page']]);
2021-06-07 10:16:09 +02:00
// Créer la page d'accueil
2023-02-02 21:00:03 +01:00
$pageId = init::$defaultDataI18n[$lang]['locale']['homePageId'];
$content = init::$defaultDataI18n[$lang]['html'];
file_put_contents(self::DATA_DIR . $langFolder . init::$defaultDataI18n[$lang]['page'][$pageId]['content'], $content);
2021-06-07 10:16:09 +02:00
}
}
}
/**
* Accède à la liste des pages parents et de leurs enfants
* @param int $parentId Id de la page parent
* @param bool $onlyVisible Affiche seulement les pages visibles
* @param bool $onlyBlock Affiche seulement les pages de type barre
* @return array
*/
2022-09-29 08:45:59 +02:00
public function getHierarchy($parentId = null, $onlyVisible = true, $onlyBlock = false)
{
2021-06-07 10:16:09 +02:00
$hierarchy = $onlyVisible ? $this->hierarchy['visible'] : $this->hierarchy['all'];
$hierarchy = $onlyBlock ? $this->hierarchy['bar'] : $hierarchy;
// Enfants d'un parent
2022-09-29 08:45:59 +02:00
if ($parentId) {
if (array_key_exists($parentId, $hierarchy)) {
2021-06-07 10:16:09 +02:00
return $hierarchy[$parentId];
2022-09-29 08:45:59 +02:00
} else {
2021-06-07 10:16:09 +02:00
return [];
}
}
// Parents et leurs enfants
else {
return $hierarchy;
}
}
/**
* Accède à une valeur des variables http (ordre de recherche en l'absence de type : _COOKIE, _POST)
* @param string $key Clé de la valeur
* @param int $filter Filtre à appliquer à la valeur
* @param bool $required Champ requis
* @return mixed
*/
2022-09-29 08:45:59 +02:00
public function getInput($key, $filter = helper::FILTER_STRING_SHORT, $required = false)
{
2021-06-07 10:16:09 +02:00
// La clef est un tableau
2022-09-29 08:45:59 +02:00
if (preg_match('#\[(.*)\]#', $key, $secondKey)) {
2021-06-07 10:16:09 +02:00
$firstKey = explode('[', $key)[0];
$secondKey = $secondKey[1];
2022-09-29 08:45:59 +02:00
foreach ($this->input as $type => $values) {
2021-06-07 10:16:09 +02:00
// Champ obligatoire
2022-09-29 08:45:59 +02:00
if ($required) {
2021-06-07 10:16:09 +02:00
$this->addRequiredInputNotices($key);
}
// Check de l'existence
// Également utile pour les checkbox qui ne retournent rien lorsqu'elles ne sont pas cochées
2022-09-29 08:45:59 +02:00
if (
2021-06-07 10:16:09 +02:00
array_key_exists($firstKey, $values)
2022-09-29 08:45:59 +02:00
and array_key_exists($secondKey, $values[$firstKey])
2021-06-07 10:16:09 +02:00
) {
// Retourne la valeur filtrée
2022-09-29 08:45:59 +02:00
if ($filter) {
2021-06-07 10:16:09 +02:00
return helper::filter($this->input[$type][$firstKey][$secondKey], $filter);
}
// Retourne la valeur
else {
return $this->input[$type][$firstKey][$secondKey];
}
}
}
}
// La clef est une chaîne
else {
2022-09-29 08:45:59 +02:00
foreach ($this->input as $type => $values) {
2021-06-07 10:16:09 +02:00
// Champ obligatoire
2022-09-29 08:45:59 +02:00
if ($required) {
2021-06-07 10:16:09 +02:00
$this->addRequiredInputNotices($key);
}
// Check de l'existence
// Également utile pour les checkbox qui ne retournent rien lorsqu'elles ne sont pas cochées
2022-09-29 08:45:59 +02:00
if (array_key_exists($key, $values)) {
2021-06-07 10:16:09 +02:00
// Retourne la valeur filtrée
2022-09-29 08:45:59 +02:00
if ($filter) {
2021-06-07 10:16:09 +02:00
return helper::filter($this->input[$type][$key], $filter);
}
// Retourne la valeur
else {
return $this->input[$type][$key];
}
}
}
}
// Sinon retourne null
2022-10-05 10:15:35 +02:00
return helper::filter(null, $filter);
2021-06-07 10:16:09 +02:00
}
/**
* Accède à une partie l'url ou à l'url complète
* @param int $key Clé de l'url
* @return string|null
*/
2022-09-29 08:45:59 +02:00
public function getUrl($key = null)
{
2021-06-07 10:16:09 +02:00
// Url complète
2022-09-29 08:45:59 +02:00
if ($key === null) {
2021-06-07 10:16:09 +02:00
return $this->url;
}
// Une partie de l'url
else {
$url = explode('/', $this->url);
return array_key_exists($key, $url) ? $url[$key] : null;
}
}
/**
* Accède à l'utilisateur connecté
* @param int $key Clé de la valeur
* @return string|null
*/
2022-09-29 08:45:59 +02:00
public function getUser($key)
{
if (is_array($this->user) === false) {
2021-06-07 10:16:09 +02:00
return false;
2022-09-29 08:45:59 +02:00
} elseif ($key === 'id') {
2021-06-07 10:16:09 +02:00
return $this->getInput('ZWII_USER_ID');
2022-09-29 08:45:59 +02:00
} elseif (array_key_exists($key, $this->user)) {
2021-06-07 10:16:09 +02:00
return $this->user[$key];
2022-09-29 08:45:59 +02:00
} else {
2021-06-07 10:16:09 +02:00
return false;
}
}
/**
* Check qu'une valeur est transmise par la méthode _POST
* @return bool
*/
2022-09-29 08:45:59 +02:00
public function isPost()
{
return ($this->checkCSRF() and $this->input['_POST'] !== []);
2021-06-07 10:16:09 +02:00
}
/**
2022-05-05 18:19:56 +02:00
* Génère un fichier json avec la liste des pages
*
2022-09-29 08:45:59 +02:00
*/
public function listPages()
{
// Sauve la liste des pages pour TinyMCE
2021-06-07 10:16:09 +02:00
$parents = [];
2022-09-29 08:45:59 +02:00
$rewrite = (helper::checkRewrite()) ? '' : '?';
// Boucle de recherche des pages actives
foreach ($this->getHierarchy(null, false, false) as $parentId => $childIds) {
2021-06-07 10:16:09 +02:00
$children = [];
// Exclure les barres
2022-09-29 08:45:59 +02:00
if ($this->getData(['page', $parentId, 'block']) !== 'bar') {
2021-06-07 10:16:09 +02:00
// Boucler sur les enfants et récupérer le tableau children avec la liste des enfants
2022-09-29 08:45:59 +02:00
foreach ($childIds as $childId) {
$children[] = [
'title' => ' » ' . html_entity_decode($this->getData(['page', $childId, 'shortTitle']), ENT_QUOTES),
'value' => $rewrite . $childId
2021-06-07 10:16:09 +02:00
];
}
// Traitement
if (empty($childIds)) {
// Pas d'enfant, uniquement l'entrée du parent
2022-09-29 08:45:59 +02:00
$parents[] = [
2023-02-02 21:00:03 +01:00
'title' => html_entity_decode($this->getData(['page', $parentId, 'shortTitle']), ENT_QUOTES),
2022-09-29 08:45:59 +02:00
'value' => $rewrite . $parentId
2021-06-07 10:16:09 +02:00
];
} else {
// Des enfants, on ajoute la page parent en premier
2023-02-02 21:00:03 +01:00
array_unshift($children, [
2022-09-29 08:45:59 +02:00
'title' => html_entity_decode($this->getData(['page', $parentId, 'shortTitle']), ENT_QUOTES),
'value' => $rewrite . $parentId
2021-06-07 10:16:09 +02:00
]);
// puis on ajoute les enfants au parent
2022-09-29 08:45:59 +02:00
$parents[] = [
'title' => html_entity_decode($this->getData(['page', $parentId, 'shortTitle']), ENT_QUOTES),
'value' => $rewrite . $parentId,
'menu' => $children
2021-06-07 10:16:09 +02:00
];
}
}
}
2022-09-29 08:45:59 +02:00
// Sitemap et Search
$children = [];
$children[] = [
'title' => 'Rechercher dans le site',
'value' => $rewrite . 'search'
];
$children[] = [
'title' => 'Plan du site',
'value' => $rewrite . 'sitemap'
];
$parents[] = [
'title' => 'Pages spéciales',
'value' => '#',
'menu' => $children
];
2021-06-07 10:16:09 +02:00
// Enregistrement : 3 tentatives
2022-09-29 08:45:59 +02:00
for ($i = 0; $i < 3; $i++) {
if (file_put_contents('core/vendor/tinymce/link_list.json', json_encode($parents), LOCK_EX) !== false) {
2021-06-07 10:16:09 +02:00
break;
}
// Pause de 10 millisecondes
usleep(10000);
}
}
/**
* Retourne une chemin localisé pour l'enregistrement des données
* @param $stageId nom du module
* @param $lang langue des pages
* @return string du dossier à créer
*/
2022-09-29 08:45:59 +02:00
public function dataPath($id, $lang)
{
2021-06-07 10:16:09 +02:00
// Sauf pour les pages et les modules
2022-09-29 08:45:59 +02:00
if (
$id === 'page' ||
2023-02-02 21:00:03 +01:00
$id === 'module' ||
2022-09-29 08:45:59 +02:00
$id === 'locale'
) {
$folder = self::DATA_DIR . $lang . '/';
2021-06-07 10:16:09 +02:00
} else {
$folder = self::DATA_DIR;
}
return ($folder);
}
/**
* Génère un fichier un fichier sitemap.xml
* https://github.com/icamys/php-sitemap-generator
* $command valeurs possible
* all : génère un site map complet
* Sinon contient id de la page à créer
2022-09-29 08:45:59 +02:00
*/
2021-06-07 10:16:09 +02:00
2022-09-29 08:45:59 +02:00
public function createSitemap($command = "all")
{
2021-06-07 10:16:09 +02:00
2022-05-05 18:19:56 +02:00
//require_once "core/vendor/sitemap/SitemapGenerator.php";
2022-09-29 08:45:59 +02:00
$timezone = $this->getData(['config', 'timezone']);
2021-06-07 10:16:09 +02:00
$outputDir = getcwd();
2022-09-29 08:45:59 +02:00
$sitemap = new \Icamys\SitemapGenerator\SitemapGenerator(helper::baseurl(false), $outputDir);
2021-06-07 10:16:09 +02:00
// will create also compressed (gzipped) sitemap : option buguée
// $sitemap->enableCompression();
2021-06-07 10:16:09 +02:00
// determine how many urls should be put into one file
// according to standard protocol 50000 is maximum value (see http://www.sitemaps.org/protocol.html)
$sitemap->setMaxUrlsPerSitemap(50000);
// sitemap file name
2022-09-29 08:45:59 +02:00
$sitemap->setSitemapFileName('sitemap.xml');
2021-06-07 10:16:09 +02:00
// Set the sitemap index file name
2022-09-29 08:45:59 +02:00
$sitemap->setSitemapIndexFileName('sitemap-index.xml');
2021-06-07 10:16:09 +02:00
$datetime = new DateTime(date('c'));
$datetime->format(DateTime::ATOM); // Updated ISO8601
2022-09-29 08:45:59 +02:00
foreach ($this->getHierarchy(null, null, null) as $parentPageId => $childrenPageIds) {
2021-06-07 10:16:09 +02:00
// Exclure les barres et les pages non publiques et les pages masquées
2022-09-29 08:45:59 +02:00
if (
2023-02-02 21:00:03 +01:00
$this->getData(['page', $parentPageId, 'group']) !== 0 ||
2022-09-29 08:45:59 +02:00
$this->getData(['page', $parentPageId, 'block']) === 'bar'
) {
2021-06-07 10:16:09 +02:00
continue;
}
// Page désactivée, traiter les sous-pages sans prendre en compte la page parente.
2022-09-29 08:45:59 +02:00
if ($this->getData(['page', $parentPageId, 'disable']) !== true) {
2021-12-09 18:28:37 +01:00
// Cas de la page d'accueil ne pas dupliquer l'URL
$pageId = ($parentPageId !== $this->getData(['locale', 'homePageId'])) ? $parentPageId : '';
2022-09-29 08:45:59 +02:00
$sitemap->addUrl('/' . $pageId, $datetime);
2021-06-07 10:16:09 +02:00
}
// Articles du blog
2022-09-29 08:45:59 +02:00
if (
$this->getData(['page', $parentPageId, 'moduleId']) === 'blog' &&
!empty($this->getData(['module', $parentPageId]))
) {
foreach ($this->getData(['module', $parentPageId, 'posts']) as $articleId => $article) {
if ($this->getData(['module', $parentPageId, 'posts', $articleId, 'state']) === true) {
$date = $this->getData(['module', $parentPageId, 'posts', $articleId, 'publishedOn']);
2023-02-02 21:00:03 +01:00
$sitemap->addUrl('/' . $parentPageId . '/' . $articleId, new DateTime("@{$date}", new DateTimeZone($timezone)));
2021-06-07 10:16:09 +02:00
}
}
}
// Sous-pages
2022-09-29 08:45:59 +02:00
foreach ($childrenPageIds as $childKey) {
if ($this->getData(['page', $childKey, 'group']) !== 0 || $this->getData(['page', $childKey, 'disable']) === true) {
2021-06-07 10:16:09 +02:00
continue;
}
2021-12-09 18:28:37 +01:00
// Cas de la page d'accueil ne pas dupliquer l'URL
$pageId = ($childKey !== $this->getData(['locale', 'homePageId'])) ? $childKey : '';
2022-09-29 08:45:59 +02:00
$sitemap->addUrl('/' . $childKey, $datetime);
2021-06-07 10:16:09 +02:00
// La sous-page est un blog
2022-09-29 08:45:59 +02:00
if (
$this->getData(['page', $childKey, 'moduleId']) === 'blog' &&
!empty($this->getData(['module', $childKey]))
) {
foreach ($this->getData(['module', $childKey, 'posts']) as $articleId => $article) {
if ($this->getData(['module', $childKey, 'posts', $articleId, 'state']) === true) {
$date = $this->getData(['module', $childKey, 'posts', $articleId, 'publishedOn']);
$sitemap->addUrl('/' . $childKey . '/' . $articleId, new DateTime("@{$date}", new DateTimeZone($timezone)));
2021-06-07 10:16:09 +02:00
}
}
}
}
}
// Flush all stored urls from memory to the disk and close all necessary tags.
$sitemap->flush();
// Move flushed files to their final location. Compress if the option is enabled.
$sitemap->finalize();
// Update robots.txt file in output directory
2021-08-10 22:59:29 +02:00
2022-09-29 08:45:59 +02:00
if ($this->getData(['config', 'seo', 'robots']) === true) {
2022-09-13 10:29:39 +02:00
if (file_exists('robots.txt')) {
unlink('robots.txt');
}
$sitemap->updateRobots();
2021-11-03 17:25:26 +01:00
} else {
2023-02-02 21:00:03 +01:00
file_put_contents('robots.txt', 'User-agent: *' . PHP_EOL . 'Disallow: /');
}
2021-11-18 11:34:19 +01:00
2021-06-07 10:16:09 +02:00
// Submit your sitemaps to Google, Yahoo, Bing and Ask.com
2022-09-29 08:45:59 +02:00
if (empty($this->getData(['config', 'proxyType']) . $this->getData(['config', 'proxyUrl']) . ':' . $this->getData(['config', 'proxyPort']))) {
2021-06-07 10:16:09 +02:00
$sitemap->submitSitemap();
}
2022-09-29 08:45:59 +02:00
return (file_exists('sitemap.xml') && file_exists('robots.txt'));
2021-06-07 10:16:09 +02:00
}
/*
2023-02-02 21:00:03 +01:00
* Création d'une miniature
* Fonction utilisée lors de la mise à jour d'une version 9 à une version 10
* @param string $src image source
* @param string $dets image destination
* @param integer $desired_width largeur demandée
*/
2022-09-29 08:45:59 +02:00
function makeThumb($src, $dest, $desired_width)
{
2021-06-07 10:16:09 +02:00
// Vérifier l'existence du dossier de destination.
$fileInfo = pathinfo($dest);
if (!is_dir($fileInfo['dirname'])) {
mkdir($fileInfo['dirname'], 0755, true);
2021-06-07 10:16:09 +02:00
}
2021-11-26 11:36:41 +01:00
$source_image = '';
2021-06-07 10:16:09 +02:00
// Type d'image
2022-09-29 08:45:59 +02:00
switch ($fileInfo['extension']) {
2021-06-07 10:16:09 +02:00
case 'jpeg':
case 'jpg':
$source_image = imagecreatefromjpeg($src);
break;
case 'png':
$source_image = imagecreatefrompng($src);
break;
case 'gif':
$source_image = imagecreatefromgif($src);
break;
case 'webp':
2022-10-03 18:17:02 +02:00
$source_image = imagecreatefromwebp($src);
break;
2021-06-07 10:16:09 +02:00
}
// Image valide
if ($source_image) {
$width = imagesx($source_image);
$height = imagesy($source_image);
/* find the "desired height" of this thumbnail, relative to the desired width */
$desired_height = floor($height * ($desired_width / $width));
/* create a new, "virtual" image */
$virtual_image = imagecreatetruecolor($desired_width, $desired_height);
/* copy source image at a resized size */
imagecopyresampled($virtual_image, $source_image, 0, 0, 0, 0, $desired_width, $desired_height, $width, $height);
2022-09-29 08:45:59 +02:00
switch (mime_content_type($src)) {
2021-06-07 10:16:09 +02:00
case 'image/jpeg':
case 'image/jpg':
return (imagejpeg($virtual_image, $dest));
break;
case 'image/png':
return (imagepng($virtual_image, $dest));
break;
case 'image/gif':
return (imagegif($virtual_image, $dest));
break;
case 'webp':
2022-10-03 18:17:02 +02:00
$source_image = imagecreatefromwebp($src);
break;
2021-06-07 10:16:09 +02:00
}
} else {
return (false);
}
}
/**
* Envoi un mail
* @param string|array $to Destinataire
* @param string $subject Sujet
* @param string $content Contenu
* @return bool
*/
2022-09-29 08:45:59 +02:00
public function sendMail($to, $subject, $content, $replyTo = null)
{
2021-06-07 10:16:09 +02:00
// Layout
ob_start();
include 'core/layout/mail.php';
$layout = ob_get_clean();
$mail = new PHPMailer\PHPMailer\PHPMailer;
$mail->CharSet = 'UTF-8';
// Mail
2022-09-29 08:45:59 +02:00
try {
2021-06-07 10:16:09 +02:00
// Paramètres SMTP
2022-09-29 08:45:59 +02:00
if ($this->getdata(['config', 'smtp', 'enable'])) {
2021-06-07 10:16:09 +02:00
//$mail->SMTPDebug = PHPMailer\PHPMailer\SMTP::DEBUG_SERVER;
$mail->isSMTP();
$mail->SMTPAutoTLS = false;
2022-09-29 08:45:59 +02:00
$mail->Host = $this->getdata(['config', 'smtp', 'host']);
$mail->Port = (int) $this->getdata(['config', 'smtp', 'port']);
if ($this->getData(['config', 'smtp', 'auth'])) {
$mail->Username = $this->getData(['config', 'smtp', 'username']);
$mail->Password = helper::decrypt($this->getData(['config', 'smtp', 'username']), $this->getData(['config', 'smtp', 'password']));
$mail->SMTPAuth = $this->getData(['config', 'smtp', 'auth']);
$mail->SMTPSecure = $this->getData(['config', 'smtp', 'secure']);
$mail->setFrom($this->getData(['config', 'smtp', 'username']));
2021-06-07 10:16:09 +02:00
if (is_null($replyTo)) {
2022-09-29 08:45:59 +02:00
$mail->addReplyTo($this->getData(['config', 'smtp', 'username']));
2021-06-07 10:16:09 +02:00
} else {
$mail->addReplyTo($replyTo);
}
}
2022-09-29 08:45:59 +02:00
// Fin SMTP
2021-06-07 10:16:09 +02:00
} else {
$host = str_replace('www.', '', $_SERVER['HTTP_HOST']);
$mail->setFrom('no-reply@' . $host, $this->getData(['locale', 'title']));
if (is_null($replyTo)) {
$mail->addReplyTo('no-reply@' . $host, $this->getData(['locale', 'title']));
} else {
$mail->addReplyTo($replyTo);
}
}
2022-09-29 08:45:59 +02:00
if (is_array($to)) {
foreach ($to as $userMail) {
$mail->addAddress($userMail);
}
} else {
$mail->addAddress($to);
2021-06-07 10:16:09 +02:00
}
$mail->isHTML(true);
$mail->Subject = $subject;
$mail->Body = $layout;
$mail->AltBody = strip_tags($content);
2022-09-29 08:45:59 +02:00
if ($mail->send()) {
return true;
} else {
return $mail->ErrorInfo;
2021-06-07 10:16:09 +02:00
}
} catch (Exception $e) {
2022-05-05 18:19:56 +02:00
return $e->getMessage();
2021-06-07 10:16:09 +02:00
}
}
/**
2022-09-29 08:45:59 +02:00
* Effacer un dossier non vide.
* @param string URL du dossier à supprimer
*/
public function removeDir($path)
{
foreach (new DirectoryIterator($path) as $item) {
2023-02-02 21:00:03 +01:00
if ($item->isFile())
@unlink($item->getRealPath());
if (!$item->isDot() && $item->isDir())
$this->removeDir($item->getRealPath());
2021-06-07 10:16:09 +02:00
}
2022-09-29 08:45:59 +02:00
return (rmdir($path));
2021-06-07 10:16:09 +02:00
}
/*
2023-02-02 21:00:03 +01:00
* Copie récursive de dossiers
* @param string $src dossier source
* @param string $dst dossier destination
* @return bool
*/
2022-09-29 08:45:59 +02:00
public function copyDir($src, $dst)
{
2021-06-07 10:16:09 +02:00
// Ouvrir le dossier source
$dir = opendir($src);
// Créer le dossier de destination
if (!is_dir($dst))
$success = mkdir($dst, 0755, true);
else
$success = true;
// Boucler dans le dossier source en l'absence d'échec de lecture écriture
2022-09-29 08:45:59 +02:00
while (
$success
and $file = readdir($dir)
) {
2022-05-26 19:57:57 +02:00
2022-09-29 08:45:59 +02:00
if (($file != '.') && ($file != '..')) {
if (is_dir($src . '/' . $file)) {
2021-06-07 10:16:09 +02:00
// Appel récursif des sous-dossiers
2023-02-02 21:00:03 +01:00
$s = $this->copyDir($src . '/' . $file, $dst . '/' . $file);
2022-05-26 19:57:57 +02:00
$success = $s || $success;
2022-09-29 08:45:59 +02:00
} else {
2022-05-26 19:57:57 +02:00
$s = copy($src . '/' . $file, $dst . '/' . $file);
$success = $s || $success;
2021-06-07 10:16:09 +02:00
}
}
2022-04-08 09:47:35 +02:00
}
2021-06-07 10:16:09 +02:00
return $success;
}
2022-02-18 12:43:48 +01:00
/**
* Fonction de parcours des données de module
* @param string $find donnée à rechercher
* @param string $replace donnée à remplacer
* @param array tableau à analyser
* @param int count nombres d'occurrences
* @return array avec les valeurs remplacées.
*/
2022-09-29 08:45:59 +02:00
public function recursive_array_replace($find, $replace, $array, &$count)
{
2022-02-18 12:43:48 +01:00
if (!is_array($array)) {
return str_replace($find, $replace, $array, $count);
}
$newArray = [];
foreach ($array as $key => $value) {
2022-09-29 08:45:59 +02:00
$newArray[$key] = $this->recursive_array_replace($find, $replace, $value, $c);
2022-02-18 12:43:48 +01:00
$count += $c;
}
return $newArray;
}
2021-06-07 10:16:09 +02:00
/**
* Génère une archive d'un dossier et des sous-dossiers
* @param string fileName path et nom de l'archive
* @param string folder path à zipper
* @param array filter dossiers à exclure
*/
2022-09-29 08:45:59 +02:00
public function makeZip($fileName, $folder, $filter = [])
{
2021-06-07 10:16:09 +02:00
$zip = new ZipArchive();
$zip->open($fileName, ZipArchive::CREATE | ZipArchive::OVERWRITE);
//$directory = 'site/';
2023-02-02 21:00:03 +01:00
$files = new RecursiveIteratorIterator(
2021-06-07 10:16:09 +02:00
new RecursiveCallbackFilterIterator(
2022-09-29 08:45:59 +02:00
new RecursiveDirectoryIterator(
$folder,
2023-02-02 21:00:03 +01:00
RecursiveDirectoryIterator::SKIP_DOTS
2022-09-29 08:45:59 +02:00
),
function ($fileInfo, $key, $iterator) use ($filter) {
return $fileInfo->isFile() || !in_array($fileInfo->getBaseName(), $filter);
}
2021-06-07 10:16:09 +02:00
)
);
2022-09-29 08:45:59 +02:00
foreach ($files as $name => $file) {
if (!$file->isDir()) {
2021-06-07 10:16:09 +02:00
$filePath = $file->getRealPath();
$relativePath = substr($filePath, strlen(realpath($folder)) + 1);
2023-01-31 22:52:07 +01:00
$zip->addFile($filePath, str_replace("\\", "/", $relativePath));
2021-06-07 10:16:09 +02:00
}
}
$zip->close();
}
/**
* Summary of dateUTF8
* @param mixed $format
* @param mixed $date time()
* @param mixed $scope UI ou Content
* @return string Date formatée
*/
public static function showDate($format, $date, $scope = "UI")
{
$d = new DateTime(time());
$d->format($format);
/*
$d = datefmt_create(
self::$i18nUI,
IntlDateFormatter::FULL,
IntlDateFormatter::FULL,
self::$timezone,
IntlDateFormatter::GREGORIAN,
$format
);
exit (datefmt_format($d, $date));
//return datefmt_format($d, $date);
*/
}
2021-06-14 18:37:45 +02:00
// Layout remplace la classe précédente
2021-06-07 10:16:09 +02:00
2021-11-18 11:34:19 +01:00
/**
* Affiche le consentement aux cookies
2021-11-18 11:34:19 +01:00
*/
2022-09-29 08:45:59 +02:00
public function showCookies()
{
2022-12-20 13:55:29 +01:00
// La gestion des cookies est externalisée
if ($this->getData(['config', 'cookieConsent']) === false) {
return;
}
// Le cookie est déjà validé
2023-02-02 21:00:03 +01:00
if ($this->getInput('ZWII_COOKIE_CONSENT') === 'true') {
2022-12-20 13:55:29 +01:00
return;
}
2023-02-02 21:00:03 +01:00
$item = '<div id="cookieConsent">';
2022-12-20 13:55:29 +01:00
// Bouton de fermeture
$item .= '<div class="cookieClose">';
$item .= template::ico('cancel');
$item .= '</div>';
// Texte de la popup
$item .= '<h3>' . $this->getData(['locale', 'cookies', 'titleLabel']) . '</h3>';
$item .= '<p>' . $this->getData(['locale', 'cookies', 'mainLabel']) . '</p>';
// Formulaire de réponse
if (
$this->getData(['locale', 'homePageId']) === $this->getUrl(0)
) {
$item .= '<form method="POST" action="' . helper::baseUrl(false) . '" id="cookieForm">';
} else {
$item .= '<form method="POST" action="' . helper::baseUrl(true) . $this->getUrl() . '" id="cookieForm">';
}
$item .= '<br><br>';
$item .= '<input type="submit" id="cookieConsentConfirm" value="' . $this->getData(['locale', 'cookies', 'buttonValidLabel']) . '">';
$item .= '</form>';
// mentions légales si la page est définie
$legalPage = $this->getData(['locale', 'legalPageId']);
if ($legalPage !== 'none') {
$item .= '<p><a href="' . helper::baseUrl() . $legalPage . '">' . $this->getData(['locale', 'cookies', 'linkLegalLabel']) . '</a></p>';
2021-11-25 13:40:14 +01:00
}
2022-12-20 13:55:29 +01:00
$item .= '</div>';
echo $item;
2021-11-25 13:40:14 +01:00
}
2021-11-18 11:34:19 +01:00
2021-10-25 17:51:30 +02:00
/**
* Formate le contenu de la page selon les gabarits
* @param Page par defaut
*/
2022-09-29 08:45:59 +02:00
public function showSection()
{
2021-10-25 17:51:30 +02:00
echo '<section>';
// Récupérer la config de la page courante
$blocks = is_null($this->getData(['page', $this->getUrl(0), 'block'])) ? '12' : $this->getData(['page', $this->getUrl(0), 'block']);
2022-10-04 10:22:33 +02:00
$blocks = explode('-', $blocks);
2021-10-25 17:51:30 +02:00
// Initialiser
2022-09-29 19:08:32 +02:00
$blockleft = '';
$blockright = '';
2021-10-25 17:51:30 +02:00
switch (sizeof($blocks)) {
2023-02-02 21:00:03 +01:00
case 1: // une colonne
$content = 'col' . $blocks[0];
2021-10-25 17:51:30 +02:00
break;
2023-02-02 21:00:03 +01:00
case 2: // 2 blocs
2021-10-25 17:51:30 +02:00
if ($blocks[0] < $blocks[1]) { // détermine la position de la colonne
2022-09-29 08:45:59 +02:00
$blockleft = 'col' . $blocks[0];
2023-02-02 21:00:03 +01:00
$content = 'col' . $blocks[1];
2021-10-25 17:51:30 +02:00
} else {
2023-02-02 21:00:03 +01:00
$content = 'col' . $blocks[0];
$blockright = 'col' . $blocks[1];
2021-10-25 17:51:30 +02:00
}
2022-09-29 08:45:59 +02:00
break;
2023-02-02 21:00:03 +01:00
case 3: // 3 blocs
$blockleft = 'col' . $blocks[0];
$content = 'col' . $blocks[1];
2022-09-29 08:45:59 +02:00
$blockright = 'col' . $blocks[2];
2021-10-25 17:51:30 +02:00
}
// Page pleine pour la configuration des modules et l'édition des pages sauf l'affichage d'un article de blog
2022-09-29 08:45:59 +02:00
$pattern = ['config', 'edit', 'add', 'comment', 'data'];
2023-02-02 21:00:03 +01:00
if (
(sizeof($blocks) === 1 ||
in_array($this->getUrl(1), $pattern))
) { // Pleine page en mode configuration
2022-09-29 08:45:59 +02:00
$this->showContent();
2021-10-25 17:51:30 +02:00
} else {
echo '<div class="row siteContainer">';
2022-09-29 08:45:59 +02:00
/**
* Barre gauche
*/
if ($blockleft !== "") {
echo '<div class="' . $blockleft . '" id="contentLeft"><aside>';
// Détermine si le menu est présent
if ($this->getData(['page', $this->getData(['page', $this->getUrl(0), 'barLeft']), 'displayMenu']) === 'none') {
// Pas de menu
echo $this->output['contentLeft'];
} else {
// $mark contient 0 le menu est positionné à la fin du contenu
$contentLeft = str_replace('[]', '[MENU]', $this->output['contentLeft']);
$contentLeft = str_replace('[menu]', '[MENU]', $contentLeft);
2023-02-02 21:00:03 +01:00
$mark = strrpos($contentLeft, '[MENU]') !== false ? strrpos($contentLeft, '[MENU]') : strlen($contentLeft);
2022-09-29 08:45:59 +02:00
echo substr($contentLeft, 0, $mark);
echo '<div id="menuSideLeft">';
echo $this->showMenuSide($this->getData(['page', $this->getData(['page', $this->getUrl(0), 'barLeft']), 'displayMenu']) === 'parents' ? false : true);
echo '</div>';
echo substr($contentLeft, $mark + 6, strlen($contentLeft));
2022-05-05 18:19:56 +02:00
}
2023-02-02 21:00:03 +01:00
echo "</aside></div>";
2022-09-29 08:45:59 +02:00
}
/**
* Contenu de page
*/
echo '<div class="' . $content . '" id="contentSite">';
$this->showContent();
echo '</div>';
/**
* Barre droite
*/
if ($blockright !== "") {
echo '<div class="' . $blockright . '" id="contentRight"><aside>';
// Détermine si le menu est présent
if ($this->getData(['page', $this->getData(['page', $this->getUrl(0), 'barRight']), 'displayMenu']) === 'none') {
// Pas de menu
echo $this->output['contentRight'];
} else {
// $mark contient 0 le menu est positionné à la fin du contenu
$contentRight = str_replace('[]', '[MENU]', $this->output['contentRight']);
$contentRight = str_replace('[menu]', '[MENU]', $contentRight);
2023-02-02 21:00:03 +01:00
$mark = strrpos($contentRight, '[MENU]') !== false ? strrpos($contentRight, '[MENU]') : strlen($contentRight);
2022-09-29 08:45:59 +02:00
echo substr($contentRight, 0, $mark);
echo '<div id="menuSideRight">';
echo $this->showMenuSide($this->getData(['page', $this->getData(['page', $this->getUrl(0), 'barRight']), 'displayMenu']) === 'parents' ? false : true);
echo '</div>';
echo substr($contentRight, $mark + 6, strlen($contentRight));
2021-10-25 17:51:30 +02:00
}
2022-09-29 08:45:59 +02:00
echo '</aside></div>';
}
2021-10-25 17:51:30 +02:00
echo '</div>';
}
echo '</section>';
}
2021-06-14 18:37:45 +02:00
/**
* Affiche le contenu
* @param Page par défaut
*/
2022-09-29 08:45:59 +02:00
public function showContent()
{
if (
2021-06-14 18:37:45 +02:00
$this->output['title']
2022-09-29 08:45:59 +02:00
and ($this->getData(['page', $this->getUrl(0)]) === null
or $this->getData(['page', $this->getUrl(0), 'hideTitle']) === false
or $this->getUrl(1) === 'config'
2021-06-14 18:37:45 +02:00
)
2021-06-07 10:16:09 +02:00
) {
2021-06-14 18:37:45 +02:00
echo '<h1 id="sectionTitle">' . $this->output['title'] . '</h1>';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
echo $this->output['content'];
}
2021-06-07 10:16:09 +02:00
2021-06-14 18:37:45 +02:00
/**
2021-10-25 17:51:30 +02:00
* Affiche le pied de page
2021-06-14 18:37:45 +02:00
*/
2022-09-29 08:45:59 +02:00
public function showFooter()
{
2021-10-25 17:51:30 +02:00
// Déterminer la position
$positionFixed = '';
if (
$this->getData(['theme', 'footer', 'position']) === 'site'
// Affiche toujours le pied de page pour l'édition du thème
2022-09-29 08:45:59 +02:00
or ($this->getData(['theme', 'footer', 'position']) === 'hide'
and $this->getUrl(0) === 'theme'
2021-10-25 17:51:30 +02:00
)
2022-09-29 08:45:59 +02:00
) {
$position = 'site';
} else {
$position = 'body';
if ($this->getData(['theme', 'footer', 'fixed']) === true) {
$positionFixed = ' footerbodyFixed';
}
// Sortir de la division précédente
echo '</div>';
2021-06-07 10:16:09 +02:00
}
2021-11-18 11:34:19 +01:00
2021-10-25 17:51:30 +02:00
echo $this->getData(['theme', 'footer', 'position']) === 'hide' ? '<footer class="displayNone">' : '<footer>';
2023-02-02 21:00:03 +01:00
echo ($position === 'site') ? '<div class="container"><div class="row" id="footersite">' : '<div class="container-large' . $positionFixed . '"><div class="row" id="footerbody">';
2021-10-25 17:51:30 +02:00
/**
* Calcule la dimension des blocs selon la configuration
*/
2022-09-29 08:45:59 +02:00
switch ($this->getData(['theme', 'footer', 'template'])) {
case '1':
2023-02-02 21:00:03 +01:00
$class['left'] = "displayNone";
2021-10-25 17:51:30 +02:00
$class['center'] = "col12";
2023-02-02 21:00:03 +01:00
$class['right'] = "displayNone";
2021-10-25 17:51:30 +02:00
break;
2022-09-29 08:45:59 +02:00
case '2':
2023-02-02 21:00:03 +01:00
$class['left'] = "col6";
2021-10-25 17:51:30 +02:00
$class['center'] = "displayNone";
2023-02-02 21:00:03 +01:00
$class['right'] = "col6";
2021-10-25 17:51:30 +02:00
break;
2022-09-29 08:45:59 +02:00
case '3':
2023-02-02 21:00:03 +01:00
$class['left'] = "col4";
2021-10-25 17:51:30 +02:00
$class['center'] = "col4";
2023-02-02 21:00:03 +01:00
$class['right'] = "col4";
2021-10-25 17:51:30 +02:00
break;
2022-09-29 08:45:59 +02:00
case '4':
2023-02-02 21:00:03 +01:00
$class['left'] = "col12";
2021-10-25 17:51:30 +02:00
$class['center'] = "col12";
2023-02-02 21:00:03 +01:00
$class['right'] = "col12";
2021-10-25 17:51:30 +02:00
break;
2021-06-07 10:16:09 +02:00
}
2021-10-25 17:51:30 +02:00
/**
* Affiche les blocs
*/
2023-02-02 21:00:03 +01:00
echo '<div class="' . $class['left'] . '" id="footer' . $position . 'Left">';
2022-09-29 08:45:59 +02:00
if ($this->getData(['theme', 'footer', 'textPosition']) === 'left') {
$this->showFooterText();
}
if ($this->getData(['theme', 'footer', 'socialsPosition']) === 'left') {
$this->showSocials();
}
if ($this->getData(['theme', 'footer', 'copyrightPosition']) === 'left') {
$this->showCopyright();
}
2021-10-25 17:51:30 +02:00
echo '</div>';
2022-09-29 08:45:59 +02:00
echo '<div class="' . $class['center'] . '" id="footer' . $position . 'Center">';
if ($this->getData(['theme', 'footer', 'textPosition']) === 'center') {
$this->showFooterText();
}
if ($this->getData(['theme', 'footer', 'socialsPosition']) === 'center') {
$this->showSocials();
}
if ($this->getData(['theme', 'footer', 'copyrightPosition']) === 'center') {
$this->showCopyright();
}
2021-10-25 17:51:30 +02:00
echo '</div>';
2022-09-29 08:45:59 +02:00
echo '<div class="' . $class['right'] . '" id="footer' . $position . 'Right">';
if ($this->getData(['theme', 'footer', 'textPosition']) === 'right') {
$this->showFooterText();
}
if ($this->getData(['theme', 'footer', 'socialsPosition']) === 'right') {
$this->showSocials();
}
if ($this->getData(['theme', 'footer', 'copyrightPosition']) === 'right') {
$this->showCopyright();
}
2021-10-25 17:51:30 +02:00
echo '</div>';
// Fermeture du conteneur
2021-10-25 17:51:30 +02:00
echo '</div></div>';
echo '</footer>';
2021-06-07 10:16:09 +02:00
}
/**
2021-06-14 18:37:45 +02:00
* Affiche le texte du footer
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
private function showFooterText()
{
if ($footerText = $this->getData(['theme', 'footer', 'text']) or $this->getUrl(0) === 'theme') {
2021-06-14 18:37:45 +02:00
echo '<div id="footerText">' . $footerText . '</div>';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
}
2022-09-29 08:45:59 +02:00
/**
* Affiche le copyright
*/
private function showCopyright()
{
2021-06-14 18:37:45 +02:00
// Ouverture Bloc copyright
$items = '<div id="footerCopyright">';
$items .= '<span id="footerFontCopyright">';
// Affichage de motorisé par
$items .= '<span id="footerDisplayCopyright" ';
2022-09-29 08:45:59 +02:00
$items .= $this->getData(['theme', 'footer', 'displayCopyright']) === false ? 'class="displayNone"' : '';
2021-06-14 18:37:45 +02:00
$items .= '>Motorisé&nbsp;par&nbsp;</span>';
// Toujours afficher le nom du CMS
$items .= '<span id="footerZwiiCMS">';
$items .= '<a href="https://zwiicms.fr/" onclick="window.open(this.href);return false" >ZwiiCMS</a>';
2021-06-14 18:37:45 +02:00
$items .= '</span>';
// Affichage du numéro de version
$items .= '<span id="footerDisplayVersion"';
2022-09-29 08:45:59 +02:00
$items .= $this->getData(['theme', 'footer', 'displayVersion']) === false ? ' class="displayNone"' : '';
$items .= '><wbr>&nbsp;' . common::ZWII_VERSION;
2021-06-14 18:37:45 +02:00
$items .= '</span>';
// Affichage du sitemap
$items .= '<span id="footerDisplaySiteMap"';
2023-02-02 21:00:03 +01:00
$items .= $this->getData(['theme', 'footer', 'displaySiteMap']) === false ? ' class="displayNone"' : '';
2022-09-29 08:45:59 +02:00
$label = empty($this->getData(['locale', 'sitemapPageLabel'])) ? 'Plan du site' : $this->getData(['locale', 'sitemapPageLabel']);
2023-02-02 21:00:03 +01:00
$items .= '><wbr>&nbsp;|&nbsp;<a href="' . helper::baseUrl() . 'sitemap" >' . $label . '</a>';
2021-06-14 18:37:45 +02:00
$items .= '</span>';
2022-09-29 08:45:59 +02:00
// Affichage du module de recherche
$items .= '<span id="footerDisplaySearch"';
2023-02-02 21:00:03 +01:00
$items .= $this->getData(['theme', 'footer', 'displaySearch']) === false ? ' class="displayNone" >' : '>';
2022-09-29 08:45:59 +02:00
$label = empty($this->getData(['locale', 'searchPageLabel'])) ? 'Rechercher' : $this->getData(['locale', 'searchPageLabel']);
if ($this->getData(['locale', 'searchPageId']) !== 'none') {
2023-02-02 21:00:03 +01:00
$items .= '<wbr>&nbsp;|&nbsp;<a href="' . helper::baseUrl() . $this->getData(['locale', 'searchPageId']) . '" >' . $label . '</a>';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
$items .= '</span>';
// Affichage des mentions légales
$items .= '<span id="footerDisplayLegal"';
2023-02-02 21:00:03 +01:00
$items .= $this->getData(['theme', 'footer', 'displayLegal']) === false ? ' class="displayNone" >' : '>';
2022-09-29 08:45:59 +02:00
$label = empty($this->getData(['locale', 'legalPageLabel'])) ? 'Mentions Légales' : $this->getData(['locale', 'legalPageLabel']);
if ($this->getData(['locale', 'legalPageId']) !== 'none') {
2023-02-02 21:00:03 +01:00
$items .= '<wbr>&nbsp;|&nbsp;<a href="' . helper::baseUrl() . $this->getData(['locale', 'legalPageId']) . '" >' . $label . '</a>';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
$items .= '</span>';
// Affichage de la gestion des cookies
2021-11-28 14:29:22 +01:00
$items .= '<span id="footerDisplayCookie"';
$items .= ($this->getData(['config', 'cookieConsent']) === true && $this->getData(['theme', 'footer', 'displayCookie']) === true) ? '>' : ' class="displayNone" >';
2023-02-02 21:00:03 +01:00
$label = empty($this->getData(['locale', 'cookies', 'cookiesFooterText'])) ? 'Cookies' : $this->getData(['locale', 'cookies', 'cookiesFooterText']);
2022-09-29 08:45:59 +02:00
$items .= '<wbr>&nbsp;|&nbsp;<a href="javascript:void(0)" class="skiptranslate" id="footerLinkCookie">' . $label . '</a>';
2021-11-28 14:29:22 +01:00
$items .= '</span>';
2021-06-14 18:37:45 +02:00
// Affichage du lien de connexion
2022-09-29 08:45:59 +02:00
if (
($this->getData(['theme', 'footer', 'loginLink'])
and $this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
)
or $this->getUrl(0) === 'theme'
) {
2023-02-02 21:00:03 +01:00
$items .= '<span id="footerLoginLink" ' .
($this->getUrl(0) === 'theme' ? 'class="displayNone">' : '>') .
2022-09-29 08:45:59 +02:00
'<wbr>&nbsp;|&nbsp;<wbr>' .
template::ico('login', [
'href' => helper::baseUrl() . 'user/login/' . strip_tags(str_replace('/', '_', $this->getUrl())),
'attr' => 'rel="nofollow"',
2022-10-14 15:17:41 +02:00
'help' => 'Connexion'
2022-09-29 08:45:59 +02:00
]) . '</span>';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Affichage de la barre de membre simple
2022-09-29 08:45:59 +02:00
if (
$this->getUser('group') === self::GROUP_MEMBER
&& $this->getData(['theme', 'footer', 'memberBar']) === true
) {
$items .= '<span id="footerDisplayMemberAccount"';
2023-02-02 21:00:03 +01:00
$items .= $this->getData(['theme', 'footer', 'displaymemberAccount']) === false ? ' class="displayNone">' : '>';
2022-09-29 08:45:59 +02:00
$items .= '<wbr>&nbsp;|&nbsp;' .
template::ico('user', [
'margin' => 'all',
'help' => 'Mon compte',
'href' => helper::baseUrl() . 'user/edit/' . $this->getUser('id') . '/' . $_SESSION['csrf']
]);
if (
$this->getData(['user', $this->getUser('id'), 'files']) === true
2021-06-07 10:16:09 +02:00
) {
2023-02-02 21:00:03 +01:00
$items .= '<wbr>' . template::ico('folder', [
'href' => helper::baseUrl(false) . 'core/vendor/filemanager/dialog.php?type=0&akey=' . md5_file(self::DATA_DIR . 'core.json') . '&lang=' . $this->getData(['user', $this->getUser('id'), 'language']),
'margin' => 'all',
2022-09-29 08:45:59 +02:00
'attr' => 'data-lity',
'help' => 'Fichiers du site'
]);
2022-09-29 08:45:59 +02:00
}
2023-02-02 21:00:03 +01:00
$items .= '<wbr>' . template::ico('logout', [
2022-09-29 08:45:59 +02:00
'margin' => 'all',
'help' => 'Déconnecter',
'href' => helper::baseUrl() . 'user/logout'
]);
$items .= '</span>';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Fermeture du bloc copyright
2022-09-29 08:45:59 +02:00
$items .= '</span></div>';
echo $items;
2021-06-14 18:37:45 +02:00
}
2021-06-07 10:16:09 +02:00
2021-06-14 18:37:45 +02:00
/**
* Affiche les réseaux sociaux
*/
2022-09-29 08:45:59 +02:00
private function showSocials()
{
2021-06-14 18:37:45 +02:00
$socials = '';
2022-09-29 08:45:59 +02:00
foreach ($this->getData(['config', 'social']) as $socialName => $socialId) {
switch ($socialName) {
2021-06-14 18:37:45 +02:00
case 'facebookId':
$socialUrl = 'https://www.facebook.com/';
$title = 'Facebook';
break;
case 'linkedinId':
$socialUrl = 'https://fr.linkedin.com/in/';
$title = 'Linkedin';
break;
case 'instagramId':
$socialUrl = 'https://www.instagram.com/';
$title = 'Instagram';
break;
case 'pinterestId':
$socialUrl = 'https://pinterest.com/';
$title = 'Pinterest';
break;
case 'twitterId':
$socialUrl = 'https://twitter.com/';
$title = 'Twitter';
break;
case 'youtubeId':
$socialUrl = 'https://www.youtube.com/channel/';
$title = 'Chaîne YouTube';
break;
case 'youtubeUserId':
$socialUrl = 'https://www.youtube.com/user/';
$title = 'YouTube';
break;
case 'githubId':
$socialUrl = 'https://www.github.com/';
$title = 'Github';
break;
default:
$socialUrl = '';
}
2022-09-29 08:45:59 +02:00
if ($socialId !== '') {
$socials .= '<a href="' . $socialUrl . $socialId . '" onclick="window.open(this.href);return false" data-tippy-content="' . $title . '">' . template::ico(substr(str_replace('User', '', $socialName), 0, -2)) . '</a>';
2021-06-07 10:16:09 +02:00
}
}
2022-09-29 08:45:59 +02:00
if ($socials !== '') {
2021-06-14 18:37:45 +02:00
echo '<div id="footerSocials">' . $socials . '</div>';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
}
/**
* Affiche le favicon
*/
2022-09-29 08:45:59 +02:00
public function showFavicon()
{
2021-06-14 18:37:45 +02:00
// Light scheme
$favicon = $this->getData(['config', 'favicon']);
2022-09-29 08:45:59 +02:00
if (
$favicon &&
file_exists(self::FILE_DIR . 'source/' . $favicon)
) {
echo '<link rel="shortcut icon" media="(prefers-color-scheme:light)" href="' . helper::baseUrl(false) . self::FILE_DIR . 'source/' . $favicon . '">';
2021-06-14 18:37:45 +02:00
} else {
echo '<link rel="shortcut icon" media="(prefers-color-scheme:light)" href="' . helper::baseUrl(false) . 'core/vendor/zwiico/ico/favicon.ico">';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Dark scheme
$faviconDark = $this->getData(['config', 'faviconDark']);
2022-09-29 08:45:59 +02:00
if (
!empty($faviconDark) &&
file_exists(self::FILE_DIR . 'source/' . $faviconDark)
2021-06-07 10:16:09 +02:00
) {
2022-09-29 08:45:59 +02:00
echo '<link rel="shortcut icon" media="(prefers-color-scheme:dark)" href="' . helper::baseUrl(false) . self::FILE_DIR . 'source/' . $faviconDark . '">';
2022-04-01 09:32:04 +02:00
echo '<script src="' . helper::baseUrl(false) . 'core/vendor/favicon-switcher/favicon-switcher.js" crossorigin="anonymous"></script>';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
}
2021-06-07 10:16:09 +02:00
2021-06-14 18:37:45 +02:00
/**
* Affiche le menu
*/
2022-09-29 08:45:59 +02:00
public function showMenu()
{
2021-06-14 18:37:45 +02:00
// Met en forme les items du menu
2022-02-18 17:58:25 +01:00
$itemsLeft = $this->formatMenu(false);
// Menu extra
$itemsRight = $this->formatMenu(true);
// Lien de connexion
2022-09-29 08:45:59 +02:00
if (
($this->getData(['theme', 'menu', 'loginLink'])
and $this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
2022-02-18 17:58:25 +01:00
)
2022-09-29 08:45:59 +02:00
or $this->getUrl(0) === 'theme'
2022-02-18 17:58:25 +01:00
) {
2023-02-02 21:00:03 +01:00
$itemsRight .= '<li id="menuLoginLink" ' . ($this->getUrl(0) === 'theme' ? 'class="displayNone"' : '') . '>' .
2022-09-29 08:45:59 +02:00
template::ico('login', [
'href' => helper::baseUrl() . 'user/login/' . strip_tags(str_replace('/', '_', $this->getUrl())),
'help' => "Connexion"
]) .
'</li>';
2022-02-18 17:58:25 +01:00
}
// Commandes pour les membres simples
2022-09-29 08:45:59 +02:00
if (
$this->getUser('group') == self::GROUP_MEMBER
2023-02-02 21:00:03 +01:00
&& $this->getData(['theme', 'menu', 'memberBar']) === true
2022-02-18 17:58:25 +01:00
) {
if (
2022-09-29 08:45:59 +02:00
$this->getData(['user', $this->getUser('id'), 'files']) === true
2022-09-02 18:45:55 +02:00
) {
2023-02-02 21:00:03 +01:00
$itemsRight .= '<li>' . template::ico('folder', [
'href' => helper::baseUrl(false) . 'core/vendor/filemanager/dialog.php?type=0&akey=' . md5_file(self::DATA_DIR . 'core.json') . '&lang=' . $this->getData(['user', $this->getUser('id'), 'language']),
'attr' => 'data-lity',
'help' => 'Fichiers du site'
2022-09-29 08:45:59 +02:00
]) . '</li>';
}
$itemsRight .= '<li>' . template::ico('user', [
2022-09-29 08:45:59 +02:00
'help' => 'Mon compte',
'margin' => 'right',
'href' => helper::baseUrl() . 'user/edit/' . $this->getUser('id') . '/' . $_SESSION['csrf']
]) . '</li>';
$itemsRight .= '<li>' .
2022-09-29 08:45:59 +02:00
template::ico('logout', [
'help' => 'Déconnecter',
'href' => helper::baseUrl() . 'user/logout',
'id' => 'barLogout'
]) . '</li>';
2022-02-18 17:58:25 +01:00
}
// Retourne les items du menu
echo '<ul class="navMain" id="menuLeft">' . $itemsLeft . '</ul><ul class="navMain" id="menuRight">' . $itemsRight;
// Drapeau les langues des langues selon l'existance des dossiers
foreach (self::$languages as $key => $value) {
2022-11-07 17:44:38 +01:00
if (is_dir(self::DATA_DIR . $key)) {
2023-02-02 21:00:03 +01:00
$t[] = $this->showi18n($key);
}
}
// Pas de drapeau si la langue est unique
2022-11-07 17:44:38 +01:00
if (count($t) > 1) {
foreach ($t as $key) {
echo $key;
}
}
2022-02-18 17:58:25 +01:00
echo '</ul>';
}
/**
* Cette fonction est appelée par showMenu
* Elle permet de générer le menu selon qu'il s'agisse du menu principal ou du petit menu
* @param $menu bool false pour le menu principal, true pour le petit menu
*/
2022-09-29 08:45:59 +02:00
private function formatMenu($extra = false)
{
2022-02-18 17:58:25 +01:00
$items = '';
2021-06-14 18:37:45 +02:00
$currentPageId = $this->getData(['page', $this->getUrl(0)]) ? $this->getUrl(0) : $this->getUrl(2);
2022-09-29 08:45:59 +02:00
foreach ($this->getHierarchy() as $parentPageId => $childrenPageIds) {
2022-02-18 13:25:30 +01:00
// Menu extra ou standard
2022-02-18 17:58:25 +01:00
2022-02-18 13:25:30 +01:00
if (
2023-02-02 21:00:03 +01:00
// Absence de la position extra, la page est toujours affichée à gauche.
2022-09-29 08:45:59 +02:00
($this->getData(['page', $parentPageId, 'extraPosition']) !== NULL || $extra === true)
2022-02-18 13:25:30 +01:00
&&
2022-09-29 08:45:59 +02:00
$this->getData(['page', $parentPageId, 'extraPosition']) !== $extra
) {
2022-02-18 13:25:30 +01:00
continue;
}
2021-06-14 18:37:45 +02:00
// Propriétés de l'item
2022-09-29 08:45:59 +02:00
$active = ($parentPageId === $currentPageId or in_array($currentPageId, $childrenPageIds)) ? 'active ' : '';
2021-06-14 18:37:45 +02:00
$targetBlank = $this->getData(['page', $parentPageId, 'targetBlank']) ? ' target="_blank"' : '';
// Mise en page de l'item
2023-02-02 21:00:03 +01:00
$items .= '<li id="' . $parentPageId . '">';
2022-09-29 08:45:59 +02:00
2023-02-02 21:00:03 +01:00
if (
($this->getData(['page', $parentPageId, 'disable']) === true
2022-09-29 08:45:59 +02:00
and $this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
) or ($this->getData(['page', $parentPageId, 'disable']) === true
and $this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
and $this->getUser('group') < self::GROUP_MODERATOR
)
) {
2023-02-02 21:00:03 +01:00
$pageUrl = ($this->getData(['locale', 'homePageId']) === $this->getUrl(0)) ? helper::baseUrl(false) : helper::baseUrl() . $this->getUrl(0);
2022-03-01 18:46:05 +01:00
$items .= '<a href="' . $pageUrl . '">';
2021-06-14 18:37:45 +02:00
} else {
2023-02-02 21:00:03 +01:00
$pageUrl = ($this->getData(['locale', 'homePageId']) === $parentPageId) ? helper::baseUrl(false) : helper::baseUrl() . $parentPageId;
2022-03-01 18:46:05 +01:00
$items .= '<a class="' . $active . '" href="' . $pageUrl . '"' . $targetBlank . '>';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
switch ($this->getData(['page', $parentPageId, 'typeMenu'])) {
2022-09-29 08:45:59 +02:00
case '':
$items .= $this->getData(['page', $parentPageId, 'shortTitle']);
break;
case 'text':
$items .= $this->getData(['page', $parentPageId, 'shortTitle']);
break;
case 'icon':
if ($this->getData(['page', $parentPageId, 'iconUrl']) != "") {
$items .= '<img alt="' . $this->getData(['page', $parentPageId, 'shortTitle']) . '" src="' . helper::baseUrl(false) . self::FILE_DIR . 'source/' . $this->getData(['page', $parentPageId, 'iconUrl']) . '" />';
} else {
$items .= $this->getData(['page', $parentPageId, 'shortTitle']);
}
break;
case 'icontitle':
if ($this->getData(['page', $parentPageId, 'iconUrl']) != "") {
$items .= '<img alt="' . $this->getData(['page', $parentPageId, 'titlshortTitlee']) . '" src="' . helper::baseUrl(false) . self::FILE_DIR . 'source/' . $this->getData(['page', $parentPageId, 'iconUrl']) . '" data-tippy-content="';
$items .= $this->getData(['page', $parentPageId, 'shortTitle']) . '"/>';
} else {
$items .= $this->getData(['page', $parentPageId, 'shortTitle']);
}
2021-06-14 18:37:45 +02:00
break;
2022-09-29 08:45:59 +02:00
}
2021-06-14 18:37:45 +02:00
// Cas où les pages enfants enfant sont toutes masquées dans le menu
// ne pas afficher de symbole lorsqu'il n'y a rien à afficher
$totalChild = 0;
$disableChild = 0;
2022-09-29 08:45:59 +02:00
foreach ($childrenPageIds as $childKey) {
2021-06-14 18:37:45 +02:00
$totalChild += 1;
}
2022-09-29 08:45:59 +02:00
if (
2023-02-02 21:00:03 +01:00
$childrenPageIds && $disableChild !== $totalChild &&
2022-09-29 08:45:59 +02:00
$this->getdata(['page', $parentPageId, 'hideMenuChildren']) === false
) {
2022-08-27 10:17:43 +02:00
$items .= template::ico('down', ['margin' => 'left']);
2021-06-14 18:37:45 +02:00
}
// ------------------------------------------------
2022-02-18 17:58:25 +01:00
$items .= '</a>';
2022-09-29 08:45:59 +02:00
if (
$this->getdata(['page', $parentPageId, 'hideMenuChildren']) === true ||
empty($childrenPageIds)
) {
2021-06-14 18:37:45 +02:00
continue;
}
2022-02-18 17:58:25 +01:00
$items .= '<ul class="navSub">';
2022-09-29 08:45:59 +02:00
foreach ($childrenPageIds as $childKey) {
2021-06-14 18:37:45 +02:00
// Propriétés de l'item
$active = ($childKey === $currentPageId) ? 'active ' : '';
$targetBlank = $this->getData(['page', $childKey, 'targetBlank']) ? ' target="_blank"' : '';
// Mise en page du sous-item
2022-09-29 08:45:59 +02:00
$items .= '<li id=' . $childKey . '>';
2023-02-02 21:00:03 +01:00
if (
($this->getData(['page', $childKey, 'disable']) === true
2022-09-29 08:45:59 +02:00
and $this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
) or ($this->getData(['page', $childKey, 'disable']) === true
and $this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
and $this->getUser('group') < self::GROUP_MODERATOR
)
) {
2023-02-02 21:00:03 +01:00
$pageUrl = ($this->getData(['locale', 'homePageId']) === $this->getUrl(0)) ? helper::baseUrl(false) : helper::baseUrl() . $this->getUrl(0);
2022-09-29 08:45:59 +02:00
$items .= '<a href="' . $pageUrl . '">';
2021-06-14 18:37:45 +02:00
} else {
2023-02-02 21:00:03 +01:00
$pageUrl = ($this->getData(['locale', 'homePageId']) === $childKey) ? helper::baseUrl(false) : helper::baseUrl() . $childKey;
$items .= '<a class="' . $active . ' ' . $parentPageId . '" href="' . $pageUrl . '"' . $targetBlank . '>';
2021-06-14 18:37:45 +02:00
}
2021-06-07 10:16:09 +02:00
2021-06-14 18:37:45 +02:00
switch ($this->getData(['page', $childKey, 'typeMenu'])) {
2022-09-29 08:45:59 +02:00
case '':
2022-02-18 17:58:25 +01:00
$items .= $this->getData(['page', $childKey, 'shortTitle']);
2021-06-14 18:37:45 +02:00
break;
2022-09-29 08:45:59 +02:00
case 'text':
2022-02-18 17:58:25 +01:00
$items .= $this->getData(['page', $childKey, 'shortTitle']);
2021-06-14 18:37:45 +02:00
break;
2022-09-29 08:45:59 +02:00
case 'icon':
2021-06-14 18:37:45 +02:00
if ($this->getData(['page', $childKey, 'iconUrl']) != "") {
2022-09-29 08:45:59 +02:00
$items .= '<img alt="' . $this->getData(['page', $parentPageId, 'shortTitle']) . '" src="' . helper::baseUrl(false) . self::FILE_DIR . 'source/' . $this->getData(['page', $childKey, 'iconUrl']) . '" />';
2021-06-14 18:37:45 +02:00
} else {
2022-09-29 08:45:59 +02:00
$items .= $this->getData(['page', $parentPageId, 'shortTitle']);
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
break;
2022-09-29 08:45:59 +02:00
case 'icontitle':
2021-06-14 18:37:45 +02:00
if ($this->getData(['page', $childKey, 'iconUrl']) != "") {
2022-09-29 08:45:59 +02:00
$items .= '<img alt="' . $this->getData(['page', $parentPageId, 'shortTitle']) . '" src="' . helper::baseUrl(false) . self::FILE_DIR . 'source/' . $this->getData(['page', $childKey, 'iconUrl']) . '" data-tippy-content="';
$items .= $this->getData(['page', $childKey, 'shortTitle']) . '"/>';
2021-06-14 18:37:45 +02:00
} else {
2022-09-29 08:45:59 +02:00
$items .= $this->getData(['page', $childKey, 'shortTitle']);
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
break;
2022-09-29 08:45:59 +02:00
case 'icontext':
2021-06-14 18:37:45 +02:00
if ($this->getData(['page', $childKey, 'iconUrl']) != "") {
2022-09-29 08:45:59 +02:00
$items .= '<img alt="' . $this->getData(['page', $parentPageId, 'shortTitle']) . '" src="' . helper::baseUrl(false) . self::FILE_DIR . 'source/' . $this->getData(['page', $childKey, 'iconUrl']) . '" />';
$items .= $this->getData(['page', $childKey, 'shortTitle']);
2021-06-14 18:37:45 +02:00
} else {
2022-09-29 08:45:59 +02:00
$items .= $this->getData(['page', $childKey, 'shortTitle']);
2021-06-14 18:37:45 +02:00
}
break;
2021-06-07 10:16:09 +02:00
}
2022-02-18 17:58:25 +01:00
$items .= '</a></li>';
2021-06-07 10:16:09 +02:00
}
2022-02-18 17:58:25 +01:00
$items .= '</ul>';
2022-02-18 12:43:48 +01:00
}
2022-09-29 08:45:59 +02:00
return ($items);
2021-06-14 18:37:45 +02:00
}
2021-06-07 10:16:09 +02:00
2022-02-18 17:58:25 +01:00
2021-06-14 18:37:45 +02:00
/**
* Générer un menu pour la barre latérale
* Uniquement texte
* @param $onlyChildren n'affiche les sous-pages de la page actuelle
2021-06-14 18:37:45 +02:00
*/
2022-09-29 08:45:59 +02:00
private function showMenuSide($onlyChildren = null)
{
2021-06-14 18:37:45 +02:00
// Met en forme les items du menu
$items = '';
// Nom de la page courante
$currentPageId = $this->getData(['page', $this->getUrl(0)]) ? $this->getUrl(0) : $this->getUrl(2);
// Nom de la page parente
2022-09-29 08:45:59 +02:00
$currentParentPageId = $this->getData(['page', $currentPageId, 'parentPageId']);
2021-06-14 18:37:45 +02:00
// Détermine si on affiche uniquement le parent et les enfants
// Filtre contient le nom de la page parente
2021-06-07 10:16:09 +02:00
2021-06-14 18:37:45 +02:00
if ($onlyChildren === true) {
if (empty($currentParentPageId)) {
$filterCurrentPageId = $currentPageId;
} else {
$filterCurrentPageId = $currentParentPageId;
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
} else {
$items .= '<ul class="menuSide">';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
2022-09-29 08:45:59 +02:00
foreach ($this->getHierarchy() as $parentPageId => $childrenPageIds) {
2021-06-14 18:37:45 +02:00
// Ne pas afficher les entrées masquées
2022-09-29 08:45:59 +02:00
if ($this->getData(['page', $parentPageId, 'hideMenuSide']) === true) {
2021-06-14 18:37:45 +02:00
continue;
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Filtre actif et nom de la page parente courante différente, on sort de la boucle
if ($onlyChildren === true && $parentPageId !== $filterCurrentPageId) {
continue;
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Propriétés de l'item
2022-09-29 08:45:59 +02:00
$active = ($parentPageId === $currentPageId or in_array($currentPageId, $childrenPageIds)) ? ' class="active"' : '';
2021-06-14 18:37:45 +02:00
$targetBlank = $this->getData(['page', $parentPageId, 'targetBlank']) ? ' target="_blank" ' : '';
// Mise en page de l'item;
// Ne pas afficher le parent d'une sous-page quand l'option est sélectionnée.
if ($onlyChildren === false) {
$items .= '<li class="menuSideChild">';
2022-09-29 08:45:59 +02:00
if (
$this->getData(['page', $parentPageId, 'disable']) === true
and $this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
) {
$items .= '<a href="' . $this->getUrl(1) . '">';
2021-06-14 18:37:45 +02:00
} else {
2023-02-02 21:00:03 +01:00
$items .= '<a href="' . helper::baseUrl() . $parentPageId . '"' . $targetBlank . $active . '>';
2021-06-14 18:37:45 +02:00
}
2021-11-04 13:55:23 +01:00
$items .= $this->getData(['page', $parentPageId, 'shortTitle']);
2021-06-14 18:37:45 +02:00
$items .= '</a>';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
$itemsChildren = '';
2022-09-29 08:45:59 +02:00
foreach ($childrenPageIds as $childKey) {
2021-06-14 18:37:45 +02:00
// Passer les entrées masquées
2022-09-29 08:45:59 +02:00
if ($this->getData(['page', $childKey, 'hideMenuSide']) === true) {
2021-06-14 18:37:45 +02:00
continue;
}
// Propriétés de l'item
$active = ($childKey === $currentPageId) ? ' class="active"' : '';
$targetBlank = $this->getData(['page', $childKey, 'targetBlank']) ? ' target="_blank"' : '';
// Mise en page du sous-item
$itemsChildren .= '<li class="menuSideChild">';
2022-09-29 08:45:59 +02:00
if (
$this->getData(['page', $childKey, 'disable']) === true
and $this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
) {
$itemsChildren .= '<a href="' . $this->getUrl(1) . '">';
2021-06-14 18:37:45 +02:00
} else {
$itemsChildren .= '<a href="' . helper::baseUrl() . $childKey . '"' . $targetBlank . $active . '>';
}
2021-11-04 13:55:23 +01:00
$itemsChildren .= $this->getData(['page', $childKey, 'shortTitle']);
2021-06-14 18:37:45 +02:00
$itemsChildren .= '</a></li>';
}
// Concatène les items enfants
if (!empty($itemsChildren)) {
$items .= '<ul class="menuSideChild">';
$items .= $itemsChildren;
$items .= '</ul>';
} else {
$items .= '</li>';
2021-06-07 10:16:09 +02:00
}
}
2021-06-14 18:37:45 +02:00
if ($onlyChildren === false) {
$items .= '</ul>';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Retourne les items du menu
2023-02-02 21:00:03 +01:00
echo $items;
2021-06-07 10:16:09 +02:00
}
/**
2021-06-14 18:37:45 +02:00
* Affiche le meta titre
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
public function showMetaTitle()
{
2021-06-14 18:37:45 +02:00
echo '<title>' . $this->output['metaTitle'] . '</title>';
echo '<meta property="og:title" content="' . $this->output['metaTitle'] . '" />';
2022-10-07 17:31:47 +02:00
if (
$this->getData(['locale', 'homePageId']) === $this->getUrl(0)
) {
echo '<link rel="canonical" href="' . helper::baseUrl(false) . '" />';
} else {
echo '<link rel="canonical" href="' . helper::baseUrl(true) . $this->getUrl() . '" />';
}
2021-06-07 10:16:09 +02:00
}
/**
2021-06-14 18:37:45 +02:00
* Affiche la meta description
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
public function showMetaDescription()
{
echo '<meta name="description" content="' . $this->output['metaDescription'] . '" />';
echo '<meta property="og:description" content="' . $this->output['metaDescription'] . '" />';
2021-06-07 10:16:09 +02:00
}
/**
2021-06-14 18:37:45 +02:00
* Affiche le meta type
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
public function showMetaType()
{
2021-06-14 18:37:45 +02:00
echo '<meta property="og:type" content="website" />';
2021-06-07 10:16:09 +02:00
}
/**
2021-06-14 18:37:45 +02:00
* Affiche la meta image (site screenshot)
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
public function showMetaImage()
{
2022-11-29 09:00:17 +01:00
$items = '<meta property="og:image" content="' . helper::baseUrl(false) . self::FILE_DIR . 'source/screenshot.jpg" />';
$items .= '<meta property="og:image:type" content="image/jpeg" />';
$items .= '<meta property="og:image:width" content="1200" />';
$items .= '<meta property="og:image:height" content="627" />';
echo $items;
2021-06-07 10:16:09 +02:00
}
/**
2021-06-14 18:37:45 +02:00
* Affiche la notification
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
public function showNotification()
{
2021-06-14 18:37:45 +02:00
if (common::$importNotices) {
2022-09-29 08:45:59 +02:00
$notification = common::$importNotices[0];
2021-06-14 18:37:45 +02:00
$notificationClass = 'notificationSuccess';
}
2022-09-29 08:45:59 +02:00
if (common::$inputNotices) {
2021-06-14 18:37:45 +02:00
$notification = 'Impossible de soumettre le formulaire, car il contient des erreurs';
$notificationClass = 'notificationError';
}
if (common::$coreNotices) {
$notification = 'Données absentes, restauration de <p> | ';
2023-02-02 21:00:03 +01:00
foreach (common::$coreNotices as $item)
$notification .= $item . ' | ';
2021-06-14 18:37:45 +02:00
$notificationClass = 'notificationError';
2022-09-29 08:45:59 +02:00
} elseif (empty($_SESSION['ZWII_NOTIFICATION_SUCCESS']) === false) {
2021-06-14 18:37:45 +02:00
$notification = $_SESSION['ZWII_NOTIFICATION_SUCCESS'];
$notificationClass = 'notificationSuccess';
unset($_SESSION['ZWII_NOTIFICATION_SUCCESS']);
2022-09-29 08:45:59 +02:00
} elseif (empty($_SESSION['ZWII_NOTIFICATION_ERROR']) === false) {
2021-06-14 18:37:45 +02:00
$notification = $_SESSION['ZWII_NOTIFICATION_ERROR'];
$notificationClass = 'notificationError';
unset($_SESSION['ZWII_NOTIFICATION_ERROR']);
2022-09-29 08:45:59 +02:00
} elseif (empty($_SESSION['ZWII_NOTIFICATION_OTHER']) === false) {
2021-06-14 18:37:45 +02:00
$notification = $_SESSION['ZWII_NOTIFICATION_OTHER'];
$notificationClass = 'notificationOther';
unset($_SESSION['ZWII_NOTIFICATION_OTHER']);
}
2022-09-29 08:45:59 +02:00
if (isset($notification) and isset($notificationClass)) {
2021-06-14 18:37:45 +02:00
echo '<div id="notification" class="' . $notificationClass . '">' . $notification . '<span id="notificationClose">' . template::ico('cancel') . '<!----></span><div id="notificationProgress"></div></div>';
2021-06-07 10:16:09 +02:00
}
}
/**
2021-06-14 18:37:45 +02:00
* Affiche la barre de membre
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
public function showBar()
{
if ($this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')) {
2021-06-14 18:37:45 +02:00
// Items de gauche
$leftItems = '';
// Sélecteur de langues
if ($this->getUser('group') >= self::GROUP_MODERATOR) {
$c = 0;
$leftItem = '';
foreach (self::$languages as $key => $value) {
if (is_dir(self::DATA_DIR . $key)) {
$c++;
2023-01-01 11:12:30 +01:00
$location = helper::baseUrl() . 'translate/content/' . $key;
$leftItem .= '<option name="' . $key . '" value="' . $location . '" ' . ($key === self::$i18nContent ? 'selected' : '') . '>' . $value . '</option>';
}
}
2023-01-01 11:12:30 +01:00
if ($c > 1) {
$leftItems .= '<li><select id="barSelectLanguage">';
$leftItems .= $leftItem;
$leftItems .= '</select></li>';
}
}
// Liste des pages
2022-09-29 08:45:59 +02:00
if ($this->getUser('group') >= self::GROUP_MODERATOR) {
2021-06-14 18:37:45 +02:00
$leftItems .= '<li><select id="barSelectPage">';
$leftItems .= '<option value="">Pages du site</option>';
2021-06-14 18:37:45 +02:00
$leftItems .= '<optgroup label="Pages orphelines">';
2022-09-29 08:45:59 +02:00
$orpheline = true;
2021-06-14 18:37:45 +02:00
$currentPageId = $this->getData(['page', $this->getUrl(0)]) ? $this->getUrl(0) : $this->getUrl(2);
2022-09-29 08:45:59 +02:00
foreach ($this->getHierarchy(null, false) as $parentPageId => $childrenPageIds) {
if (
2023-02-02 21:00:03 +01:00
$this->getData(['page', $parentPageId, 'position']) !== 0 &&
2022-09-29 08:45:59 +02:00
$orpheline
) {
$orpheline = false;
2023-01-02 17:52:18 +01:00
$leftItems .= '<optgroup label="Pages dans le menu">';
2021-06-14 18:37:45 +02:00
}
// Exclure les barres
if ($this->getData(['page', $parentPageId, 'block']) !== 'bar') {
$leftItems .= '<option value="' .
2022-09-29 08:45:59 +02:00
helper::baseUrl() .
$parentPageId . '"' .
($parentPageId === $currentPageId ? ' selected' : false) .
' class="' .
($this->getData(['page', $parentPageId, 'disable']) === true ? 'pageInactive' : '') .
($this->getData(['page', $parentPageId, 'position']) === 0 ? ' pageHidden' : '') .
'">' .
$this->getData(['page', $parentPageId, 'shortTitle']) .
'</option>';
foreach ($childrenPageIds as $childKey) {
2021-06-14 18:37:45 +02:00
$leftItems .= '<option value="' .
2022-09-29 08:45:59 +02:00
helper::baseUrl() .
$childKey . '"' .
($childKey === $currentPageId ? ' selected' : false) .
' class="' .
($this->getData(['page', $childKey, 'disable']) === true ? 'pageInactive' : '') .
($this->getData(['page', $childKey, 'position']) === 0 ? ' pageHidden' : '') .
'">&nbsp;&nbsp;&nbsp;&nbsp;' .
$this->getData(['page', $childKey, 'shortTitle']) .
'</option>';
2021-06-14 18:37:45 +02:00
}
}
}
2022-09-29 08:45:59 +02:00
$leftItems .= '</optgroup' >
// Afficher les barres
$leftItems .= '<optgroup label="Barres latérales">';
foreach ($this->getHierarchy(null, false, true) as $parentPageId => $childrenPageIds) {
2021-11-04 13:55:23 +01:00
$leftItems .= '<option value="' . helper::baseUrl() . $parentPageId . '"' . ($parentPageId === $currentPageId ? ' selected' : false) . '>' . $this->getData(['page', $parentPageId, 'shortTitle']) . '</option>';
2022-09-29 08:45:59 +02:00
foreach ($childrenPageIds as $childKey) {
2021-11-04 13:55:23 +01:00
$leftItems .= '<option value="' . helper::baseUrl() . $childKey . '"' . ($childKey === $currentPageId ? ' selected' : false) . '>&nbsp;&nbsp;&nbsp;&nbsp;' . $this->getData(['page', $childKey, 'shortTitle']) . '</option>';
2021-06-14 18:37:45 +02:00
}
}
$leftItems .= '</optgroup>';
$leftItems .= '</select></li>';
$leftItems .= '<li>' . template::ico('plus', [
2022-09-29 08:45:59 +02:00
'href' => helper::baseUrl() . 'page/add',
'help' => 'Nouvelle page ou barre latérale'
]) . '</li>';
2022-09-29 08:45:59 +02:00
if (
2021-06-14 18:37:45 +02:00
// Sur un module de page qui autorise le bouton de modification de la page
$this->output['showBarEditButton']
// Sur une page sans module
2022-09-29 08:45:59 +02:00
or $this->getData(['page', $this->getUrl(0), 'moduleId']) === ''
// Sur une page avec un module invalide
or (!is_null($this->getData(['page', $this->getUrl(2), 'moduleId'])) &&
2022-10-04 10:28:07 +02:00
!class_exists($this->getData(['page', $this->getUrl(2), 'moduleId']))
)
2021-06-14 18:37:45 +02:00
// Sur une page d'accueil
2022-09-29 08:45:59 +02:00
or $this->getUrl(0) === ''
2021-06-14 18:37:45 +02:00
) {
2023-02-02 21:00:03 +01:00
$leftItems .= '<li>' . template::ico('pencil', [
2022-09-29 08:45:59 +02:00
'href' => helper::baseUrl() . 'page/edit/' . $this->getUrl(0),
2022-10-02 10:59:42 +02:00
'help' => 'Éditer la page'
]) . '</li>';
2022-09-29 08:45:59 +02:00
if ($this->getData(['page', $this->getUrl(0), 'moduleId'])) {
2023-02-02 21:00:03 +01:00
$leftItems .= '<li>' . template::ico('gear', [
2022-09-29 08:45:59 +02:00
'href' => helper::baseUrl() . $this->getUrl(0) . '/config',
'help' => 'Module de la page'
]) . '</li>';
2021-06-14 18:37:45 +02:00
}
$leftItems .= '<li>' . template::ico('clone', [
2022-09-29 08:45:59 +02:00
'href' => helper::baseUrl() . 'page/duplicate/' . $this->getUrl(0) . '&csrf=' . $_SESSION['csrf'],
2022-11-22 08:33:19 +01:00
'help' => 'Dupliquer la page'
])
2022-09-29 08:45:59 +02:00
. '</li>';
$leftItems .= '<li>' . template::ico('trash', [
2022-09-29 08:45:59 +02:00
'href' => helper::baseUrl() . 'page/delete/' . $this->getUrl(0) . '&csrf=' . $_SESSION['csrf'],
'help' => 'Supprimer la page',
'id' => 'pageDelete'
])
2022-09-29 08:45:59 +02:00
. '</li>';
2021-06-14 18:37:45 +02:00
}
}
// Items de droite
$rightItems = '';
2022-09-29 08:45:59 +02:00
if ($this->getUser('group') >= self::GROUP_MODERATOR) {
$rightItems .= '<li><a href="' . helper::baseUrl(false) . 'core/vendor/filemanager/dialog.php?type=0&akey=' . md5_file(self::DATA_DIR . 'core.json') . '&lang=' . $this->getData(['user', $this->getUser('id'), 'language']) . '" data-tippy-content="Gérer les fichiers" data-lity>' . template::ico('folder') . '</a></li>';
2021-06-14 18:37:45 +02:00
}
2022-09-29 08:45:59 +02:00
if ($this->getUser('group') >= self::GROUP_ADMIN) {
2023-02-02 21:00:03 +01:00
$rightItems .= '<li>' . template::ico('brush', [
2022-09-29 08:45:59 +02:00
'help' => 'Thème',
'href' => helper::baseUrl() . 'theme'
]) . '</li>';
2023-02-02 21:00:03 +01:00
$rightItems .= '<li>' . template::ico('puzzle', [
2022-09-29 08:45:59 +02:00
'help' => 'Gérer les modules',
'href' => helper::baseUrl() . 'plugin'
]) . '</li>';
2023-02-02 21:00:03 +01:00
$rightItems .= '<li>' . template::ico('flag', [
'help' => 'Multilingue',
2022-09-29 08:45:59 +02:00
'href' => helper::baseUrl() . 'translate'
]) . '</li>';
2023-02-02 21:00:03 +01:00
$rightItems .= '<li>' . template::ico('cog-alt', [
2022-09-29 08:45:59 +02:00
'help' => 'Configuration',
'href' => helper::baseUrl() . 'config'
]) . '</li>';
2023-02-02 21:00:03 +01:00
$rightItems .= '<li>' . template::ico('users', [
2022-09-29 08:45:59 +02:00
'help' => 'Utilisateurs',
'href' => helper::baseUrl() . 'user'
]) . '</li>';
2021-06-14 18:37:45 +02:00
// Mise à jour automatique
$today = mktime(0, 0, 0);
$checkUpdate = $this->getData(['core', 'lastAutoUpdate']);
// Recherche d'une mise à jour si active, si une mise à jour n'est pas déjà disponible et le délai journalier est dépassé.
if (
$this->getData(['config', 'autoUpdate'])
) {
if (
$today > $checkUpdate + $this->getData(['config', 'autoUpdateDelay', 86400])
) {
// Dernier auto controle
$this->setData(['core', 'lastAutoUpdate', $today]);
if (
helper::checkNewVersion(common::ZWII_UPDATE_CHANNEL)
) {
$this->setData(['core', 'updateAvailable', true]);
}
}
2021-06-14 18:37:45 +02:00
}
2021-06-14 18:37:45 +02:00
// Afficher le bouton : Mise à jour détectée + activée
if ($this->getData(['core', 'updateAvailable'])) {
$rightItems .= '<li><a href="' . helper::baseUrl() . 'install/update" data-tippy-content="Mettre à jour Zwii ' . common::ZWII_VERSION . ' vers ' . helper::getOnlineVersion(common::ZWII_UPDATE_CHANNEL) . '">' . template::ico('update colorRed') . '</a></li>';
2021-06-14 18:37:45 +02:00
}
}
2022-09-29 08:45:59 +02:00
if ($this->getUser('group') >= self::GROUP_MODERATOR) {
2023-02-02 21:00:03 +01:00
$rightItems .= '<li><a href="' . helper::baseUrl() . 'user/edit/' . $this->getUser('id') . '/' . $_SESSION['csrf'] . '" data-tippy-content="Configurer mon compte">' . template::ico('user', ['margin' => 'right']) . '<span id="displayUsername">' . $this->getUser('firstname') . ' ' . $this->getUser('lastname') . '</span></a></li>';
}
2023-02-02 21:00:03 +01:00
$rightItems .= '<li>' . template::ico('logout', [
2022-09-29 08:45:59 +02:00
'help' => 'Déconnecter',
'href' => helper::baseUrl() . 'user/logout',
'id' => 'barLogout'
]) . '</li>';
2021-06-14 18:37:45 +02:00
// Barre de membre
echo '<div id="bar"><div class="container"><ul id="barLeft">' . $leftItems . '</ul><ul id="barRight">' . $rightItems . '</ul></div></div>';
2021-06-07 10:16:09 +02:00
}
}
/**
2021-06-14 18:37:45 +02:00
* Affiche le script
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
public function showScript()
{
2021-06-14 18:37:45 +02:00
ob_start();
require 'core/core.js.php';
$coreScript = ob_get_clean();
echo '<script>' . helper::minifyJs($coreScript . $this->output['script']) . '</script>';
2021-06-07 10:16:09 +02:00
}
/**
2021-06-14 18:37:45 +02:00
* Affiche le style
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
public function showStyle()
{
2022-03-04 18:00:26 +01:00
// Import des styles liés à la page
2022-09-29 08:45:59 +02:00
if ($this->output['style']) {
echo '<base href="' . helper::baseUrl(true) . '">';
if (strpos($this->output['style'], 'admin.css') >= 1) {
echo '<link rel="stylesheet" href="' . self::DATA_DIR . 'admin.css?' . md5_file(self::DATA_DIR . 'admin.css') . '">';
2021-06-14 18:37:45 +02:00
}
echo '<style type="text/css">' . helper::minifyCss($this->output['style']) . '</style>';
2021-06-07 10:16:09 +02:00
}
2022-05-05 18:19:56 +02:00
// Import des fontes liées au thème
2022-09-29 08:45:59 +02:00
if (file_exists(self::DATA_DIR . 'fonts/fonts.html')) {
include_once(self::DATA_DIR . 'fonts/fonts.html');
2022-03-04 17:59:30 +01:00
}
2021-06-07 10:16:09 +02:00
}
/**
2021-06-14 18:37:45 +02:00
* Affiche l'import des librairies
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
public function showVendor()
{
2021-06-14 18:37:45 +02:00
// Variables partagées
$vars = 'var baseUrl = ' . json_encode(helper::baseUrl(false)) . ';';
$vars .= 'var baseUrlQs = ' . json_encode(helper::baseUrl()) . ';';
2022-09-29 08:45:59 +02:00
if (
2021-06-14 18:37:45 +02:00
$this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
2022-09-29 08:45:59 +02:00
and $this->getUser('group') >= self::GROUP_MODERATOR
2021-06-14 18:37:45 +02:00
) {
2022-09-29 08:45:59 +02:00
$vars .= 'var privateKey = ' . json_encode(md5_file(self::DATA_DIR . 'core.json')) . ';';
2021-06-14 18:37:45 +02:00
}
echo '<script>' . helper::minifyJs($vars) . '</script>';
// Librairies
$moduleId = $this->getData(['page', $this->getUrl(0), 'moduleId']);
2022-09-29 08:45:59 +02:00
foreach ($this->output['vendor'] as $vendorName) {
2021-06-14 18:37:45 +02:00
// Coeur
2022-09-29 08:45:59 +02:00
if (file_exists('core/vendor/' . $vendorName . '/inc.json')) {
2021-06-14 18:37:45 +02:00
$vendorPath = 'core/vendor/' . $vendorName . '/';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Module
2022-09-29 08:45:59 +02:00
elseif (
2021-06-14 18:37:45 +02:00
$moduleId
2022-09-29 08:45:59 +02:00
and in_array($moduleId, self::$coreModuleIds) === false
and file_exists(self::MODULE_DIR . $moduleId . '/vendor/' . $vendorName . '/inc.json')
2021-06-14 18:37:45 +02:00
) {
2022-04-08 09:47:35 +02:00
$vendorPath = self::MODULE_DIR . $moduleId . '/vendor/' . $vendorName . '/';
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Sinon continue
else {
2021-06-07 10:16:09 +02:00
continue;
}
2021-06-14 18:37:45 +02:00
// Détermine le type d'import en fonction de l'extension de la librairie
$vendorFiles = json_decode(file_get_contents($vendorPath . 'inc.json'));
2022-09-29 08:45:59 +02:00
foreach ($vendorFiles as $vendorFile) {
switch (pathinfo($vendorFile, PATHINFO_EXTENSION)) {
2021-06-14 18:37:45 +02:00
case 'css':
// Force le rechargement lors d'une mise à jour du jeu d'icônes
$reload = $vendorPath === 'core/vendor/zwiico/'
? '?' . md5_file('core/vendor/zwiico/css/zwiico-codes.css')
: '';
echo '<link rel="stylesheet" href="' . helper::baseUrl(false) . $vendorPath . $vendorFile . $reload . '">';
2021-06-07 10:16:09 +02:00
break;
2021-06-14 18:37:45 +02:00
case 'js':
echo '<script src="' . helper::baseUrl(false) . $vendorPath . $vendorFile . '"></script>';
2021-06-07 10:16:09 +02:00
break;
}
}
}
}
/**
2021-06-14 18:37:45 +02:00
* Affiche le cadre avec les drapeaux sélectionnés
2021-06-07 10:16:09 +02:00
*/
public function showi18n($lang)
2022-09-29 08:45:59 +02:00
{
if (
is_dir(self::DATA_DIR . $lang)
) {
2022-09-29 08:45:59 +02:00
if (
(isset($_COOKIE['ZWII_CONTENT'])
and $_COOKIE['ZWII_CONTENT'] === $lang
)
2021-06-14 18:37:45 +02:00
) {
$select = ' class="i18nFlagSelected" ';
} else {
$select = ' class="i18nFlag" ';
2021-06-07 10:16:09 +02:00
}
$items = '<li>';
2023-02-02 21:00:03 +01:00
$items .= '<a href="' . helper::baseUrl() . 'translate/content/' . $lang . '"><img ' . $select . ' alt="' . self::$languages[$lang] . '" src="' . helper::baseUrl(false) . 'core/vendor/i18n/png/' . $lang . '.png"/></a>';
$items .= '</li>';
2021-06-07 10:16:09 +02:00
}
return $items;
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
}
2021-06-07 10:16:09 +02:00
2022-09-29 08:45:59 +02:00
class core extends common
{
2021-06-07 10:16:09 +02:00
/**
2021-06-14 18:37:45 +02:00
* Constructeur du coeur
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
public function __construct()
{
2021-06-14 18:37:45 +02:00
parent::__construct();
// Token CSRF
2022-09-29 08:45:59 +02:00
if (empty($_SESSION['csrf'])) {
2021-06-14 18:37:45 +02:00
$_SESSION['csrf'] = bin2hex(openssl_random_pseudo_bytes(32));
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Fuseau horaire
self::$timezone = $this->getData(['config', 'timezone']); // Utile pour transmettre le timezone à la classe helper
date_default_timezone_set(self::$timezone);
// Supprime les fichiers temporaires
$lastClearTmp = mktime(0, 0, 0);
2022-09-29 08:45:59 +02:00
if ($lastClearTmp > $this->getData(['core', 'lastClearTmp']) + 86400) {
2021-06-14 18:37:45 +02:00
$iterator = new DirectoryIterator(self::TEMP_DIR);
2022-09-29 08:45:59 +02:00
foreach ($iterator as $fileInfos) {
if (
$fileInfos->isFile() &&
2021-06-14 18:37:45 +02:00
$fileInfos->getBasename() !== '.htaccess' &&
$fileInfos->getBasename() !== '.gitkeep'
) {
@unlink($fileInfos->getPathname());
2021-06-07 10:16:09 +02:00
}
}
2021-06-14 18:37:45 +02:00
// Date de la dernière suppression
$this->setData(['core', 'lastClearTmp', $lastClearTmp]);
// Enregistre les données
//$this->SaveData();
}
// Backup automatique des données
$lastBackup = mktime(0, 0, 0);
2022-09-29 08:45:59 +02:00
if (
2021-06-14 18:37:45 +02:00
$this->getData(['config', 'autoBackup'])
2022-09-29 08:45:59 +02:00
and $lastBackup > $this->getData(['core', 'lastBackup']) + 86400
and $this->getData(['user']) // Pas de backup pendant l'installation
2021-06-14 18:37:45 +02:00
) {
// Copie des fichier de données
2022-09-29 08:45:59 +02:00
helper::autoBackup(self::BACKUP_DIR, ['backup', 'tmp', 'file']);
2021-06-14 18:37:45 +02:00
// Date du dernier backup
$this->setData(['core', 'lastBackup', $lastBackup]);
// Supprime les backups de plus de 30 jours
$iterator = new DirectoryIterator(self::BACKUP_DIR);
2022-09-29 08:45:59 +02:00
foreach ($iterator as $fileInfos) {
if (
2021-06-14 18:37:45 +02:00
$fileInfos->isFile()
2022-09-29 08:45:59 +02:00
and $fileInfos->getBasename() !== '.htaccess'
and $fileInfos->getMTime() + (86400 * 30) < time()
2021-06-14 18:37:45 +02:00
) {
@unlink($fileInfos->getPathname());
2021-06-07 10:16:09 +02:00
}
}
}
2022-02-07 10:27:21 +01:00
2021-06-14 18:37:45 +02:00
// Crée le fichier de personnalisation avancée
2022-09-29 08:45:59 +02:00
if (file_exists(self::DATA_DIR . 'custom.css') === false) {
file_put_contents(self::DATA_DIR . 'custom.css', file_get_contents('core/module/theme/resource/custom.css'));
chmod(self::DATA_DIR . 'custom.css', 0755);
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Crée le fichier de personnalisation
2022-09-29 08:45:59 +02:00
if (file_exists(self::DATA_DIR . 'theme.css') === false) {
file_put_contents(self::DATA_DIR . 'theme.css', '');
chmod(self::DATA_DIR . 'theme.css', 0755);
2021-06-14 18:37:45 +02:00
}
// Crée le fichier de personnalisation de l'administration
2022-09-29 08:45:59 +02:00
if (file_exists(self::DATA_DIR . 'admin.css') === false) {
file_put_contents(self::DATA_DIR . 'admin.css', '');
chmod(self::DATA_DIR . 'admin.css', 0755);
2021-06-14 18:37:45 +02:00
}
2021-06-14 18:37:45 +02:00
// Check la version rafraichissement du theme
2022-09-29 08:45:59 +02:00
$cssVersion = preg_split('/\*+/', file_get_contents(self::DATA_DIR . 'theme.css'));
if (empty($cssVersion[1]) or $cssVersion[1] !== md5(json_encode($this->getData(['theme'])))) {
2021-06-14 18:37:45 +02:00
// Version
$css = '/*' . md5(json_encode($this->getData(['theme']))) . '*/';
2022-02-06 11:32:29 +01:00
2022-05-05 18:19:56 +02:00
2022-02-06 12:16:51 +01:00
/**
* Import des polices de caractères
2022-05-05 18:19:56 +02:00
* A partir du CDN
* ou dans le dossier site/file/source/fonts
* ou pas du tout si fonte webSafe
2022-02-06 12:16:51 +01:00
*/
2022-05-05 18:19:56 +02:00
// Fonts disponibles
2023-02-02 21:00:03 +01:00
$fontsAvailable['files'] = $this->getData(['fonts', 'files']);
$fontsAvailable['imported'] = $this->getData(['fonts', 'imported']);
2022-09-29 08:45:59 +02:00
$fontsAvailable['websafe'] = self::$fontsWebSafe;
2022-05-05 18:19:56 +02:00
// Fontes installées
2022-09-29 08:45:59 +02:00
$fonts = [
2023-02-02 21:00:03 +01:00
$this->getData(['theme', 'text', 'font']),
2022-09-29 08:45:59 +02:00
$this->getData(['theme', 'title', 'font']),
$this->getData(['theme', 'header', 'font']),
$this->getData(['theme', 'menu', 'font']),
$this->getData(['theme', 'footer', 'font'])
2022-05-05 18:19:56 +02:00
];
// Suppression des polices identiques
$fonts = array_unique($fonts);
/**
* Charge les fontes websafe
*/
$fontFile = '';
foreach ($fonts as $fontId) {
2022-09-29 08:45:59 +02:00
if (isset($fontsAvailable['websafe'][$fontId])) {
$fonts[$fontId] = $fontsAvailable['websafe'][$fontId]['font-family'];
2022-05-05 18:19:56 +02:00
}
}
/**
2022-09-29 08:45:59 +02:00
* Chargement des polices en ligne dans un fichier fonts.html inclus dans main.php
*/
2022-05-05 18:19:56 +02:00
$fontFile = '';
$gf = false;
foreach ($fonts as $fontId) {
2022-09-29 08:45:59 +02:00
if (isset($fontsAvailable['imported'][$fontId])) {
$fontFile .= '<link href="' . $fontsAvailable['imported'][$fontId]['resource'] . '" rel="stylesheet">';
// Tableau pour la construction de la feuille de style
$fonts[$fontId] = $fontsAvailable['imported'][$fontId]['font-family'];
2023-02-02 21:00:03 +01:00
$gf = strpos($fontsAvailable['imported'][$fontId]['resource'], 'fonts.googleapis.com') === false ? $gf || false : $gf || true;
2022-05-05 18:19:56 +02:00
}
}
// Ajoute le préconnect des fontes Googles.
$fontFile = $gf ? '<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>' . $fontFile
2022-09-29 08:45:59 +02:00
: $fontFile;
2022-05-05 18:19:56 +02:00
// Enregistre la personnalisation
if (!is_dir(self::DATA_DIR . 'fonts')) {
mkdir(self::DATA_DIR . 'fonts');
}
2022-09-29 08:45:59 +02:00
file_put_contents(self::DATA_DIR . 'fonts/fonts.html', $fontFile);
2022-05-05 18:19:56 +02:00
/**
* Fontes installées localement
*/
foreach ($fonts as $fontId) {
// Validité du tableau :
2022-09-29 08:45:59 +02:00
if (isset($fontsAvailable['files'][$fontId])) {
if (file_exists(self::DATA_DIR . 'fonts/' . $fontId)) {
2022-05-05 18:19:56 +02:00
// Chargement de la police
$css .= '@font-face {font-family:"' . $fontsAvailable['files'][$fontId]['font-family'] . '";';
2022-09-29 08:45:59 +02:00
$css .= 'src: url("' . helper::baseUrl(false) . self::DATA_DIR . 'fonts/' . $fontsAvailable['files'][$fontId]['resource'] . '");}';
2022-05-05 18:19:56 +02:00
// Tableau pour la construction de la feuille de style
2022-09-29 08:45:59 +02:00
$fonts[$fontId] = $fontsAvailable['files'][$fontId]['font-family'];
2022-05-05 18:19:56 +02:00
} else {
// Le fichier de font n'est pas disponible, fonte par défaut
2022-09-29 08:45:59 +02:00
$fonts[$fontId] = 'verdana';
2022-03-18 16:12:30 +01:00
}
2022-02-06 12:16:51 +01:00
}
}
2022-02-06 11:32:29 +01:00
2021-06-14 18:37:45 +02:00
// Fond du body
$colors = helper::colorVariants($this->getData(['theme', 'body', 'backgroundColor']));
// Body
2022-03-11 09:17:13 +01:00
$css .= 'body{font-family:' . $fonts[$this->getData(['theme', 'text', 'font'])] . ';}';
2022-09-29 08:45:59 +02:00
if ($themeBodyImage = $this->getData(['theme', 'body', 'image'])) {
2021-06-14 18:37:45 +02:00
// Image dans html pour éviter les déformations.
$css .= 'html {background-image:url("../file/source/' . $themeBodyImage . '");background-position:' . $this->getData(['theme', 'body', 'imagePosition']) . ';background-attachment:' . $this->getData(['theme', 'body', 'imageAttachment']) . ';background-size:' . $this->getData(['theme', 'body', 'imageSize']) . ';background-repeat:' . $this->getData(['theme', 'body', 'imageRepeat']) . '}';
2021-06-14 18:37:45 +02:00
// Couleur du body transparente
$css .= 'body {background-color: rgba(0,0,0,0)}';
2021-06-14 18:37:45 +02:00
} else {
// Pas d'image couleur du body
$css .= 'html {background-color:' . $colors['normal'] . ';}';
2021-06-14 18:37:45 +02:00
}
// Icône BacktoTop
2022-09-29 08:45:59 +02:00
$css .= '#backToTop {background-color:' . $this->getData(['theme', 'body', 'toTopbackgroundColor']) . ';color:' . $this->getData(['theme', 'body', 'toTopColor']) . ';}';
2021-06-14 18:37:45 +02:00
// Site
$colors = helper::colorVariants($this->getData(['theme', 'text', 'linkColor']));
$css .= 'a{color:' . $colors['normal'] . '}';
// Couleurs de site dans TinyMCe
2023-02-02 21:00:03 +01:00
$css .= 'div.mce-edit-area {font-family:' . $fonts[$this->getData(['theme', 'text', 'font'])] . ';}';
2021-06-14 18:37:45 +02:00
// Site dans TinyMCE
$css .= '.editorWysiwyg, .editorWysiwygComment {background-color:' . $this->getData(['theme', 'site', 'backgroundColor']) . ';}';
2021-12-03 17:10:53 +01:00
$css .= 'span.mce-text{background-color: unset !important;}';
2021-06-14 18:37:45 +02:00
$css .= 'body,.row > div{font-size:' . $this->getData(['theme', 'text', 'fontSize']) . '}';
$css .= 'body{color:' . $this->getData(['theme', 'text', 'textColor']) . '}';
2022-09-29 08:45:59 +02:00
$css .= 'select,input[type=\'password\'],input[type=\'email\'],input[type=\'text\'],.inputFile,select,textarea{color:' . $this->getData(['theme', 'text', 'textColor']) . ';background-color:' . $this->getData(['theme', 'site', 'backgroundColor']) . ';}';
2021-06-14 18:37:45 +02:00
// spécifiques au module de blog
$css .= '.blogDate {color:' . $this->getData(['theme', 'text', 'textColor']) . ';}.blogPicture img{border:1px solid ' . $this->getData(['theme', 'text', 'textColor']) . '; box-shadow: 1px 1px 5px ' . $this->getData(['theme', 'text', 'textColor']) . ';}';
// Couleur fixée dans admin.css
2022-02-01 13:43:36 +01:00
$css .= '.container {max-width:' . $this->getData(['theme', 'site', 'width']) . '}';
2021-06-14 18:37:45 +02:00
$margin = $this->getData(['theme', 'site', 'margin']) ? '0' : '20px';
// Marge supplémentaire lorsque le pied de page est fixe
2022-09-29 08:45:59 +02:00
if (
$this->getData(['theme', 'footer', 'fixed']) === true &&
$this->getData(['theme', 'footer', 'position']) === 'body'
) {
2022-08-29 11:45:45 +02:00
2022-09-29 08:45:59 +02:00
$marginBottomLarge = ((str_replace('px', '', $this->getData(['theme', 'footer', 'height'])) * 2) + 31) . 'px';
$marginBottomSmall = ((str_replace('px', '', $this->getData(['theme', 'footer', 'height'])) * 2) + 93) . 'px';
2021-06-14 18:37:45 +02:00
} else {
$marginBottomSmall = $margin;
$marginBottomLarge = $margin;
}
$css .= $this->getData(['theme', 'site', 'width']) === '100%'
2022-09-29 08:45:59 +02:00
? '@media (min-width: 769px) {#site{margin:0 auto ' . $marginBottomLarge . ' 0 !important;}}@media (max-width: 768px) {#site{margin:0 auto ' . $marginBottomSmall . ' 0 !important;}}#site.light{margin:5% auto !important;} body{margin:0 auto !important;} #bar{margin:0 auto !important;} body > header{margin:0 auto !important;} body > nav {margin: 0 auto !important;} body > footer {margin:0 auto !important;}'
2023-02-02 21:00:03 +01:00
: '@media (min-width: 769px) {#site{margin: ' . $margin . ' auto ' . $marginBottomLarge . ' auto !important;}}@media (max-width: 768px) {#site{margin: ' . $margin . ' auto ' . $marginBottomSmall . ' auto !important;}}#site.light{margin: 5% auto !important;} body{margin:0px 10px;} #bar{margin: 0 -10px;} body > header{margin: 0 -10px;} body > nav {margin: 0 -10px;} body > footer {margin: 0 -10px;} ';
2021-06-14 18:37:45 +02:00
$css .= $this->getData(['theme', 'site', 'width']) === '750px'
2022-09-29 08:45:59 +02:00
? '.button, button{font-size:0.8em;}'
: '';
2021-06-14 18:37:45 +02:00
$css .= '#site{background-color:' . $this->getData(['theme', 'site', 'backgroundColor']) . ';border-radius:' . $this->getData(['theme', 'site', 'radius']) . ';box-shadow:' . $this->getData(['theme', 'site', 'shadow']) . ' #212223;}';
$colors = helper::colorVariants($this->getData(['theme', 'button', 'backgroundColor']));
$css .= '.speechBubble,.button,.button:hover,button[type=\'submit\'],.pagination a,.pagination a:hover,input[type=\'checkbox\']:checked + label:before,input[type=\'radio\']:checked + label:before,.helpContent{background-color:' . $colors['normal'] . ';color:' . $colors['text'] . '}';
$css .= '.helpButton span{color:' . $colors['normal'] . '}';
$css .= 'input[type=\'text\']:hover,input[type=\'password\']:hover,.inputFile:hover,select:hover,textarea:hover{border-color:' . $colors['normal'] . '}';
$css .= '.speechBubble:before{border-color:' . $colors['normal'] . ' transparent transparent transparent}';
$css .= '.button:hover,button[type=\'submit\']:hover,.pagination a:hover,input[type=\'checkbox\']:not(:active):checked:hover + label:before,input[type=\'checkbox\']:active + label:before,input[type=\'radio\']:checked:hover + label:before,input[type=\'radio\']:not(:checked):active + label:before{background-color:' . $colors['darken'] . '}';
$css .= '.helpButton span:hover{color:' . $colors['darken'] . '}';
$css .= '.button:active,button[type=\'submit\']:active,.pagination a:active{background-color:' . $colors['veryDarken'] . '}';
$colors = helper::colorVariants($this->getData(['theme', 'title', 'textColor']));
2023-02-02 21:00:03 +01:00
$css .= 'h1,h2,h3,h4,h5,h6,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:' . $colors['normal'] . ';font-family:' . $fonts[$this->getData(['theme', 'title', 'font'])] . ';font-weight:' . $this->getData(['theme', 'title', 'fontWeight']) . ';text-transform:' . $this->getData(['theme', 'title', 'textTransform']) . '}';
2021-06-14 18:37:45 +02:00
$css .= 'h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{color:' . $colors['darken'] . '}';
// Les blocs
$colors = helper::colorVariants($this->getData(['theme', 'block', 'backgroundColor']));
2023-02-02 21:00:03 +01:00
$css .= '.block {border: 1px solid ' . $this->getdata(['theme', 'block', 'borderColor']) . ';}.block h4 {background-color:' . $colors['normal'] . ';color:' . $colors['text'] . ';}';
2021-06-14 18:37:45 +02:00
// Bannière
// Eléments communs
2022-09-29 08:45:59 +02:00
if ($this->getData(['theme', 'header', 'margin'])) {
if ($this->getData(['theme', 'menu', 'position']) === 'site-first') {
2021-06-14 18:37:45 +02:00
$css .= 'header{margin:0 20px}';
2022-09-29 08:45:59 +02:00
} else {
2021-06-14 18:37:45 +02:00
$css .= 'header{margin:20px 20px 0 20px}';
}
}
$colors = helper::colorVariants($this->getData(['theme', 'header', 'backgroundColor']));
$css .= 'header{background-color:' . $colors['normal'] . ';}';
// Bannière de type papier peint
2022-09-29 08:45:59 +02:00
if ($this->getData(['theme', 'header', 'feature']) === 'wallpaper') {
$css .= 'header{background-size:' . $this->getData(['theme', 'header', 'imageContainer']) . '}';
2021-11-25 13:40:14 +01:00
$css .= 'header{background-color:' . $colors['normal'];
2021-11-18 11:34:19 +01:00
// Valeur de hauteur traditionnelle
2022-09-29 08:45:59 +02:00
$css .= ';height:' . $this->getData(['theme', 'header', 'height']) . ';line-height:' . $this->getData(['theme', 'header', 'height']);
2021-11-25 13:40:14 +01:00
2023-02-02 21:00:03 +01:00
$css .= ';text-align:' . $this->getData(['theme', 'header', 'textAlign']) . '}';
2022-09-29 08:45:59 +02:00
if ($themeHeaderImage = $this->getData(['theme', 'header', 'image'])) {
$css .= 'header{background-image:url("../file/source/' . $themeHeaderImage . '");background-position:' . $this->getData(['theme', 'header', 'imagePosition']) . ';background-repeat:' . $this->getData(['theme', 'header', 'imageRepeat']) . '}';
}
$colors = helper::colorVariants($this->getData(['theme', 'header', 'textColor']));
2023-02-02 21:00:03 +01:00
$css .= 'header span{color:' . $colors['normal'] . ';font-family:' . $fonts[$this->getData(['theme', 'header', 'font'])] . ';font-weight:' . $this->getData(['theme', 'header', 'fontWeight']) . ';font-size:' . $this->getData(['theme', 'header', 'fontSize']) . ';text-transform:' . $this->getData(['theme', 'header', 'textTransform']) . '}';
2021-06-14 18:37:45 +02:00
}
// Bannière au contenu personnalisé
2022-09-29 08:45:59 +02:00
if ($this->getData(['theme', 'header', 'feature']) === 'feature') {
// Hauteur de la taille du contenu perso
2023-02-02 21:00:03 +01:00
$css .= 'header {height:' . $this->getData(['theme', 'header', 'height']) . '; min-height:' . $this->getData(['theme', 'header', 'height']) . ';overflow: hidden;}';
}
2021-11-15 09:01:08 +01:00
2021-06-14 18:37:45 +02:00
// Menu
$colors = helper::colorVariants($this->getData(['theme', 'menu', 'backgroundColor']));
$css .= 'nav,nav.navMain a{background-color:' . $colors['normal'] . '}';
$css .= 'nav a,#toggle span,nav a:hover{color:' . $this->getData(['theme', 'menu', 'textColor']) . '}';
$css .= 'nav a:hover{background-color:' . $colors['darken'] . '}';
2022-09-29 08:45:59 +02:00
$css .= 'nav a.active{color:' . $this->getData(['theme', 'menu', 'activeTextColor']) . ';}';
if ($this->getData(['theme', 'menu', 'activeColorAuto']) === true) {
2021-06-14 18:37:45 +02:00
$css .= 'nav a.active{background-color:' . $colors['veryDarken'] . '}';
} else {
2022-09-29 08:45:59 +02:00
$css .= 'nav a.active{background-color:' . $this->getData(['theme', 'menu', 'activeColor']) . '}';
2021-06-14 18:37:45 +02:00
}
2023-02-02 21:00:03 +01:00
$css .= 'nav #burgerText{color:' . $colors['text'] . '}';
2021-06-14 18:37:45 +02:00
// Sous menu
$colors = helper::colorVariants($this->getData(['theme', 'menu', 'backgroundColorSub']));
$css .= 'nav .navSub a{background-color:' . $colors['normal'] . '}';
$css .= 'nav .navMain a.active {border-radius:' . $this->getData(['theme', 'menu', 'radius']) . '}';
$css .= '#menu{text-align:' . $this->getData(['theme', 'menu', 'textAlign']) . '}';
2022-09-29 08:45:59 +02:00
if ($this->getData(['theme', 'menu', 'margin'])) {
if (
2021-06-14 18:37:45 +02:00
$this->getData(['theme', 'menu', 'position']) === 'site-first'
2022-09-29 08:45:59 +02:00
or $this->getData(['theme', 'menu', 'position']) === 'site-second'
2021-06-14 18:37:45 +02:00
) {
$css .= 'nav{padding:10px 10px 0 10px;}';
2022-09-29 08:45:59 +02:00
} else {
2021-06-14 18:37:45 +02:00
$css .= 'nav{padding:0 10px}';
}
} else {
$css .= 'nav{margin:0}';
}
2022-09-29 08:45:59 +02:00
if (
2021-06-14 18:37:45 +02:00
$this->getData(['theme', 'menu', 'position']) === 'top'
2022-09-29 08:45:59 +02:00
) {
$css .= 'nav{padding:0 10px;}';
2021-06-14 18:37:45 +02:00
}
2021-06-07 10:16:09 +02:00
2023-02-02 21:00:03 +01:00
$css .= '#toggle span,#menu a{padding:' . $this->getData(['theme', 'menu', 'height']) . ';font-family:' . $fonts[$this->getData(['theme', 'menu', 'font'])] . ';font-weight:' . $this->getData(['theme', 'menu', 'fontWeight']) . ';font-size:' . $this->getData(['theme', 'menu', 'fontSize']) . ';text-transform:' . $this->getData(['theme', 'menu', 'textTransform']) . '}';
2021-06-14 18:37:45 +02:00
// Pied de page
$colors = helper::colorVariants($this->getData(['theme', 'footer', 'backgroundColor']));
2022-09-29 08:45:59 +02:00
if ($this->getData(['theme', 'footer', 'margin'])) {
2021-06-14 18:37:45 +02:00
$css .= 'footer{padding:0 20px;}';
} else {
$css .= 'footer{padding:0}';
}
2021-06-07 10:16:09 +02:00
2023-02-02 21:00:03 +01:00
$css .= 'footer span, #footerText > p {color:' . $this->getData(['theme', 'footer', 'textColor']) . ';font-family:' . $fonts[$this->getData(['theme', 'footer', 'font'])] . ';font-weight:' . $this->getData(['theme', 'footer', 'fontWeight']) . ';font-size:' . $this->getData(['theme', 'footer', 'fontSize']) . ';text-transform:' . $this->getData(['theme', 'footer', 'textTransform']) . '}';
2021-06-14 18:37:45 +02:00
$css .= 'footer {background-color:' . $colors['normal'] . ';color:' . $this->getData(['theme', 'footer', 'textColor']) . '}';
$css .= 'footer a{color:' . $this->getData(['theme', 'footer', 'textColor']) . '}';
$css .= 'footer #footersite > div {margin:' . $this->getData(['theme', 'footer', 'height']) . ' 0}';
2021-06-07 10:16:09 +02:00
2021-06-14 18:37:45 +02:00
$css .= 'footer #footerbody > div {margin:' . $this->getData(['theme', 'footer', 'height']) . ' 0}';
$css .= '@media (max-width: 768px) {footer #footerbody > div { padding: 2px }}';
$css .= '#footerSocials{text-align:' . $this->getData(['theme', 'footer', 'socialsAlign']) . '}';
$css .= '#footerText > p {text-align:' . $this->getData(['theme', 'footer', 'textAlign']) . '}';
$css .= '#footerCopyright{text-align:' . $this->getData(['theme', 'footer', 'copyrightAlign']) . '}';
2022-05-05 18:19:56 +02:00
// Enregistre les fontes
if (!is_dir(self::DATA_DIR . 'fonts')) {
mkdir(self::DATA_DIR . 'fonts');
}
file_put_contents(self::DATA_DIR . 'fonts/fonts.html', $fontFile);
2021-06-14 18:37:45 +02:00
// Enregistre la personnalisation
2022-09-29 08:45:59 +02:00
file_put_contents(self::DATA_DIR . 'theme.css', $css);
2022-03-15 09:57:56 +01:00
2021-06-14 18:37:45 +02:00
// Effacer le cache pour tenir compte de la couleur de fond TinyMCE
header("Expires: Tue, 01 Jan 2000 00:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Check la version rafraichissement du theme admin
2022-09-29 08:45:59 +02:00
$cssVersion = preg_split('/\*+/', file_get_contents(self::DATA_DIR . 'admin.css'));
if (empty($cssVersion[1]) or $cssVersion[1] !== md5(json_encode($this->getData(['admin'])))) {
2021-06-14 18:37:45 +02:00
// Version
$css = '/*' . md5(json_encode($this->getData(['admin']))) . '*/';
/**
* Import des polices de caractères
2022-05-05 18:19:56 +02:00
* A partir du CDN ou dans le dossier site/file/source/fonts
*/
2022-09-29 08:45:59 +02:00
$fonts = [
$this->getData(['admin', 'fontText']),
$this->getData(['admin', 'fontTitle']),
2022-05-05 18:19:56 +02:00
];
// Suppression des polices identiques
$fonts = array_unique($fonts);
2022-02-11 11:50:28 +01:00
2022-05-05 18:19:56 +02:00
/**
* Charge les fontes websafe
*/
$fontFile = '';
foreach ($fonts as $fontId) {
2022-09-29 08:45:59 +02:00
if (isset($fontsAvailable['websafe'][$fontId])) {
$fonts[$fontId] = $fontsAvailable['websafe'][$fontId]['font-family'];
}
2022-02-11 11:50:28 +01:00
}
2022-05-05 18:19:56 +02:00
/**
2022-09-29 08:45:59 +02:00
* Chargement des polices en ligne dans un fichier fonts.html inclus dans main.php
*/
2022-05-05 18:19:56 +02:00
$fontFile = '';
foreach ($fonts as $fontId) {
2022-09-29 08:45:59 +02:00
if (isset($fontsAvailable['imported'][$fontId])) {
$fontFile .= '<link href="' . $fontsAvailable['imported'][$fontId]['resource'] . '" rel="stylesheet">';
// Tableau pour la construction de la feuille de style
$fonts[$fontId] = $fontsAvailable['imported'][$fontId]['font-family'];
2022-05-05 18:19:56 +02:00
}
}
// Enregistre la personnalisation
2022-09-29 08:45:59 +02:00
file_put_contents(self::DATA_DIR . 'fonts/fonts.html', $fontFile);
2022-05-05 18:19:56 +02:00
/**
* Fontes installées localement
*/
foreach ($fonts as $fontId) {
// Validité du tableau :
2022-09-29 08:45:59 +02:00
if (isset($fontsAvailable['files'][$fontId])) {
if (file_exists(self::DATA_DIR . 'fonts/' . $fontId)) {
2022-05-05 18:19:56 +02:00
// Chargement de la police
$css .= '@font-face {font-family:"' . $fontsAvailable['files'][$fontId]['font-family'] . '";';
2022-09-29 08:45:59 +02:00
$css .= 'src: url("' . helper::baseUrl(false) . self::DATA_DIR . 'fonts/' . $fontsAvailable['files'][$fontId]['resource'] . '");}';
2022-05-05 18:19:56 +02:00
// Tableau pour la construction de la feuille de style
2022-09-29 08:45:59 +02:00
$fonts[$fontId] = $fontsAvailable['files'][$fontId]['font-family'];
2022-05-05 18:19:56 +02:00
} else {
// Le fichier de font n'est pas disponible, fonte par défaut
2022-09-29 08:45:59 +02:00
$fonts[$fontId] = 'verdana';
2022-05-05 18:19:56 +02:00
}
}
}
2022-02-11 11:50:28 +01:00
// Thème Administration
2022-09-29 08:45:59 +02:00
$colors = helper::colorVariants($this->getData(['admin', 'backgroundColor']));
$css .= '#site{background-color:' . $colors['normal'] . ';}';
2023-02-02 21:00:03 +01:00
$css .= '.row > div {font:' . $fonts[$this->getData(['admin', 'fontText'])] . ';font-size:' . $this->getData(['admin', 'fontSize']) . '}';
$css .= 'body h1, h2, h3, h4 a, h5, h6 {font-family:' . $fonts[$this->getData(['admin', 'fontTitle'])] . ';color:' . $this->getData(['admin', 'colorTitle']) . ';}';
2021-12-03 17:10:53 +01:00
// TinyMCE
$colors = helper::colorVariants($this->getData(['admin', 'colorText']));
$css .= 'body:not(.editorWysiwyg), body:not(editorWysiwygComment),span .zwiico-help {color:' . $colors['normal'] . ';}';
$css .= 'table thead tr, table thead tr .zwiico-help{ background-color:' . $colors['normal'] . '; color:' . $colors['text'] . ';}';
$css .= 'table thead th { color:' . $colors['text'] . ';}';
2022-09-29 08:45:59 +02:00
$colors = helper::colorVariants($this->getData(['admin', 'backgroundColorButton']));
2023-02-02 21:00:03 +01:00
$css .= 'input[type="checkbox"]:checked + label::before,.speechBubble{background-color:' . $colors['normal'] . ';color:' . $colors['text'] . ';}';
2021-06-14 18:37:45 +02:00
$css .= '.speechBubble::before {border-color:' . $colors['normal'] . ' transparent transparent transparent;}';
2023-02-02 21:00:03 +01:00
$css .= '.button {background-color:' . $colors['normal'] . ';color:' . $colors['text'] . ';}.button:hover {background-color:' . $colors['darken'] . ';color:' . $colors['text'] . ';}.button:active {background-color:' . $colors['veryDarken'] . ';color:' . $colors['text'] . ';}';
2022-09-29 08:45:59 +02:00
$colors = helper::colorVariants($this->getData(['admin', 'backgroundColorButtonGrey']));
2023-02-02 21:00:03 +01:00
$css .= '.button.buttonGrey {background-color: ' . $colors['normal'] . ';color: ' . $colors['text'] . ';}.button.buttonGrey:hover {background-color:' . $colors['darken'] . ';color:' . $colors['text'] . ';}.button.buttonGrey:active {background-color:' . $colors['veryDarken'] . ';color:' . $colors['text'] . ';}';
2022-09-29 08:45:59 +02:00
$colors = helper::colorVariants($this->getData(['admin', 'backgroundColorButtonRed']));
2023-02-02 21:00:03 +01:00
$css .= '.button.buttonRed {background-color: ' . $colors['normal'] . ';color: ' . $colors['text'] . ';}.button.buttonRed:hover {background-color:' . $colors['darken'] . ';color:' . $colors['text'] . ';}.button.buttonRed:active {background-color:' . $colors['veryDarken'] . ';color:' . $colors['text'] . ';}';
2022-09-29 08:45:59 +02:00
$colors = helper::colorVariants($this->getData(['admin', 'backgroundColorButtonHelp']));
2023-02-02 21:00:03 +01:00
$css .= '.button.buttonHelp {background-color: ' . $colors['normal'] . ';color: ' . $colors['text'] . ';}.button.buttonHelp:hover {background-color:' . $colors['darken'] . ';color:' . $colors['text'] . ';}.button.buttonHelp:active {background-color:' . $colors['veryDarken'] . ';color:' . $colors['text'] . ';}';
2022-09-29 08:45:59 +02:00
$colors = helper::colorVariants($this->getData(['admin', 'backgroundColorButtonGreen']));
2023-02-02 21:00:03 +01:00
$css .= '.button.buttonGreen, button[type=submit] {background-color: ' . $colors['normal'] . ';color: ' . $colors['text'] . ';}.button.buttonGreen:hover, button[type=submit]:hover {background-color: ' . $colors['darken'] . ';color: ' . $colors['text'] . ';}.button.buttonGreen:active, button[type=submit]:active {background-color: ' . $colors['darken'] . ';color: ' . $colors['text'] . ';}';
2022-09-29 08:45:59 +02:00
$colors = helper::colorVariants($this->getData(['admin', 'backgroundBlockColor']));
$css .= '.buttonTab, .block {border: 1px solid ' . $this->getData(['admin', 'borderBlockColor']) . ';}.buttonTab, .block h4 {background-color: ' . $colors['normal'] . ';color:' . $colors['text'] . ';}';
$css .= 'table tr,input[type=email],input[type=text],input[type=password],select:not(#barSelectLanguage),select:not(#barSelectPage),textarea:not(.editorWysiwyg), textarea:not(.editorWysiwygComment),.inputFile{background-color: ' . $colors['normal'] . ';color:' . $colors['text'] . ';border: 1px solid ' . $this->getData(['admin', 'borderBlockColor']) . ';}';
2021-06-14 18:37:45 +02:00
// Bordure du contour TinyMCE
2022-09-29 08:45:59 +02:00
$css .= '.mce-tinymce{border: 1px solid ' . $this->getData(['admin', 'borderBlockColor']) . '!important;}';
2021-06-14 18:37:45 +02:00
// Enregistre la personnalisation
2022-09-29 08:45:59 +02:00
file_put_contents(self::DATA_DIR . 'admin.css', $css);
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
}
/**
* Auto-chargement des classes
* @param string $className Nom de la classe à charger
*/
2022-09-29 08:45:59 +02:00
public static function autoload($className)
{
2021-06-14 18:37:45 +02:00
$classPath = strtolower($className) . '/' . strtolower($className) . '.php';
// Module du coeur
2022-09-29 08:45:59 +02:00
if (is_readable('core/module/' . $classPath)) {
2021-06-14 18:37:45 +02:00
require 'core/module/' . $classPath;
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Module
2022-09-29 08:45:59 +02:00
elseif (is_readable(self::MODULE_DIR . $classPath)) {
2022-04-08 09:47:35 +02:00
require self::MODULE_DIR . $classPath;
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
// Librairie
2022-09-29 08:45:59 +02:00
elseif (is_readable('core/vendor/' . $classPath)) {
2021-06-14 18:37:45 +02:00
require 'core/vendor/' . $classPath;
2021-06-07 10:16:09 +02:00
}
}
/**
2021-06-14 18:37:45 +02:00
* Routage des modules
2021-06-07 10:16:09 +02:00
*/
2022-09-29 08:45:59 +02:00
public function router()
{
2021-06-14 18:37:45 +02:00
// Installation
2022-09-29 08:45:59 +02:00
if (
2021-06-14 18:37:45 +02:00
$this->getData(['user']) === []
2022-09-29 08:45:59 +02:00
and $this->getUrl(0) !== 'install'
2021-06-14 18:37:45 +02:00
) {
http_response_code(302);
header('Location:' . helper::baseUrl() . 'install');
exit();
}
// Journalisation
2023-02-02 21:00:03 +01:00
$dataLog = helper::dateUTF8('%Y %m %d', time()) . ' - ' . helper::dateUTF8('%H:%M', time());
2022-09-29 08:45:59 +02:00
$dataLog .= helper::getIp($this->getData(['config', 'connect', 'anonymousIp'])) . ';';
2021-06-14 18:37:45 +02:00
$dataLog .= $this->getUser('id') ? $this->getUser('id') . ';' : 'anonyme' . ';';
$dataLog .= $this->getUrl();
$dataLog .= PHP_EOL;
2022-09-29 08:45:59 +02:00
if ($this->getData(['config', 'connect', 'log'])) {
2021-06-14 18:37:45 +02:00
file_put_contents(self::DATA_DIR . 'journal.log', $dataLog, FILE_APPEND);
}
// Force la déconnexion des membres bannis ou d'une seconde session
if (
$this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
2022-09-29 08:45:59 +02:00
and ($this->getUser('group') === self::GROUP_BANNED
or ($_SESSION['csrf'] !== $this->getData(['user', $this->getUser('id'), 'accessCsrf'])
and $this->getData(['config', 'connect', 'autoDisconnect']) === true)
)
2021-06-14 18:37:45 +02:00
) {
$user = new user;
$user->logout();
}
// Mode maintenance
2022-09-29 08:45:59 +02:00
if (
2021-06-14 18:37:45 +02:00
$this->getData(['config', 'maintenance'])
2022-09-29 08:45:59 +02:00
and in_array($this->getUrl(0), ['maintenance', 'user']) === false
and $this->getUrl(1) !== 'login'
and ($this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
or ($this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
and $this->getUser('group') < self::GROUP_ADMIN
2021-06-14 18:37:45 +02:00
)
)
) {
// Déconnexion
$user = new user;
$user->logout();
// Redirection
http_response_code(302);
header('Location:' . helper::baseUrl() . 'maintenance');
exit();
}
// Check l'accès à la page
$access = null;
2022-09-29 08:45:59 +02:00
if ($this->getData(['page', $this->getUrl(0)]) !== null) {
if (
2021-06-14 18:37:45 +02:00
$this->getData(['page', $this->getUrl(0), 'group']) === self::GROUP_VISITOR
2022-09-29 08:45:59 +02:00
or ($this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
and $this->getUser('group') >= $this->getData(['page', $this->getUrl(0), 'group'])
2021-06-14 18:37:45 +02:00
)
) {
$access = true;
2022-09-29 08:45:59 +02:00
} else {
if ($this->getUrl(0) === $this->getData(['locale', 'homePageId'])) {
2021-06-14 18:37:45 +02:00
$access = 'login';
2022-09-29 08:45:59 +02:00
} else {
2021-06-14 18:37:45 +02:00
$access = false;
}
}
// Empêcher l'accès aux pages désactivées par URL directe
2023-02-02 21:00:03 +01:00
if (
($this->getData(['page', $this->getUrl(0), 'disable']) === true
2022-09-29 08:45:59 +02:00
and $this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
) or ($this->getData(['page', $this->getUrl(0), 'disable']) === true
and $this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
and $this->getUser('group') < self::GROUP_MODERATOR
2021-06-14 18:37:45 +02:00
)
2022-09-29 08:45:59 +02:00
) {
2021-06-14 18:37:45 +02:00
$access = false;
}
}
/**
* Contrôle si la page demandée est en édition ou accès à la gestion du site
* conditions de blocage :
* - Les deux utilisateurs qui accèdent à la même page sont différents
* - les URLS sont identiques
* - Une partie de l'URL fait partie de la liste de filtrage (édition d'un module etc..)
* - L'édition est ouverte depuis un temps dépassé, on considère que la page est restée ouverte et qu'elle ne sera pas validée
*/
2022-02-18 18:40:30 +01:00
$accessInfo['userName'] = '';
$accessInfo['pageId'] = '';
2022-09-29 08:45:59 +02:00
foreach ($this->getData(['user']) as $userId => $userIds) {
if (!is_null($this->getData(['user', $userId, 'accessUrl']))) {
$t = explode('/', $this->getData(['user', $userId, 'accessUrl']));
2022-10-04 10:15:39 +02:00
}
2022-09-29 08:45:59 +02:00
if (
$this->getUser('id') &&
2021-06-14 18:37:45 +02:00
$userId !== $this->getUser('id') &&
2022-09-29 08:45:59 +02:00
$this->getData(['user', $userId, 'accessUrl']) === $this->getUrl() &&
2023-02-02 21:00:03 +01:00
array_intersect($t, self::$accessList) &&
array_intersect($t, self::$accessExclude) !== false &&
2022-09-29 08:45:59 +02:00
time() < $this->getData(['user', $userId, 'accessTimer']) + self::ACCESS_TIMER
2021-06-14 18:37:45 +02:00
) {
2022-09-29 08:45:59 +02:00
$access = false;
2023-02-02 21:00:03 +01:00
$accessInfo['userName'] = $this->getData(['user', $userId, 'lastname']) . ' ' . $this->getData(['user', $userId, 'firstname']);
2022-09-29 08:45:59 +02:00
$accessInfo['pageId'] = end($t);
2021-06-14 18:37:45 +02:00
}
}
// Accès concurrent stocke la page visitée
2022-09-29 08:45:59 +02:00
if (
$this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
&& $this->getUser('id')
2022-09-29 08:45:59 +02:00
) {
$this->setData(['user', $this->getUser('id'), 'accessUrl', $this->getUrl()]);
$this->setData(['user', $this->getUser('id'), 'accessTimer', time()]);
2021-06-14 18:37:45 +02:00
}
// Breadcrumb
$title = $this->getData(['page', $this->getUrl(0), 'title']);
2022-09-29 08:45:59 +02:00
if (
!empty($this->getData(['page', $this->getUrl(0), 'parentPageId'])) &&
$this->getData(['page', $this->getUrl(0), 'breadCrumb'])
) {
$title = '<a href="' . helper::baseUrl() .
$this->getData(['page', $this->getUrl(0), 'parentPageId']) .
'">' .
ucfirst($this->getData(['page', $this->getData(['page', $this->getUrl(0), 'parentPageId']), 'title'])) .
'</a> &#8250; ' .
$this->getData(['page', $this->getUrl(0), 'title']);
2021-06-14 18:37:45 +02:00
}
// Importe la page simple sans module ou avec un module inexistant
2022-09-29 08:45:59 +02:00
if (
2021-06-14 18:37:45 +02:00
$this->getData(['page', $this->getUrl(0)]) !== null
2022-09-29 08:45:59 +02:00
and ($this->getData(['page', $this->getUrl(0), 'moduleId']) === ''
or !class_exists($this->getData(['page', $this->getUrl(0), 'moduleId']))
)
and $access
2021-06-14 18:37:45 +02:00
) {
$this->addOutput([
'title' => $title,
2023-02-02 21:00:03 +01:00
'content' => $this->getPage($this->getUrl(0), self::$i18nContent) .
// Concatène avec les paramètres avancés.
$this->getData(['page', $this->getUrl(0), 'css']) .
$this->getData(['page', $this->getUrl(0), 'js']),
2021-06-14 18:37:45 +02:00
'metaDescription' => $this->getData(['page', $this->getUrl(0), 'metaDescription']),
'metaTitle' => $this->getData(['page', $this->getUrl(0), 'metaTitle']),
'typeMenu' => $this->getData(['page', $this->getUrl(0), 'typeMenu']),
'iconUrl' => $this->getData(['page', $this->getUrl(0), 'iconUrl']),
'disable' => $this->getData(['page', $this->getUrl(0), 'disable']),
2022-09-29 08:45:59 +02:00
'contentRight' => $this->getData(['page', $this->getUrl(0), 'barRight'])
2023-02-02 21:00:03 +01:00
? $this->getPage($this->getData(['page', $this->getUrl(0), 'barRight']), self::$i18nContent) .
$this->getData(['page', $this->getData(['page', $this->getUrl(0), 'barRight']), 'css']) .
$this->getData(['page', $this->getData(['page', $this->getUrl(0), 'barRight']), 'js'])
: '',
'contentLeft' => $this->getData(['page', $this->getUrl(0), 'barLeft'])
? $this->getPage($this->getData(['page', $this->getUrl(0), 'barLeft']), self::$i18nContent) .
$this->getData(['page', $this->getData(['page', $this->getUrl(0), 'barLeft']), 'css']) .
$this->getData(['page', $this->getData(['page', $this->getUrl(0), 'barLeft']), 'js'])
: ''
2021-06-14 18:37:45 +02:00
]);
}
// Importe le module
else {
// Id du module, et valeurs en sortie de la page si il s'agit d'un module de page
2022-09-29 08:45:59 +02:00
if ($access and $this->getData(['page', $this->getUrl(0), 'moduleId'])) {
2021-06-14 18:37:45 +02:00
$moduleId = $this->getData(['page', $this->getUrl(0), 'moduleId']);
$this->addOutput([
'title' => $title,
// Meta description = 160 premiers caractères de l'article
2022-10-05 09:39:25 +02:00
'metaDescription' => $this->getData(['page', $this->getUrl(0), 'moduleId']) === 'blog' && !empty($this->getUrl(1)) && in_array($this->getUrl(1), $this->getData(['module']))
2023-02-02 21:00:03 +01:00
? strip_tags(substr($this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'content']), 0, 159))
: $this->getData(['page', $this->getUrl(0), 'metaDescription']),
2021-06-14 18:37:45 +02:00
'metaTitle' => $this->getData(['page', $this->getUrl(0), 'metaTitle']),
'typeMenu' => $this->getData(['page', $this->getUrl(0), 'typeMenu']),
'iconUrl' => $this->getData(['page', $this->getUrl(0), 'iconUrl']),
'disable' => $this->getData(['page', $this->getUrl(0), 'disable']),
2022-09-29 08:45:59 +02:00
'contentRight' => $this->getData(['page', $this->getUrl(0), 'barRight'])
2023-02-02 21:00:03 +01:00
? $this->getPage($this->getData(['page', $this->getUrl(0), 'barRight']), self::$i18nContent)
: '',
'contentLeft' => $this->getData(['page', $this->getUrl(0), 'barLeft'])
? $this->getPage($this->getData(['page', $this->getUrl(0), 'barLeft']), self::$i18nContent)
: ''
2021-06-14 18:37:45 +02:00
]);
2022-09-02 18:45:55 +02:00
$pageContent = $this->getPage($this->getUrl(0), self::$i18nContent);
2022-09-29 08:45:59 +02:00
} else {
2021-06-14 18:37:45 +02:00
$moduleId = $this->getUrl(0);
$pageContent = '';
}
2021-06-14 18:37:45 +02:00
// Check l'existence du module
2022-09-29 08:45:59 +02:00
if (class_exists($moduleId)) {
2021-06-14 18:37:45 +02:00
/** @var common $module */
$module = new $moduleId;
// Check l'existence de l'action
$action = '';
$ignore = true;
2022-10-04 10:18:45 +02:00
if (!is_null($this->getUrl(1))) {
foreach (explode('-', $this->getUrl(1)) as $actionPart) {
if ($ignore) {
2022-10-04 10:18:45 +02:00
$action .= $actionPart;
$ignore = false;
} else {
2022-10-04 10:18:45 +02:00
$action .= ucfirst($actionPart);
}
2021-06-14 18:37:45 +02:00
}
}
$action = array_key_exists($action, $module::$actions) ? $action : 'index';
2022-09-29 08:45:59 +02:00
if (array_key_exists($action, $module::$actions)) {
2021-06-14 18:37:45 +02:00
$module->$action();
$output = $module->output;
// Check le groupe de l'utilisateur
2022-09-29 08:45:59 +02:00
if (
($module::$actions[$action] === self::GROUP_VISITOR
or ($this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
and $this->getUser('group') >= $module::$actions[$action]
2021-06-14 18:37:45 +02:00
)
)
2022-09-29 08:45:59 +02:00
and $output['access'] === true
2021-06-14 18:37:45 +02:00
) {
// Enregistrement du contenu de la méthode POST lorsqu'une notice est présente
2022-09-29 08:45:59 +02:00
if (common::$inputNotices) {
foreach ($_POST as $postId => $postValue) {
if (is_array($postValue)) {
foreach ($postValue as $subPostId => $subPostValue) {
2021-06-14 18:37:45 +02:00
self::$inputBefore[$postId . '_' . $subPostId] = $subPostValue;
}
2022-09-29 08:45:59 +02:00
} else {
2021-06-14 18:37:45 +02:00
self::$inputBefore[$postId] = $postValue;
}
}
}
// Sinon traitement des données de sortie qui requiert qu'aucune notice ne soit présente
else {
// Notification
2022-09-29 08:45:59 +02:00
if ($output['notification']) {
if ($output['state'] === true) {
2021-06-14 18:37:45 +02:00
$notification = 'ZWII_NOTIFICATION_SUCCESS';
2022-09-29 08:45:59 +02:00
} elseif ($output['state'] === false) {
2021-06-14 18:37:45 +02:00
$notification = 'ZWII_NOTIFICATION_ERROR';
2022-09-29 08:45:59 +02:00
} else {
2021-06-14 18:37:45 +02:00
$notification = 'ZWII_NOTIFICATION_OTHER';
}
$_SESSION[$notification] = $output['notification'];
}
// Redirection
2022-09-29 08:45:59 +02:00
if ($output['redirect']) {
2021-06-14 18:37:45 +02:00
http_response_code(301);
header('Location:' . $output['redirect']);
exit();
}
}
// Données en sortie applicables même lorsqu'une notice est présente
// Affichage
2022-09-29 08:45:59 +02:00
if ($output['display']) {
2021-06-14 18:37:45 +02:00
$this->addOutput([
'display' => $output['display']
]);
}
// Contenu brut
2022-09-29 08:45:59 +02:00
if ($output['content']) {
2021-06-14 18:37:45 +02:00
$this->addOutput([
'content' => $output['content']
]);
}
// Contenu par vue
2022-09-29 08:45:59 +02:00
elseif ($output['view']) {
2021-06-14 18:37:45 +02:00
// Chemin en fonction d'un module du coeur ou d'un module
$modulePath = in_array($moduleId, self::$coreModuleIds) ? 'core/' : '';
// CSS
2022-04-08 09:47:35 +02:00
$stylePath = $modulePath . self::MODULE_DIR . $moduleId . '/view/' . $output['view'] . '/' . $output['view'] . '.css';
2022-09-29 08:45:59 +02:00
if (file_exists($stylePath)) {
2021-06-14 18:37:45 +02:00
$this->addOutput([
'style' => file_get_contents($stylePath)
]);
}
if ($output['style']) {
2022-09-29 08:45:59 +02:00
$this->addOutput([
'style' => $this->output['style'] . file_get_contents($output['style'])
]);
2021-06-14 18:37:45 +02:00
}
2022-03-08 08:54:43 +01:00
2021-06-14 18:37:45 +02:00
// JS
2022-04-08 09:47:35 +02:00
$scriptPath = $modulePath . self::MODULE_DIR . $moduleId . '/view/' . $output['view'] . '/' . $output['view'] . '.js.php';
2022-09-29 08:45:59 +02:00
if (file_exists($scriptPath)) {
2021-06-14 18:37:45 +02:00
ob_start();
include $scriptPath;
$this->addOutput([
'script' => ob_get_clean()
]);
}
// Vue
2022-04-08 09:47:35 +02:00
$viewPath = $modulePath . self::MODULE_DIR . $moduleId . '/view/' . $output['view'] . '/' . $output['view'] . '.php';
2022-09-29 08:45:59 +02:00
if (file_exists($viewPath)) {
2021-06-14 18:37:45 +02:00
ob_start();
include $viewPath;
$modpos = $this->getData(['page', $this->getUrl(0), 'modulePosition']);
if ($modpos === 'top') {
$this->addOutput([
2022-09-29 08:45:59 +02:00
'content' => ob_get_clean() . ($output['showPageContent'] ? $pageContent : '')
]);
} else if ($modpos === 'free') {
if (strstr($pageContent, '[MODULE]', true) === false) {
$begin = strstr($pageContent, '[]', true);
} else {
2021-06-14 18:37:45 +02:00
$begin = strstr($pageContent, '[MODULE]', true);
}
2022-09-29 08:45:59 +02:00
if (strstr($pageContent, '[MODULE]') === false) {
$end = strstr($pageContent, '[]');
} else {
2021-06-14 18:37:45 +02:00
$end = strstr($pageContent, '[MODULE]');
2022-09-29 08:45:59 +02:00
}
$cut = 8;
$end = substr($end, -strlen($end) + $cut);
2021-06-14 18:37:45 +02:00
$this->addOutput([
2022-09-29 08:45:59 +02:00
'content' => ($output['showPageContent'] ? $begin : '') . ob_get_clean() . ($output['showPageContent'] ? $end : '')
]);
} else {
2021-06-14 18:37:45 +02:00
$this->addOutput([
2022-09-29 08:45:59 +02:00
'content' => ($output['showPageContent'] ? $pageContent : '') . ob_get_clean()
]);
2021-06-14 18:37:45 +02:00
}
}
}
// Librairies
2022-09-29 08:45:59 +02:00
if ($output['vendor'] !== $this->output['vendor']) {
2021-06-14 18:37:45 +02:00
$this->addOutput([
'vendor' => array_merge($this->output['vendor'], $output['vendor'])
]);
}
2022-09-29 08:45:59 +02:00
if ($output['title'] !== null) {
2021-06-14 18:37:45 +02:00
$this->addOutput([
'title' => $output['title']
]);
}
// Affiche le bouton d'édition de la page dans la barre de membre
2022-09-29 08:45:59 +02:00
if ($output['showBarEditButton']) {
2021-06-14 18:37:45 +02:00
$this->addOutput([
'showBarEditButton' => $output['showBarEditButton']
]);
2021-06-07 10:16:09 +02:00
}
}
2021-06-14 18:37:45 +02:00
// Erreur 403
else {
$access = false;
2021-06-07 10:16:09 +02:00
}
}
}
}
2021-06-14 18:37:45 +02:00
// Erreurs
2022-09-29 08:45:59 +02:00
if ($access === 'login') {
2021-06-14 18:37:45 +02:00
http_response_code(302);
header('Location:' . helper::baseUrl() . 'user/login/');
exit();
2021-06-07 10:16:09 +02:00
}
2022-09-29 08:45:59 +02:00
if ($access === false) {
2021-06-14 18:37:45 +02:00
http_response_code(403);
if ($accessInfo['userName']) {
$this->addOutput([
'title' => 'Accès verrouillé',
2023-02-02 21:00:03 +01:00
'content' => template::speech(sprintf(helper::translate('La page %s est ouverte par l\'utilisateur %s'), $accessInfo['pageId'], $accessInfo['userName']))
2021-06-14 18:37:45 +02:00
]);
} else {
2022-09-29 08:45:59 +02:00
if (
$this->getData(['locale', 'page403']) !== 'none'
and $this->getData(['page', $this->getData(['locale', 'page403'])])
) {
header('Location:' . helper::baseUrl() . $this->getData(['locale', 'page403']));
2021-06-14 18:37:45 +02:00
} else {
2022-05-05 18:19:56 +02:00
$this->addOutput([
'title' => 'Accès interdit',
2023-01-17 16:32:16 +01:00
'content' => template::speech(helper::translate('Vous n\'êtes pas autorisé à consulter cette page (erreur 403)'))
2022-05-05 18:19:56 +02:00
]);
2021-06-14 18:37:45 +02:00
}
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
} elseif ($this->output['content'] === '') {
http_response_code(404);
2022-09-29 08:45:59 +02:00
if (
$this->getData(['locale', 'page404']) !== 'none'
and $this->getData(['page', $this->getData(['locale', 'page404'])])
) {
header('Location:' . helper::baseUrl() . $this->getData(['locale', 'page404']));
2021-06-14 18:37:45 +02:00
} else {
$this->addOutput([
'title' => 'Page indisponible',
2023-01-17 16:32:16 +01:00
'content' => template::speech(helper::translate('La page demandée n\'existe pas ou est introuvable (erreur 404)'))
2021-06-14 18:37:45 +02:00
]);
2021-06-07 10:16:09 +02:00
}
2021-06-14 18:37:45 +02:00
}
// Mise en forme des métas
2022-09-29 08:45:59 +02:00
if ($this->output['metaTitle'] === '') {
if ($this->output['title']) {
2021-06-14 18:37:45 +02:00
$this->addOutput([
'metaTitle' => strip_tags($this->output['title']) . ' - ' . $this->getData(['locale', 'title'])
]);
2022-09-29 08:45:59 +02:00
} else {
2021-06-14 18:37:45 +02:00
$this->addOutput([
'metaTitle' => $this->getData(['locale', 'title'])
]);
2021-06-07 10:16:09 +02:00
}
}
2022-09-29 08:45:59 +02:00
if ($this->output['metaDescription'] === '') {
2021-06-14 18:37:45 +02:00
$this->addOutput([
'metaDescription' => $this->getData(['locale', 'metaDescription'])
]);
2023-02-02 21:00:03 +01:00
}
;
2022-09-29 08:45:59 +02:00
switch ($this->output['display']) {
2023-02-02 21:00:03 +01:00
// Layout brut
2021-06-14 18:37:45 +02:00
case self::DISPLAY_RAW:
echo $this->output['content'];
break;
2023-02-02 21:00:03 +01:00
// Layout vide
2021-06-14 18:37:45 +02:00
case self::DISPLAY_LAYOUT_BLANK:
require 'core/layout/blank.php';
break;
2023-02-02 21:00:03 +01:00
// Affichage en JSON
2021-06-14 18:37:45 +02:00
case self::DISPLAY_JSON:
header('Content-Type: application/json');
echo json_encode($this->output['content']);
break;
2023-02-02 21:00:03 +01:00
// RSS feed
2021-06-14 18:37:45 +02:00
case self::DISPLAY_RSS:
header('Content-type: application/rss+xml; charset=UTF-8');
echo $this->output['content'];
break;
2023-02-02 21:00:03 +01:00
// Layout allégé
2021-06-14 18:37:45 +02:00
case self::DISPLAY_LAYOUT_LIGHT:
require 'core/layout/light.php';
break;
2023-02-02 21:00:03 +01:00
// Layout principal
2021-06-14 18:37:45 +02:00
case self::DISPLAY_LAYOUT_MAIN:
require 'core/layout/main.php';
break;
2021-06-07 10:16:09 +02:00
}
}
2023-02-02 21:00:03 +01:00
}