ZwiiCMS/module/form/form.php

399 lines
12 KiB
PHP
Raw Normal View History

2018-04-02 08:29:19 +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>
2020-01-21 09:14:04 +01:00
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
2018-04-02 08:29:19 +02:00
* @license GNU General Public License, version 3
* @link http://zwiicms.fr/
2018-04-02 08:29:19 +02:00
*/
class form extends common {
public static $actions = [
'config' => self::GROUP_MODERATOR,
'data' => self::GROUP_MODERATOR,
'delete' => self::GROUP_MODERATOR,
'deleteall' => self::GROUP_MODERATOR,
'index' => self::GROUP_VISITOR,
'export2csv' => self::GROUP_MODERATOR,
'output2csv' => self::GROUP_MODERATOR
2018-04-02 08:29:19 +02:00
];
public static $data = [];
public static $pages = [];
2020-06-03 08:54:48 +02:00
2018-04-02 08:29:19 +02:00
public static $pagination;
2020-06-03 08:54:48 +02:00
2020-12-01 21:05:22 +01:00
const FORM_VERSION = '2.5';
2018-04-02 08:29:19 +02:00
2019-11-26 19:22:30 +01:00
// Objets
2018-04-02 08:29:19 +02:00
const TYPE_MAIL = 'mail';
const TYPE_SELECT = 'select';
const TYPE_TEXT = 'text';
const TYPE_TEXTAREA = 'textarea';
2019-11-26 19:22:30 +01:00
const TYPE_DATETIME = 'date';
const TYPE_CHECKBOX = 'checkbox';
const TYPE_LABEL = 'label';
2019-02-14 15:17:03 +01:00
2018-04-02 08:29:19 +02:00
public static $types = [
2020-06-03 08:54:48 +02:00
self::TYPE_LABEL => 'Etiquette',
2018-04-02 08:29:19 +02:00
self::TYPE_TEXT => 'Champ texte',
self::TYPE_TEXTAREA => 'Grand champ texte',
self::TYPE_MAIL => 'Champ mail',
2018-11-28 12:44:32 +01:00
self::TYPE_SELECT => 'Sélection',
2020-06-03 08:54:48 +02:00
self::TYPE_CHECKBOX => 'Case à cocher',
2020-01-21 09:14:04 +01:00
self::TYPE_DATETIME => 'Date'
2018-04-02 08:29:19 +02:00
];
2019-02-12 14:39:36 +01:00
public static $listUsers = [
];
2018-04-02 08:29:19 +02:00
/**
* Configuration
*/
public function config() {
2020-06-03 08:54:48 +02:00
// Liste des utilisateurs
2019-02-12 14:39:36 +01:00
$userIdsFirstnames = helper::arrayCollumn($this->getData(['user']), 'firstname');
ksort($userIdsFirstnames);
2020-06-03 08:54:48 +02:00
self::$listUsers [] = '';
2019-02-12 14:39:36 +01:00
foreach($userIdsFirstnames as $userId => $userFirstname) {
2019-02-13 19:57:10 +01:00
self::$listUsers [] = $userId;
2019-02-12 14:39:36 +01:00
}
2018-04-02 08:29:19 +02:00
// Soumission du formulaire
if($this->isPost()) {
// Configuration
$this->setData([
'module',
$this->getUrl(0),
'config',
[
'button' => $this->getInput('formConfigButton'),
2020-10-04 12:16:37 +02:00
'captcha' => $this->getInput('formConfigCaptcha', helper::FILTER_BOOLEAN),
2018-04-02 08:29:19 +02:00
'group' => $this->getInput('formConfigGroup', helper::FILTER_INT),
2019-02-12 14:39:36 +01:00
'user' => self::$listUsers [$this->getInput('formConfigUser', helper::FILTER_INT)],
2019-02-13 19:57:10 +01:00
'mail' => $this->getInput('formConfigMail') ,
2020-08-09 15:53:30 +02:00
'pageId' => $this->getInput('formConfigPageIdToggle', helper::FILTER_BOOLEAN) === true ? $this->getInput('formConfigPageId', helper::FILTER_ID) : '',
'subject' => $this->getInput('formConfigSubject'),
'replyto' => $this->getInput('formConfigMailReplyTo', helper::FILTER_BOOLEAN)
2018-04-02 08:29:19 +02:00
]
]);
// Génération des données vides
2020-12-01 21:05:22 +01:00
if ($this->getData(['module', $this->getUrl(0), 'data']) === null) {
$this->setData(['module', $this->getUrl(0), 'data', []]);
}
2018-04-02 08:29:19 +02:00
// Génération des champs
$inputs = [];
foreach($this->getInput('formConfigPosition', null) as $index => $position) {
$inputs[] = [
'name' => $this->getInput('formConfigName[' . $index . ']'),
'position' => helper::filter($position, helper::FILTER_INT),
'required' => $this->getInput('formConfigRequired[' . $index . ']', helper::FILTER_BOOLEAN),
'type' => $this->getInput('formConfigType[' . $index . ']'),
'values' => $this->getInput('formConfigValues[' . $index . ']')
];
}
$this->setData(['module', $this->getUrl(0), 'input', $inputs]);
// Valeurs en sortie
$this->addOutput([
'notification' => 'Modifications enregistrées',
'redirect' => helper::baseUrl() . $this->getUrl(),
'state' => true
]);
}
// Liste des pages
foreach($this->getHierarchy(null, false) as $parentPageId => $childrenPageIds) {
self::$pages[$parentPageId] = $this->getData(['page', $parentPageId, 'title']);
foreach($childrenPageIds as $childKey) {
self::$pages[$childKey] = '&nbsp;&nbsp;&nbsp;&nbsp;' . $this->getData(['page', $childKey, 'title']);
}
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Configuration du module',
'vendor' => [
2018-11-28 12:44:32 +01:00
'html-sortable',
'flatpickr'
2018-04-02 08:29:19 +02:00
],
'view' => 'config'
]);
}
/**
* Données enregistrées
*/
public function data() {
$data = $this->getData(['module', $this->getUrl(0), 'data']);
if($data) {
// Pagination
$pagination = helper::pagination($data, $this->getUrl(),$this->getData(['config','itemsperPage']));
2018-04-02 08:29:19 +02:00
// Liste des pages
self::$pagination = $pagination['pages'];
// Inverse l'ordre du tableau
$dataIds = array_reverse(array_keys($data));
$data = array_reverse($data);
// Données en fonction de la pagination
for($i = $pagination['first']; $i < $pagination['last']; $i++) {
$content = '';
foreach($data[$i] as $input => $value) {
$content .= $input . ' : ' . $value . '<br>';
}
self::$data[] = [
$content,
template::button('formDataDelete' . $dataIds[$i], [
'class' => 'formDataDelete buttonRed',
'href' => helper::baseUrl() . $this->getUrl(0) . '/delete/' . $dataIds[$i] . '/' . $_SESSION['csrf'],
2018-04-02 08:29:19 +02:00
'value' => template::ico('cancel')
])
];
}
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Données enregistrées',
'view' => 'data'
]);
}
/**
* Export CSV
* @author Frédéric Tempez <frederic.tempez@outlook.com>
2020-01-21 09:14:04 +01:00
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
*/
public function export2csv() {
// Jeton incorrect
if ($this->getUrl(2) !== $_SESSION['csrf']) {
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
'notification' => 'Action non autorisée'
]);
2019-01-24 09:31:19 +01:00
} else {
$data = $this->getData(['module', $this->getUrl(0), 'data']);
if ($data !== []) {
$csvfilename = 'data-'.date('dmY').'-'.date('hm').'-'.rand(10,99).'.csv';
if (!file_exists(self::FILE_DIR.'source/data')) {
mkdir(self::FILE_DIR.'source/data');
}
$fp = fopen(self::FILE_DIR.'source/data/'.$csvfilename, 'w');
fputcsv($fp, array_keys($data[1]), ';','"');
foreach ($data as $fields) {
fputcsv($fp, $fields, ';','"');
}
fclose($fp);
// Valeurs en sortie
$this->addOutput([
2019-02-20 11:45:31 +01:00
'notification' => 'Export CSV effectué dans le gestionnaire de fichiers<br />sous le nom '.$csvfilename,
'redirect' => helper::baseUrl() . $this->getUrl(0) .'/data',
'state' => true
]);
} else {
$this->addOutput([
'notification' => 'Aucune donnée à exporter',
'redirect' => helper::baseUrl() . $this->getUrl(0) .'/data'
]);
}
}
}
2018-04-02 08:29:19 +02:00
/**
* Suppression
*/
public function deleteall() {
// Jeton incorrect
if ($this->getUrl(2) !== $_SESSION['csrf']) {
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
'notification' => 'Action non autorisée'
2018-04-02 08:29:19 +02:00
]);
2020-06-03 08:54:48 +02:00
} else {
$data = ($this->getData(['module', $this->getUrl(0), 'data']));
if (count($data) > 0 ) {
// Suppression multiple
for ($i = 1; $i <= count($data) ; $i++) {
echo $this->deleteData(['module', $this->getUrl(0), 'data', $i]);
}
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
'notification' => 'Données supprimées',
'state' => true
]);
} else {
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
'notification' => 'Aucune donnée à supprimer'
]);
}
2018-04-02 08:29:19 +02:00
}
}
2020-06-03 08:54:48 +02:00
/**
* Suppression
*/
public function delete() {
// Jeton incorrect
if ($this->getUrl(3) !== $_SESSION['csrf']) {
2018-04-02 08:29:19 +02:00
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
'notification' => 'Action non autorisée'
2018-04-02 08:29:19 +02:00
]);
} else {
// La donnée n'existe pas
if($this->getData(['module', $this->getUrl(0), 'data', $this->getUrl(2)]) === null) {
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
}
// Suppression
else {
$this->deleteData(['module', $this->getUrl(0), 'data', $this->getUrl(2)]);
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/data',
'notification' => 'Donnée supprimée',
'state' => true
]);
}
2018-04-02 08:29:19 +02:00
}
}
2018-04-02 08:29:19 +02:00
/**
* Accueil
*/
public function index() {
// Soumission du formulaire
if($this->isPost()) {
// Check la captcha
2018-04-02 08:29:19 +02:00
if(
$this->getData(['module', $this->getUrl(0), 'config', 'captcha'])
// AND $this->getInput('formcaptcha', helper::FILTER_INT) !== $this->getInput('formcaptchaFirstNumber', helper::FILTER_INT) + $this->getInput('formcaptchaSecondNumber', helper::FILTER_INT))
2020-10-04 12:16:37 +02:00
AND password_verify($this->getInput('formCaptcha', helper::FILTER_INT), $this->getInput('formCaptchaResult') ) === false )
2018-04-02 08:29:19 +02:00
{
2020-10-04 12:16:37 +02:00
self::$inputNotices['formCaptcha'] = 'Incorrect';
2020-06-03 08:54:48 +02:00
2018-04-02 08:29:19 +02:00
}
// Préparation le contenu du mail
$data = [];
2020-02-28 14:58:50 +01:00
$replyTo = null;
2020-06-03 08:54:48 +02:00
$content = '';
2018-04-02 08:29:19 +02:00
foreach($this->getData(['module', $this->getUrl(0), 'input']) as $index => $input) {
// Filtre la valeur
switch($input['type']) {
case self::TYPE_MAIL:
$filter = helper::FILTER_MAIL;
break;
case self::TYPE_TEXTAREA:
$filter = helper::FILTER_STRING_LONG;
break;
2020-06-03 08:54:48 +02:00
case self::TYPE_DATETIME:
2018-11-28 15:32:22 +01:00
$filter = helper::FILTER_STRING_SHORT; // Mettre TYPE_DATETIME pour récupérer un TIMESTAMP
2018-11-28 12:44:32 +01:00
break;
2020-06-03 08:54:48 +02:00
case self::TYPE_CHECKBOX:
2019-01-23 13:07:28 +01:00
$filter = helper::FILTER_BOOLEAN;
break;
2018-04-02 08:29:19 +02:00
default:
$filter = helper::FILTER_STRING_SHORT;
}
2019-11-27 14:28:23 +01:00
$value = $this->getInput('formInput[' . $index . ']', $filter, $input['required']) === true ? 'X' : $this->getInput('formInput[' . $index . ']', $filter, $input['required']);
2020-06-03 08:54:48 +02:00
// premier champ email ajouté au mail en reply si option active
if ($this->getData(['module', $this->getUrl(0), 'config', 'replyto']) === true &&
$input['type'] === 'mail') {
$replyTo = $value;
2020-02-28 15:00:28 +01:00
}
2018-04-02 08:29:19 +02:00
// Préparation des données pour la création dans la base
$data[$this->getData(['module', $this->getUrl(0), 'input', $index, 'name'])] = $value;
// Préparation des données pour le mail
$content .= '<strong>' . $this->getData(['module', $this->getUrl(0), 'input', $index, 'name']) . ' :</strong> ' . $value . '<br>';
}
// Crée les données
$this->setData(['module', $this->getUrl(0), 'data', helper::increment(1, $this->getData(['module', $this->getUrl(0), 'data'])), $data]);
// Envoi du mail
2019-02-13 19:57:10 +01:00
// Rechercher l'adresse en fonction du mail
2018-04-02 08:29:19 +02:00
$sent = true;
2019-02-13 19:57:10 +01:00
$singleuser = $this->getData(['user',
2019-03-10 20:56:36 +01:00
$this->getData(['module', $this->getUrl(0), 'config', 'user']),
'mail']);
2019-02-12 14:39:36 +01:00
$singlemail = $this->getData(['module', $this->getUrl(0), 'config', 'mail']);
2019-03-10 20:56:36 +01:00
$group = $this->getData(['module', $this->getUrl(0), 'config', 'group']);
2019-02-13 19:57:10 +01:00
// Verification si le mail peut être envoyé
2018-04-02 08:29:19 +02:00
if(
self::$inputNotices === [] && (
2019-03-10 20:56:36 +01:00
$group > 0 ||
$singleuser !== '' ||
$singlemail !== '' )
2018-04-02 08:29:19 +02:00
) {
// Utilisateurs dans le groupe
2019-03-10 20:56:36 +01:00
$to = [];
if ($group > 0){
foreach($this->getData(['user']) as $userId => $user) {
2019-05-02 13:21:48 +02:00
if($user['group'] >= $group) {
$to[] = $user['mail'];
}
2018-04-02 08:29:19 +02:00
}
2020-06-03 08:54:48 +02:00
}
2019-02-12 14:39:36 +01:00
// Utilisateur désigné
if (!empty($singleuser)) {
$to[] = $singleuser;
}
// Mail désigné
if (!empty($singlemail)) {
$to[] = $singlemail;
}
2018-04-02 08:29:19 +02:00
if($to) {
// Sujet du mail
$subject = $this->getData(['module', $this->getUrl(0), 'config', 'subject']);
if($subject === '') {
$subject = 'Nouveau message en provenance de votre site';
}
// Envoi le mail
$sent = $this->sendMail(
$to,
$subject,
'Nouveau message en provenance de la page "' . $this->getData(['page', $this->getUrl(0), 'title']) . '" :<br><br>' .
$content,
$replyTo
2018-04-02 08:29:19 +02:00
);
}
}
// Redirection
$redirect = $this->getData(['module', $this->getUrl(0), 'config', 'pageId']);
// Valeurs en sortie
$this->addOutput([
'notification' => ($sent === true ? 'Formulaire soumis' : $sent),
'redirect' => $redirect ? helper::baseUrl() . $redirect : '',
'state' => ($sent === true ? true : null),
'vendor' => [
'flatpickr'
],
2018-04-02 08:29:19 +02:00
]);
}
// Valeurs en sortie
$this->addOutput([
'showBarEditButton' => true,
'showPageContent' => true,
2018-11-28 12:44:32 +01:00
'view' => 'index',
'vendor' => [
'flatpickr'
],
2018-04-02 08:29:19 +02:00
]);
}
}