ZwiiCMS/core/core.php

1278 lines
36 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/
*/
2023-03-08 15:59:02 +01:00
/**
* Chargement des classes filles
* router : aiguillage des pages
*/
2023-03-09 08:07:34 +01:00
require_once('core/class/router.class.php');
2023-03-08 15:59:02 +01:00
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
2023-03-13 15:16:54 +01:00
const ZWII_VERSION = '12.3.02';
2023-02-07 08:36:19 +01:00
2023-03-12 10:17:31 +01:00
const ZWII_DATAVERSION = 12301;
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-16 11:52:40 +01:00
'inlineStyle' => [],
'inlineScript' => [],
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',
// 'tinycolorpicker', Désactivé par défaut
// 'tinymce', Désactivé par défaut
// 'codemirror', // Désactivé par défaut
'tippy',
'zwiico',
'imagemap',
'simplelightbox'
2021-06-07 10:16:09 +02:00
],
'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)',
2023-03-02 14:17:12 +01:00
'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' => [
2023-02-21 14:58:36 +01:00
'name' => 'Georgia',
2023-02-02 21:00:03 +01:00
'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
}
2023-03-02 21:12:45 +01:00
// Installation fraîche, initialisation des modules
if ($this->user === []) {
foreach ($this->dataFiles as $stageId => $item) {
$folder = $this->dataPath($stageId, self::$i18nContent);
if (
file_exists($folder . $stageId . '.json') === false
) {
$this->initData($stageId, self::$i18nContent);
common::$coreNotices[] = $stageId;
}
2022-05-05 18:19:56 +02:00
}
}
// Langue de l'administration
2023-02-19 17:42:02 +01:00
if ($this->getData(['user']) !== []) {
// Langue sélectionnée dans le compte, la langue du cookie sinon celle du compte ouvert
2023-02-21 14:58:36 +01:00
self::$i18nUI = $this->getData(['user', $this->getUser('id'), 'language']) ? $this->getData(['user', $this->getUser('id'), 'language']) : $this->getInput('ZWII_UI');
// Validation de la langue
self::$i18nUI = (empty(self::$i18nUI) || is_null(self::$i18nUI))
2023-02-15 18:17:24 +01:00
&& !file_exists(self::I18N_DIR . self::$i18nUI . '.json')
? 'fr_FR'
: self::$i18nUI;
2023-02-20 15:22:58 +01:00
} else {
// Installation
2023-02-21 14:58:36 +01:00
self::$i18nUI = $this->getInput('ZWII_UI') ? $this->getInput('ZWII_UI') : 'fr_FR';
}
2023-02-21 15:16:41 +01:00
2022-11-07 17:44:38 +01:00
// Stocker le cookie de langue pour l'éditeur de texte
2023-03-02 14:47:41 +01:00
setcookie('ZWII_UI', self::$i18nUI, time() + 3600, helper::baseUrl(false, false), '', 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])) {
2023-02-19 18:01:28 +01:00
common::$inputNotices[$firstKey . '_' . $secondKey] = helper::translate('Obligatoire');
2021-06-07 10:16:09 +02:00
}
}
// La clef est une chaine
2022-09-29 08:45:59 +02:00
elseif (empty($this->input['_POST'][$key])) {
2023-02-19 18:01:28 +01:00
common::$inputNotices[$key] = helper::translate('Obligatoire');
2021-06-07 10:16:09 +02:00
}
}
/**
* 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));
case 'image/png':
return (imagepng($virtual_image, $dest));
case 'image/gif':
return (imagegif($virtual_image, $dest));
case 'webp':
2022-10-03 18:17:02 +02:00
$source_image = imagecreatefromwebp($src);
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
*/
2023-02-23 16:02:06 +01:00
public function sendMail($to, $subject, $content, $replyTo = null, $from = '')
2022-09-29 08:45:59 +02:00
{
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->setLanguage(substr(self::$i18nUI, 0, 2), 'core/class/phpmailer/i18n/');
2021-06-07 10:16:09 +02:00
// Mail
2022-09-29 08:45:59 +02:00
try {
2023-02-25 22:17:17 +01:00
// Paramètres SMTP perso
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']);
2021-06-07 10:16:09 +02:00
}
2023-02-25 22:17:17 +01:00
}
// Expéditeur
$host = str_replace('www.', '', $_SERVER['HTTP_HOST']);
$from = $from ? $from : 'no-reply@' . $host;
$mail->setFrom($from, $this->getData(['locale', 'title']));
// répondre à
if (is_null($replyTo)) {
$mail->addReplyTo($from, $this->getData(['locale', 'title']));
2021-06-07 10:16:09 +02:00
} else {
2023-02-25 22:17:17 +01:00
$mail->addReplyTo($replyTo);
2021-06-07 10:16:09 +02:00
}
2023-02-25 22:17:17 +01:00
// Destinataires
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();
}
2021-06-14 18:37:45 +02:00
}
2021-06-07 10:16:09 +02:00