ZwiiCMS/module/blog/blog.php

903 lines
34 KiB
PHP
Raw Permalink Normal View History

2018-04-02 08:29:19 +02:00
<?php
/**
2021-02-17 13:51:12 +01:00
* This file is part of Zwii.
2018-04-02 08:29:19 +02:00
* 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
2021-02-17 13:49:58 +01:00
* @author Frédéric Tempez <frederic.tempez@outlook.com>
2024-01-14 19:31:28 +01:00
* @copyright Copyright (C) 2018-2024, Frédéric Tempez
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
* @link http://zwiicms.fr/
2018-04-02 08:29:19 +02:00
*/
class blog extends common
{
2018-04-02 08:29:19 +02:00
2024-03-21 13:26:42 +01:00
const VERSION = '7.6';
const REALNAME = 'Blog';
2022-09-02 18:07:53 +02:00
const DELETE = true;
const UPDATE = '0.0';
2021-04-06 11:20:04 +02:00
const DATADIRECTORY = ''; // Contenu localisé inclus par défaut (page.json et module.json)
const EDIT_OWNER = 'owner';
const EDIT_GROUP = 'group';
2020-10-14 11:07:38 +02:00
const EDIT_ALL = 'all';
2020-07-12 18:05:33 +02:00
2018-04-02 08:29:19 +02:00
public static $actions = [
2023-07-05 18:04:42 +02:00
'add' => self::GROUP_EDITOR,
'comment' => self::GROUP_EDITOR,
'commentApprove' => self::GROUP_EDITOR,
'commentDelete' => self::GROUP_EDITOR,
'commentDeleteAll' => self::GROUP_EDITOR,
'config' => self::GROUP_EDITOR,
'option' => self::GROUP_EDITOR,
'delete' => self::GROUP_EDITOR,
'edit' => self::GROUP_EDITOR,
2020-11-15 18:39:03 +01:00
'index' => self::GROUP_VISITOR,
2020-11-20 19:52:44 +01:00
'rss' => self::GROUP_VISITOR
2018-04-02 08:29:19 +02:00
];
public static $articles = [];
2020-07-02 19:48:47 +02:00
// Signature de l'article
public static $articleSignature = '';
// Signature du commentaire
public static $editCommentSignature = '';
2018-04-02 08:29:19 +02:00
public static $comments = [];
2020-10-07 19:06:40 +02:00
public static $nbCommentsApproved = 0;
2018-04-02 08:29:19 +02:00
2020-07-02 19:48:47 +02:00
public static $commentsDelete;
// Signatures des commentaires déjà saisis
public static $commentsSignature = [];
2018-04-02 08:29:19 +02:00
public static $pages;
public static $states = [
false => 'Brouillon',
true => 'Publié'
];
public static $pictureSizes = [
'20' => 'Très petite',
'30' => 'Petite',
'40' => 'Grande',
'50' => 'Très Grande',
'100' => 'Pleine largeur',
];
public static $picturePositions = [
2020-06-03 09:07:00 +02:00
'left' => 'À gauche',
'right' => 'À droite ',
];
2021-04-05 08:59:24 +02:00
// Nombre d'objets par page
2022-03-15 09:16:42 +01:00
public static $ArticlesListed = [
2022-03-15 15:39:44 +01:00
1 => '1 article',
2 => '2 articles',
2021-04-05 08:59:24 +02:00
4 => '4 articles',
2022-03-15 15:39:44 +01:00
6 => '6 articles',
2021-04-05 08:59:24 +02:00
8 => '8 articles',
2022-03-15 15:39:44 +01:00
10 => '10 articles',
12 => '12 articles'
2021-04-05 08:59:24 +02:00
];
2020-07-02 19:48:47 +02:00
//Paramètre longueur maximale des commentaires en nb de caractères
2023-03-24 16:56:04 +01:00
public static $commentsLength = [
2022-03-15 09:16:42 +01:00
100 => '100 signes',
250 => '250 signes',
500 => '500 signes',
750 => '750 signes'
];
2022-03-15 15:39:44 +01:00
public static $articlesLenght = [
2023-03-24 16:56:04 +01:00
0 => 'Articles complets',
600 => '600 signes',
800 => '800 signes',
1000 => '1000 signes',
1200 => '1200 signes',
1400 => '1400 signes',
1600 => '1600 signes',
1800 => '1800 signes',
];
public static $articlesLayout = [
false => 'Classique',
true => 'Moderne',
2020-07-02 19:48:47 +02:00
];
2020-07-16 18:50:57 +02:00
// Permissions d'un article
public static $articleConsent = [
self::EDIT_ALL => 'Tous les groupes',
self::EDIT_GROUP => 'Groupe du propriétaire',
self::EDIT_OWNER => 'Propriétaire'
2020-07-12 18:05:33 +02:00
];
2023-02-10 17:19:38 +01:00
public static $dateFormats = [
'%d %B %Y' => 'DD MMMM YYYY',
'%d/%m/%Y' => 'DD/MM/YYYY',
'%m/%d/%Y' => 'MM/DD/YYYY',
2023-02-10 17:19:38 +01:00
'%d/%m/%y' => 'DD/MM/YY',
'%m/%d/%y' => 'MM/DD/YY',
'%d-%m-%Y' => 'DD-MM-YYYY',
'%m-%d-%Y' => 'MM-DD-YYYY',
2023-02-10 17:19:38 +01:00
'%d-%m-%y' => 'DD-MM-YY',
'%m-%d-%y' => 'MM-DD-YY',
2023-02-10 17:19:38 +01:00
];
public static $timeFormats = [
'%H:%M' => 'HH:MM',
'%I:%M %p' => "HH:MM tt",
2023-02-10 17:19:38 +01:00
];
public static $timeFormat = '';
public static $dateFormat = '';
2022-02-18 12:43:48 +01:00
// Nombre d'articles dans la page de config:
public static $itemsperPage = 8;
2018-04-02 08:29:19 +02:00
public static $users = [];
2021-04-05 08:59:24 +02:00
/**
* Mise à jour du module
* Appelée par les fonctions index et config
*/
private function update()
{
2022-03-16 19:02:07 +01:00
// Initialisation
if (is_null($this->getData(['module', $this->getUrl(0), 'config', 'versionData']))) {
$this->setData(['module', $this->getUrl(0), 'config', 'versionData', '0.0']);
2022-03-16 19:02:07 +01:00
}
2021-04-05 08:59:24 +02:00
// Version 5.0
if (version_compare($this->getData(['module', $this->getUrl(0), 'config', 'versionData']), '5.0', '<')) {
2021-04-05 08:59:24 +02:00
$this->setData(['module', $this->getUrl(0), 'config', 'itemsperPage', 6]);
$this->setData(['module', $this->getUrl(0), 'config', 'versionData', '5.0']);
2021-04-05 08:59:24 +02:00
}
2022-03-16 19:02:07 +01:00
// Version 6.0
if (version_compare($this->getData(['module', $this->getUrl(0), 'config', 'versionData']), '6.0', '<')) {
$this->setData(['module', $this->getUrl(0), 'config', 'feeds', false]);
$this->setData(['module', $this->getUrl(0), 'config', 'feedsLabel', '']);
2022-03-16 19:02:07 +01:00
$this->setData(['module', $this->getUrl(0), 'config', 'articlesLenght', 0]);
$this->setData(['module', $this->getUrl(0), 'config', 'versionData', '6.0']);
2022-03-16 19:02:07 +01:00
}
// Version 6.5
if (version_compare($this->getData(['module', $this->getUrl(0), 'config', 'versionData']), '6.5', '<')) {
$this->setData(['module', $this->getUrl(0), 'config', 'dateFormat', '%d %B %Y']);
$this->setData(['module', $this->getUrl(0), 'config', 'timeFormat', '%H:%M']);
$this->setData(['module', $this->getUrl(0), 'config', 'versionData', '6.5']);
}
2023-12-20 13:00:50 +01:00
// Version 7.4
if (version_compare($this->getData(['module', $this->getUrl(0), 'config', 'versionData']), '7.4', '<')) {
$this->setData(['module', $this->getUrl(0), 'config', 'buttonBack', true]);
$this->setData(['module', $this->getUrl(0), 'config', 'versionData', '7.4']);
}
2021-04-05 08:59:24 +02:00
}
/**
2020-11-18 21:45:36 +01:00
* Flux RSS
*/
public function rss()
{
2020-11-18 21:45:36 +01:00
// Inclure les classes
include_once 'module/blog/vendor/FeedWriter/Item.php';
include_once 'module/blog/vendor/FeedWriter/Feed.php';
include_once 'module/blog/vendor/FeedWriter/RSS2.php';
include_once 'module/blog/vendor/FeedWriter/InvalidOperationException.php';
2020-11-18 21:45:36 +01:00
date_default_timezone_set('UTC');
$feeds = new \FeedWriter\RSS2();
// En-tête
$feeds->setTitle($this->getData(['page', $this->getUrl(0), 'title']));
2020-11-18 21:45:36 +01:00
$feeds->setLink(helper::baseUrl() . $this->getUrl(0));
$feeds->setDescription($this->getData(['page', $this->getUrl(0), 'metaDescription']));
2020-11-18 21:45:36 +01:00
$feeds->setChannelElement('language', 'fr-FR');
$feeds->setDate(date('r', time()));
2020-11-18 21:45:36 +01:00
$feeds->addGenerator();
// Corps des articles
$articleIdsPublishedOns = helper::arrayColumn($this->getData(['module', $this->getUrl(0), 'posts']), 'publishedOn', 'SORT_DESC');
$articleIdsStates = helper::arrayColumn($this->getData(['module', $this->getUrl(0), 'posts']), 'state', 'SORT_DESC');
foreach ($articleIdsPublishedOns as $articleId => $articlePublishedOn) {
if ($articlePublishedOn <= time() and $articleIdsStates[$articleId]) {
2020-11-18 21:45:36 +01:00
// Miniature
2022-10-19 14:11:46 +02:00
$parts = pathinfo($this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'picture']));
$thumb = 'mini_' . $parts['basename'];
2020-11-18 21:45:36 +01:00
// Créer les articles du flux
$newsArticle = $feeds->createNewItem();
2020-11-20 13:44:32 +01:00
// Signature de l'article
$author = $this->signature($this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'userId']));
2020-11-18 21:45:36 +01:00
$newsArticle->addElementArray([
'title' => $this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'title']),
'link' => helper::baseUrl() . $this->getUrl(0) . '/' . $articleId,
'description' => '<img src="' . helper::baseUrl(false) . self::FILE_DIR . 'thumb/' . $thumb
. '" alt="' . $this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'title'])
. '" title="' . $this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'title'])
. '" />' .
$this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'content']),
2020-11-18 21:45:36 +01:00
]);
$newsArticle->setAuthor($author, 'no@mail.com');
$newsArticle->setId(helper::baseUrl() . $this->getUrl(0) . '/' . $articleId);
2020-11-20 17:32:38 +01:00
$newsArticle->setDate(date('r', $this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'publishedOn'])));
if (file_exists($this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'picture']))) {
$imageData = getimagesize(helper::baseUrl(false) . self::FILE_DIR . 'thumb/' . $thumb);
$newsArticle->addEnclosure(
helper::baseUrl(false) . self::FILE_DIR . 'thumb/' . $thumb,
$imageData[0] * $imageData[1],
$imageData['mime']
2021-05-26 19:14:53 +02:00
);
}
2020-11-18 21:45:36 +01:00
$feeds->addItem($newsArticle);
}
}
// Valeurs en sortie
$this->addOutput([
'display' => self::DISPLAY_RSS,
'content' => $feeds->generateFeed(),
'view' => 'rss'
]);
}
2018-04-02 08:29:19 +02:00
/**
* Édition
*/
public function add()
{
2018-04-02 08:29:19 +02:00
// Soumission du formulaire
if (
2023-06-30 09:09:39 +02:00
$this->getUser('permission', __CLASS__, __FUNCTION__) === true &&
$this->isPost()
) {
2020-07-02 19:48:47 +02:00
// Modification de l'userId
if ($this->getUser('group') === self::GROUP_ADMIN) {
2020-07-02 19:48:47 +02:00
$newuserid = $this->getInput('blogAddUserId', helper::FILTER_STRING_SHORT, true);
} else {
2020-07-02 19:48:47 +02:00
$newuserid = $this->getUser('id');
}
2018-04-02 08:29:19 +02:00
// Incrémente l'id de l'article
$articleId = helper::increment($this->getInput('blogAddPermalink'), $this->getData(['page']));
2018-04-02 08:29:19 +02:00
$articleId = helper::increment($articleId, (array) $this->getData(['module', $this->getUrl(0)]));
$articleId = helper::increment($articleId, array_keys(self::$actions));
// Crée l'article
$this->setData([
'module',
$this->getUrl(0),
2020-11-18 21:45:14 +01:00
'posts',
$articleId,
[
'content' => $this->getInput('blogAddContent', null),
'picture' => $this->getInput('blogAddPicture', helper::FILTER_STRING_SHORT),
'hidePicture' => $this->getInput('blogAddHidePicture', helper::FILTER_BOOLEAN),
'pictureSize' => $this->getInput('blogAddPictureSize', helper::FILTER_STRING_SHORT),
'picturePosition' => $this->getInput('blogAddPicturePosition', helper::FILTER_STRING_SHORT),
'publishedOn' => $this->getInput('blogAddPublishedOn', helper::FILTER_DATETIME, true),
'state' => $this->getInput('blogAddState', helper::FILTER_BOOLEAN),
'title' => $this->getInput('blogAddTitle', helper::FILTER_STRING_SHORT, true),
'userId' => $newuserid,
'editConsent' => $this->getInput('blogAddConsent') === self::EDIT_GROUP ? $this->getUser('group') : $this->getInput('blogAddConsent'),
'commentMaxlength' => $this->getInput('blogAddCommentMaxlength'),
'commentApproved' => $this->getInput('blogAddCommentApproved', helper::FILTER_BOOLEAN),
'commentClose' => $this->getInput('blogAddCommentClose', helper::FILTER_BOOLEAN),
'commentNotification' => $this->getInput('blogAddCommentNotification', helper::FILTER_BOOLEAN),
2021-04-05 08:59:24 +02:00
'commentGroupNotification' => $this->getInput('blogAddCommentGroupNotification', helper::FILTER_INT),
'comment' => []
]
]);
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/config',
2023-01-23 15:44:11 +01:00
'notification' => helper::translate('Nouvel article créé'),
2018-04-02 08:29:19 +02:00
'state' => true
]);
}
// Liste des utilisateurs
self::$users = helper::arrayColumn($this->getData(['user']), 'firstname');
2018-04-02 08:29:19 +02:00
ksort(self::$users);
foreach (self::$users as $userId => &$userFirstname) {
2018-04-02 08:29:19 +02:00
$userFirstname = $userFirstname . ' ' . $this->getData(['user', $userId, 'lastname']);
}
unset($userFirstname);
// Valeurs en sortie
$this->addOutput([
2023-01-23 15:44:11 +01:00
'title' => helper::translate('Rédiger un article'),
2018-04-02 08:29:19 +02:00
'vendor' => [
'flatpickr',
2022-03-15 09:16:42 +01:00
'tinymce',
'furl'
2018-04-02 08:29:19 +02:00
],
'view' => 'add'
]);
}
/**
* Liste des commentaires
*/
public function comment()
{
if (
$this->getUser('permission', __CLASS__, __FUNCTION__) !== true
) {
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
} else {
$comments = $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment']);
self::$commentsDelete = template::button('blogCommentDeleteAll', [
'class' => 'blogCommentDeleteAll buttonRed',
'href' => helper::baseUrl() . $this->getUrl(0) . '/commentDeleteAll/' . $this->getUrl(2),
'value' => 'Tout effacer'
]);
// Ids des commentaires par ordre de création
$commentIds = array_keys(helper::arrayColumn($comments, 'createdOn', 'SORT_DESC'));
// Pagination
$pagination = helper::pagination($commentIds, $this->getUrl(), $this->getData(['module', $this->getUrl(0), 'config', 'itemsperPage']));
// Liste des pages
self::$pages = $pagination['pages'];
// Commentaires en fonction de la pagination
for ($i = $pagination['first']; $i < $pagination['last']; $i++) {
// Met en forme le tableau
$comment = $comments[$commentIds[$i]];
// Bouton d'approbation
$buttonApproval = '';
// Compatibilité avec les commentaires des versions précédentes, les valider
$comment['approval'] = array_key_exists('approval', $comment) === false ? true : $comment['approval'];
if ($this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'commentApproved']) === true) {
$buttonApproval = template::button('blogCommentApproved' . $commentIds[$i], [
'class' => $comment['approval'] === true ? 'blogCommentRejected buttonGreen' : 'blogCommentApproved buttonRed',
'href' => helper::baseUrl() . $this->getUrl(0) . '/commentApprove/' . $this->getUrl(2) . '/' . $commentIds[$i],
'value' => $comment['approval'] === true ? 'A' : 'R',
'help' => $comment['approval'] === true ? 'Approuvé' : 'Rejeté',
]);
}
self::$dateFormat = $this->getData(['module', $this->getUrl(0), 'config', 'dateFormat']);
self::$timeFormat = $this->getData(['module', $this->getUrl(0), 'config', 'timeFormat']);
self::$comments[] = [
2024-01-26 16:34:01 +01:00
helper::dateUTF8(self::$dateFormat, $comment['createdOn'], self::$i18nUI) . ' - ' . helper::dateUTF8(self::$timeFormat, $comment['createdOn'], self::$i18nUI),
$comment['content'],
$comment['userId'] ? $this->getData(['user', $comment['userId'], 'firstname']) . ' ' . $this->getData(['user', $comment['userId'], 'lastname']) : $comment['author'],
$buttonApproval,
template::button('blogCommentDelete' . $commentIds[$i], [
'class' => 'blogCommentDelete buttonRed',
'href' => helper::baseUrl() . $this->getUrl(0) . '/commentDelete/' . $this->getUrl(2) . '/' . $commentIds[$i],
'value' => template::ico('trash')
])
];
2020-07-16 12:06:51 +02:00
}
// Valeurs en sortie
$this->addOutput([
'title' => helper::translate('Gestion des commentaires'),
'view' => 'comment'
]);
2018-04-02 08:29:19 +02:00
}
}
/**
* Suppression de commentaire
*/
public function commentDelete()
{
2018-04-02 08:29:19 +02:00
// Le commentaire n'existe pas
if (
$this->getUser('permission', __CLASS__, __FUNCTION__) !== true ||
$this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment', $this->getUrl(3)]) === null
) {
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
}
// Suppression
else {
2020-11-17 08:52:32 +01:00
$this->deleteData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment', $this->getUrl(3)]);
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
2020-07-02 19:35:51 +02:00
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/comment/' . $this->getUrl(2),
2023-01-23 15:44:11 +01:00
'notification' => helper::translate('Commentaire supprimé'),
2020-07-02 19:35:51 +02:00
'state' => true
]);
}
}
2020-07-02 19:48:47 +02:00
/**
2023-02-23 20:19:54 +01:00
* Suppression de tous les commentairess de l'article $this->getUrl(2)
2020-07-02 19:48:47 +02:00
*/
public function commentDeleteAll()
{
if (
$this->getUser('permission', __CLASS__, __FUNCTION__) !== true
) {
2020-07-02 19:48:47 +02:00
// Valeurs en sortie
$this->addOutput([
'access' => false
2020-07-02 19:48:47 +02:00
]);
}
// Suppression
else {
$this->setData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment', []]);
2020-07-02 19:48:47 +02:00
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/comment',
2023-01-23 15:44:11 +01:00
'notification' => helper::translate('Commentaires supprimés'),
2020-07-02 19:48:47 +02:00
'state' => true
]);
}
}
2020-07-16 12:06:51 +02:00
/**
* Approbation oou désapprobation de commentaire
*/
public function commentApprove()
{
2020-07-16 12:06:51 +02:00
// Le commentaire n'existe pas
if (
$this->getUser('permission', __CLASS__, __FUNCTION__) !== true ||
$this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment', $this->getUrl(3)]) === null
) {
2020-07-16 12:06:51 +02:00
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
}
// Inversion du statut
else {
$approved = !$this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment', $this->getUrl(3), 'approval']);
$this->setData([
'module', $this->getUrl(0),
'posts', $this->getUrl(2),
'comment', $this->getUrl(3),
[
'author' => $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment', $this->getUrl(3), 'author']),
'content' => $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment', $this->getUrl(3), 'content']),
'createdOn' => $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment', $this->getUrl(3), 'createdOn']),
'userId' => $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment', $this->getUrl(3), 'userId']),
'approval' => $approved
]
]);
2020-07-16 12:06:51 +02:00
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/comment/' . $this->getUrl(2),
'notification' => $approved ? helper::translate('Commentaire approuvé') : helper::translate('Commentaire rejeté'),
2020-10-28 06:29:49 +01:00
'state' => $approved
2020-07-16 12:06:51 +02:00
]);
}
}
2018-04-02 08:29:19 +02:00
/**
* Configuration
*/
public function config()
{
2022-02-18 12:43:48 +01:00
2023-02-23 22:14:26 +01:00
// Mise à jour des données de module
$this->update();
2022-02-18 12:43:48 +01:00
// Ids des articles par ordre de publication
$articleIds = array_keys(helper::arrayColumn($this->getData(['module', $this->getUrl(0), 'posts']), 'publishedOn', 'SORT_DESC'));
2022-02-18 12:43:48 +01:00
// Gestion des droits d'accès
$filterData = [];
2022-02-18 12:43:48 +01:00
foreach ($articleIds as $key => $value) {
if (
( // Propriétaire
$this->getData(['module', $this->getUrl(0), 'posts', $value, 'editConsent']) === self::EDIT_OWNER
and ($this->getData(['module', $this->getUrl(0), 'posts', $value, 'userId']) === $this->getUser('id')
or $this->getUser('group') === self::GROUP_ADMIN)
2022-02-18 12:43:48 +01:00
)
or (
2022-02-18 12:43:48 +01:00
// Groupe
$this->getData(['module', $this->getUrl(0), 'posts', $value, 'editConsent']) !== self::EDIT_OWNER
and $this->getUser('group') >= $this->getData(['module', $this->getUrl(0), 'posts', $value, 'editConsent'])
2022-02-18 12:43:48 +01:00
)
or (
2022-02-18 12:43:48 +01:00
// Tout le monde
$this->getData(['module', $this->getUrl(0), 'posts', $value, 'editConsent']) === self::EDIT_ALL
2022-02-18 12:43:48 +01:00
)
) {
$filterData[] = $value;
}
}
$articleIds = $filterData;
// Pagination
$pagination = helper::pagination($articleIds, $this->getUrl(), self::$itemsperPage);
2022-02-18 12:43:48 +01:00
// Liste des pages
self::$pages = $pagination['pages'];
2023-02-11 10:02:44 +01:00
// Format de temps
self::$dateFormat = $this->getData(['module', $this->getUrl(0), 'config', 'dateFormat']);
self::$timeFormat = $this->getData(['module', $this->getUrl(0), 'config', 'timeFormat']);
2022-02-18 12:43:48 +01:00
// Articles en fonction de la pagination
for ($i = $pagination['first']; $i < $pagination['last']; $i++) {
2022-02-18 12:43:48 +01:00
// Nombre de commentaires à approuver et approuvés
$approvals = helper::arrayColumn($this->getData(['module', $this->getUrl(0), 'posts', $articleIds[$i], 'comment']), 'approval', 'SORT_DESC');
if (is_array($approvals)) {
2022-02-18 12:43:48 +01:00
$a = array_values($approvals);
$toApprove = count(array_keys($a, false));
$approved = count(array_keys($a, true));
2022-02-18 12:43:48 +01:00
} else {
$toApprove = 0;
$approved = count($this->getData(['module', $this->getUrl(0), 'posts', $articleIds[$i], 'comment']));
2022-02-18 12:43:48 +01:00
}
// Met en forme le tableau
self::$articles[] = [
'<a href="' . helper::baseurl() . $this->getUrl(0) . '/' . $articleIds[$i] . '" target="_blank" >' .
$this->getData(['module', $this->getUrl(0), 'posts', $articleIds[$i], 'title']) .
'</a>',
2024-01-26 16:34:01 +01:00
helper::dateUTF8(self::$dateFormat, $this->getData(['module', $this->getUrl(0), 'posts', $articleIds[$i], 'publishedOn']), self::$i18nUI) . ' - ' . helper::dateUTF8(self::$timeFormat, $this->getData(['module', $this->getUrl(0), 'posts', $articleIds[$i], 'publishedOn']), self::$i18nUI),
2022-02-18 12:43:48 +01:00
self::$states[$this->getData(['module', $this->getUrl(0), 'posts', $articleIds[$i], 'state'])],
// Bouton pour afficher les commentaires de l'article
template::button('blogConfigComment' . $articleIds[$i], [
'class' => ($toApprove || $approved) > 0 ? '' : 'buttonGrey',
'href' => ($toApprove || $approved) > 0 ? helper::baseUrl() . $this->getUrl(0) . '/comment/' . $articleIds[$i] : '',
2022-02-18 12:43:48 +01:00
'value' => $toApprove > 0 ? $toApprove . '/' . $approved : $approved,
'help' => ($toApprove || $approved) > 0 ? 'Éditer / Approuver un commentaire' : ''
2022-02-18 12:43:48 +01:00
]),
template::button('blogConfigEdit' . $articleIds[$i], [
2023-06-19 19:46:00 +02:00
'href' => helper::baseUrl() . $this->getUrl(0) . '/edit/' . $articleIds[$i],
2023-01-23 15:44:11 +01:00
'value' => template::ico('pencil')
2022-02-18 12:43:48 +01:00
]),
template::button('blogConfigDelete' . $articleIds[$i], [
'class' => 'blogConfigDelete buttonRed',
2023-06-19 19:46:00 +02:00
'href' => helper::baseUrl() . $this->getUrl(0) . '/delete/' . $articleIds[$i],
2023-01-23 15:44:11 +01:00
'value' => template::ico('trash')
2022-02-18 12:43:48 +01:00
])
];
}
// Valeurs en sortie
$this->addOutput([
2023-01-23 15:44:11 +01:00
'title' => helper::translate('Configuration du module'),
2022-02-18 12:43:48 +01:00
'view' => 'config'
]);
}
public function option()
{
2023-02-23 22:14:26 +01:00
2020-11-16 18:39:32 +01:00
// Soumission du formulaire
if (
2023-06-30 09:09:39 +02:00
$this->getUser('permission', __CLASS__, __FUNCTION__) === true &&
$this->isPost()
) {
$this->setData([
'module', $this->getUrl(0),
'config',
[
'feeds' => $this->getInput('blogOptionShowFeeds', helper::FILTER_BOOLEAN),
'feedsLabel' => $this->getInput('blogOptionFeedslabel', helper::FILTER_STRING_SHORT),
2023-03-24 16:56:04 +01:00
'layout' => $this->getInput('blogOptionArticlesLayout', helper::FILTER_BOOLEAN),
2023-06-12 11:45:03 +02:00
'articlesLenght' => $this->getInput('blogOptionArticlesLayout', helper::FILTER_BOOLEAN) === false ? $this->getInput('blogOptionArticlesLenght', helper::FILTER_INT) : 0,
'itemsperPage' => $this->getInput('blogOptionItemsperPage', helper::FILTER_INT, true),
'dateFormat' => $this->getInput('blogOptionDateFormat'),
'timeFormat' => $this->getInput('blogOptionTimeFormat'),
2023-12-20 13:00:50 +01:00
'buttonBack' => $this->getInput('newsOptionButtonBack'),
2023-03-24 16:56:04 +01:00
'versionData' => $this->getData(['module', $this->getUrl(0), 'config', 'versionData']),
]
]);
2020-11-16 18:39:32 +01:00
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/config',
2023-01-23 15:44:11 +01:00
'notification' => helper::translate('Modifications enregistrées'),
2020-11-16 18:39:32 +01:00
'state' => true
]);
2022-10-10 09:48:00 +02:00
}
// Valeurs en sortie
$this->addOutput([
2023-02-13 15:06:43 +01:00
'title' => helper::translate('Options de configuration'),
'view' => 'option'
]);
2018-04-02 08:29:19 +02:00
}
2022-02-18 12:43:48 +01:00
2018-04-02 08:29:19 +02:00
/**
* Suppression
*/
public function delete()
{
if (
$this->getUser('permission', __CLASS__, __FUNCTION__) !== true ||
$this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2)]) === null
) {
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
2020-06-03 09:07:00 +02:00
}
2018-04-02 08:29:19 +02:00
// Suppression
else {
2020-11-17 08:52:32 +01:00
$this->deleteData(['module', $this->getUrl(0), 'posts', $this->getUrl(2)]);
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/config',
2023-01-23 15:44:11 +01:00
'notification' => helper::translate('Article supprimé'),
2018-04-02 08:29:19 +02:00
'state' => true
]);
}
}
/**
* Édition
*/
public function edit()
{
if (
$this->getUser('permission', __CLASS__, __FUNCTION__) !== true
) {
2019-01-16 19:25:09 +01:00
// Valeurs en sortie
$this->addOutput([
'access' => false
2019-01-16 19:25:09 +01:00
]);
2020-06-03 09:07:00 +02:00
}
2018-04-02 08:29:19 +02:00
// L'article n'existe pas
if ($this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2)]) === null) {
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
}
// L'article existe
else {
// Soumission du formulaire
if (
2023-06-30 09:15:15 +02:00
$this->getUser('permission', __CLASS__, __FUNCTION__) === true &&
$this->isPost()
) {
if ($this->getUser('group') === self::GROUP_ADMIN) {
2020-07-02 19:48:47 +02:00
$newuserid = $this->getInput('blogEditUserId', helper::FILTER_STRING_SHORT, true);
} else {
2020-07-02 19:48:47 +02:00
$newuserid = $this->getUser('id');
}
$articleId = $this->getInput('blogEditPermalink', null, true);
2018-04-02 08:29:19 +02:00
// Incrémente le nouvel id de l'article
if ($articleId !== $this->getUrl(2)) {
2018-04-02 08:29:19 +02:00
$articleId = helper::increment($articleId, $this->getData(['page']));
$articleId = helper::increment($articleId, $this->getData(['module', $this->getUrl(0), 'posts']));
2018-04-02 08:29:19 +02:00
$articleId = helper::increment($articleId, array_keys(self::$actions));
}
$this->setData([
'module',
$this->getUrl(0),
2020-11-18 21:45:14 +01:00
'posts',
$articleId,
[
2022-03-15 09:16:42 +01:00
'title' => $this->getInput('blogEditTitle', helper::FILTER_STRING_SHORT, true),
'comment' => $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'comment']),
'content' => $this->getInput('blogEditContent', null),
'picture' => $this->getInput('blogEditPicture', helper::FILTER_STRING_SHORT),
'hidePicture' => $this->getInput('blogEditHidePicture', helper::FILTER_BOOLEAN),
'pictureSize' => $this->getInput('blogEditPictureSize', helper::FILTER_STRING_SHORT),
'picturePosition' => $this->getInput('blogEditPicturePosition', helper::FILTER_STRING_SHORT),
'publishedOn' => $this->getInput('blogEditPublishedOn', helper::FILTER_DATETIME, true),
'state' => $this->getInput('blogEditState', helper::FILTER_BOOLEAN),
'userId' => $newuserid,
2020-10-15 21:13:48 +02:00
'editConsent' => $this->getInput('blogEditConsent') === self::EDIT_GROUP ? $this->getUser('group') : $this->getInput('blogEditConsent'),
2020-10-13 19:07:10 +02:00
'commentMaxlength' => $this->getInput('blogEditCommentMaxlength'),
'commentApproved' => $this->getInput('blogEditCommentApproved', helper::FILTER_BOOLEAN),
'commentClose' => $this->getInput('blogEditCommentClose', helper::FILTER_BOOLEAN),
'commentNotification' => $this->getInput('blogEditCommentNotification', helper::FILTER_BOOLEAN),
'commentGroupNotification' => $this->getInput('blogEditCommentGroupNotification', helper::FILTER_INT)
]
]);
2018-04-02 08:29:19 +02:00
// Supprime l'ancien article
if ($articleId !== $this->getUrl(2)) {
2020-11-17 08:52:32 +01:00
$this->deleteData(['module', $this->getUrl(0), 'posts', $this->getUrl(2)]);
2018-04-02 08:29:19 +02:00
}
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/config',
2023-01-23 15:44:11 +01:00
'notification' => helper::translate('Modifications enregistrées'),
2018-04-02 08:29:19 +02:00
'state' => true
]);
}
// Liste des utilisateurs
self::$users = helper::arrayColumn($this->getData(['user']), 'firstname');
2018-04-02 08:29:19 +02:00
ksort(self::$users);
foreach (self::$users as $userId => &$userFirstname) {
// Les membres ne sont pas éditeurs, les exclure de la liste
2023-07-05 18:04:42 +02:00
if ($this->getData(['user', $userId, 'group']) < self::GROUP_EDITOR) {
unset(self::$users[$userId]);
}
$userFirstname = $userFirstname . ' ' . $this->getData(['user', $userId, 'lastname']) . ' (' . self::$groupEdits[$this->getData(['user', $userId, 'group'])] . ')';
2018-04-02 08:29:19 +02:00
}
unset($userFirstname);
// Valeurs en sortie
$this->addOutput([
2020-11-17 08:52:32 +01:00
'title' => $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(2), 'title']),
2018-04-02 08:29:19 +02:00
'vendor' => [
'flatpickr',
2022-03-15 09:16:42 +01:00
'tinymce',
'furl'
2018-04-02 08:29:19 +02:00
],
'view' => 'edit'
]);
}
}
/**
* Accueil (deux affichages en un pour éviter une url à rallonge)
*/
public function index()
{
2021-04-05 08:59:24 +02:00
// Mise à jour des données de module
$this->update();
2018-04-02 08:29:19 +02:00
// Affichage d'un article
if (
2018-04-02 08:29:19 +02:00
$this->getUrl(1)
// Protection pour la pagination, un ID ne peut pas être un entier, une page oui
and intval($this->getUrl(1)) === 0
2018-04-02 08:29:19 +02:00
) {
// L'article n'existe pas
if ($this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1)]) === null) {
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
}
// L'article existe
else {
// Soumission du formulaire
if (
$this->isPost()
) {
// Check la captcha
if (
2018-04-02 08:29:19 +02:00
$this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
//AND $this->getInput('blogArticlecaptcha', helper::FILTER_INT) !== $this->getInput('blogArticlecaptchaFirstNumber', helper::FILTER_INT) + $this->getInput('blogArticlecaptchaSecondNumber', helper::FILTER_INT))
and password_verify($this->getInput('blogArticleCaptcha', helper::FILTER_INT), $this->getInput('blogArticleCaptchaResult')) === false
) {
2020-10-04 12:16:37 +02:00
self::$inputNotices['blogArticleCaptcha'] = 'Incorrect';
2018-04-02 08:29:19 +02:00
}
// Crée le commentaire
$commentId = helper::increment(uniqid(), $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'comment']));
2020-10-03 14:48:00 +02:00
$content = $this->getInput('blogArticleContent', false);
$this->setData([
'module', $this->getUrl(0),
'posts', $this->getUrl(1),
'comment',
$commentId,
[
'author' => $this->getInput('blogArticleAuthor', helper::FILTER_STRING_SHORT, empty($this->getInput('blogArticleUserId')) ? TRUE : FALSE),
'content' => $content,
'createdOn' => time(),
'userId' => $this->getInput('blogArticleUserId'),
'approval' => !$this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'commentApproved']) // true commentaire publié false en attente de publication
]
]);
2019-05-02 13:21:48 +02:00
// Envoi d'une notification aux administrateurs
// Init tableau
$to = [];
2020-06-03 09:07:00 +02:00
// Liste des destinataires
foreach ($this->getData(['user']) as $userId => $user) {
if ($user['group'] >= $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'commentGroupNotification'])) {
2019-05-02 13:21:48 +02:00
$to[] = $user['mail'];
2021-01-08 10:49:31 +01:00
$firstname[] = $user['firstname'];
$lastname[] = $user['lastname'];
2019-05-02 13:21:48 +02:00
}
}
2020-06-03 09:07:00 +02:00
// Envoi du mail $sent code d'erreur ou de réussite
$notification = $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'commentApproved']) === true ? 'Commentaire déposé en attente d\'approbation' : 'Commentaire déposé';
if ($this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'commentNotification']) === true) {
2021-01-08 10:49:31 +01:00
$error = 0;
foreach ($to as $key => $adress) {
2021-01-08 10:49:31 +01:00
$sent = $this->sendMail(
$adress,
'Nouveau commentaire déposé',
'Bonjour' . ' <strong>' . $firstname[$key] . ' ' . $lastname[$key] . '</strong>,<br><br>' .
'L\'article <a href="' . helper::baseUrl() . $this->getUrl(0) . '/ ' . $this->getUrl(1) . '">' . $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'title']) . '</a> a reçu un nouveau commentaire.<br><br>',
2023-02-25 22:17:17 +01:00
null,
2023-07-16 18:47:50 +02:00
$this->getData(['config', 'smtp', 'from'])
2021-01-08 10:49:31 +01:00
);
if ($sent === false)
$error++;
2021-01-08 10:49:31 +01:00
}
2019-05-02 13:21:48 +02:00
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl() . '#comment',
2021-01-08 10:49:31 +01:00
'notification' => ($error === 0 ? $notification . '<br/>Une notification a été envoyée.' : $notification . '<br/> Erreur de notification : ' . $sent),
2020-06-03 09:07:00 +02:00
'state' => ($sent === true ? true : null)
2019-05-02 13:21:48 +02:00
]);
} else {
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl() . '#comment',
'notification' => $notification,
2020-06-03 09:07:00 +02:00
'state' => true
2019-05-02 13:21:48 +02:00
]);
}
2018-04-02 08:29:19 +02:00
}
2020-10-04 12:21:46 +02:00
// Ids des commentaires approuvés par ordre de publication
2020-11-18 21:45:36 +01:00
$commentsApproved = $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'comment']);
if ($commentsApproved) {
foreach ($commentsApproved as $key => $value) {
if ($value['approval'] === false)
unset($commentsApproved[$key]);
}
// Ligne suivante si affichage du nombre total de commentaires approuvés sous l'article
self::$nbCommentsApproved = count($commentsApproved);
2020-10-04 12:21:46 +02:00
}
$commentIds = array_keys(helper::arrayColumn($commentsApproved, 'createdOn', 'SORT_DESC'));
2018-04-02 08:29:19 +02:00
// Pagination
$pagination = helper::pagination($commentIds, $this->getUrl(), $this->getData(['module', $this->getUrl(0), 'config', 'itemsperPage']), '#comment');
2018-04-02 08:29:19 +02:00
// Liste des pages
self::$pages = $pagination['pages'];
2020-07-02 19:48:47 +02:00
// Signature de l'article
self::$articleSignature = $this->signature($this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'userId']));
2020-07-02 19:48:47 +02:00
// Signature du commentaire édité
if ($this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')) {
2020-11-20 13:44:32 +01:00
self::$editCommentSignature = $this->signature($this->getUser('id'));
2020-07-02 19:48:47 +02:00
}
2018-04-02 08:29:19 +02:00
// Commentaires en fonction de la pagination
for ($i = $pagination['first']; $i < $pagination['last']; $i++) {
2020-07-02 19:48:47 +02:00
// Signatures des commentaires
$e = $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'comment', $commentIds[$i], 'userId']);
2020-07-02 19:48:47 +02:00
if ($e) {
2020-11-20 13:44:32 +01:00
self::$commentsSignature[$commentIds[$i]] = $this->signature($e);
2020-07-02 19:48:47 +02:00
} else {
self::$commentsSignature[$commentIds[$i]] = $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'comment', $commentIds[$i], 'author']);
2020-07-02 19:48:47 +02:00
}
// Données du commentaire si approuvé
if ($this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'comment', $commentIds[$i], 'approval']) === true) {
2020-11-18 21:45:36 +01:00
self::$comments[$commentIds[$i]] = $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'comment', $commentIds[$i]]);
}
2018-04-02 08:29:19 +02:00
}
// Format de temps
self::$dateFormat = $this->getData(['module', $this->getUrl(0), 'config', 'dateFormat']);
self::$timeFormat = $this->getData(['module', $this->getUrl(0), 'config', 'timeFormat']);
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'showBarEditButton' => true,
'title' => $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'title']),
2020-07-02 19:48:47 +02:00
'vendor' => [
'tinymce'
],
2018-04-02 08:29:19 +02:00
'view' => 'article'
]);
}
}
// Liste des articles
else {
// Ids des articles par ordre de publication
$articleIdsPublishedOns = helper::arrayColumn($this->getData(['module', $this->getUrl(0), 'posts']), 'publishedOn', 'SORT_DESC');
$articleIdsStates = helper::arrayColumn($this->getData(['module', $this->getUrl(0), 'posts']), 'state', 'SORT_DESC');
2018-04-02 08:29:19 +02:00
$articleIds = [];
foreach ($articleIdsPublishedOns as $articleId => $articlePublishedOn) {
if ($articlePublishedOn <= time() and $articleIdsStates[$articleId]) {
2018-04-02 08:29:19 +02:00
$articleIds[] = $articleId;
2022-03-15 09:16:42 +01:00
// Nombre de commentaires approuvés par article
self::$comments[$articleId] = 0;
if (is_array($this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'comment']))) {
2023-06-12 11:45:03 +02:00
foreach ($this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'comment']) as $commentId => $commentValue) {
if ($this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'comment', $commentId, 'approval'])) {
self::$comments[$articleId] = self::$comments[$articleId] + 1;
}
}
}
2018-04-02 08:29:19 +02:00
}
}
// Pagination
2023-05-30 21:06:26 +02:00
$pagination = helper::pagination($articleIds, $this->getUrl(), $this->getData(['module', $this->getUrl(0), 'config', 'itemsperPage']), '#article');
2018-04-02 08:29:19 +02:00
// Liste des pages
self::$pages = $pagination['pages'];
// Articles en fonction de la pagination
for ($i = $pagination['first']; $i < $pagination['last']; $i++) {
2020-11-17 08:52:32 +01:00
self::$articles[$articleIds[$i]] = $this->getData(['module', $this->getUrl(0), 'posts', $articleIds[$i]]);
2018-04-02 08:29:19 +02:00
}
2023-02-10 17:19:38 +01:00
// Format de temps
self::$dateFormat = $this->getData(['module', $this->getUrl(0), 'config', 'dateFormat']);
self::$timeFormat = $this->getData(['module', $this->getUrl(0), 'config', 'timeFormat']);
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'showBarEditButton' => true,
'showPageContent' => true,
'view' => 'index'
]);
}
}
2020-11-20 13:44:32 +01:00
}