ZwiiCampus/module/suscribe/suscribe.php

487 lines
16 KiB
PHP
Raw Normal View History

2023-11-03 18:31:35 +01: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 Frédéric Tempez <frederic.tempez@outlook.com>
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
* @link http://zwiicms.com/
*/
class suscribe extends common
{
2024-07-17 20:13:53 +02:00
const VERSION = '2.0test3';
2023-11-03 18:31:35 +01:00
const REALNAME = 'Auto-Inscription';
const DELETE = true;
const UPDATE = '0.0';
const DATADIRECTORY = ''; // Contenu localisé inclus par défaut (page.json et module.json)
2023-11-17 17:53:55 +01:00
const STATUS_EMAIL_AWAITING = 0;
const STATUS_EMAIL_VALID = 1;
const STATUS_ACCOUNT_AWAITING = 2;
const STATUS_ACCOUNT_VALID = 3;
2023-11-16 11:14:14 +01:00
public static $statusGroups = [
2023-11-17 17:53:55 +01:00
self::STATUS_EMAIL_AWAITING => 'Email non confirmé',
2024-07-17 20:13:53 +02:00
self::STATUS_EMAIL_VALID => 'Email valide',
self::STATUS_ACCOUNT_AWAITING => 'Email valide, en attente de confirmation',
self::STATUS_ACCOUNT_VALID => 'Email valide, compte activé',
2023-11-16 11:14:14 +01:00
];
2023-11-03 18:31:35 +01:00
public static $actions = [
'index' => self::GROUP_VISITOR,
'validate' => self::GROUP_VISITOR,
'config' => self::GROUP_EDITOR,
2024-07-17 20:13:53 +02:00
'users' => self::GROUP_EDITOR,
2023-11-03 18:31:35 +01:00
'delete' => self::GROUP_EDITOR,
'edit' => self::GROUP_EDITOR
];
2024-07-17 20:13:53 +02:00
public static $layout = [
'inputRowContainer1' => 'Un élément par ligne',
'inputRowContainer2' => 'Deux éléments par ligne',
'inputRowContainer4' => 'Quatre éléments par ligne',
];
2023-11-03 18:31:35 +01:00
public static $timeLimit = [
2 => '2 minutes',
5 => '5 minutes',
10 => '10 minutes'
];
public static $users = [];
2024-07-17 20:13:53 +02:00
public static $groups = [];
public static $userProfils = [];
public static $userProfilsComments = [];
2023-11-03 18:31:35 +01:00
/**
* Liste des utilisateurs en attente
*/
2024-07-17 20:13:53 +02:00
public function users()
2023-11-03 18:31:35 +01:00
{
2024-07-17 20:13:53 +02:00
$userIdsFirstnames = helper::arraycollumn($this->getData(['module', $this->getUrl(0), 'users']), 'firstname');
2023-11-03 18:31:35 +01:00
ksort($userIdsFirstnames);
foreach ($userIdsFirstnames as $userId => $userFirstname) {
2023-11-17 17:53:55 +01:00
self::$users[] = [
$userId,
2024-07-17 20:13:53 +02:00
$userFirstname . ' ' . $this->getData(['module', $this->getUrl(0), 'users', $userId, 'lastname']),
self::$statusGroups[$this->getData(['module', $this->getUrl(0), 'users', $userId, 'status'])],
helper::dateUTF8(date('Y-m-d G:i'), $this->getData(['module', $this->getUrl(0), 'users', $userId, 'timer'])),
2023-11-17 17:53:55 +01:00
template::button('registrationUserEdit' . $userId, [
'href' => helper::baseUrl() . $this->getUrl(0) . '/edit/' . $userId,
'value' => template::ico('pencil')
]),
template::button('registrationUserDelete' . $userId, [
'class' => 'userDelete red',
'href' => helper::baseUrl() . $this->getUrl(0) . '/delete/' . $userId,
'value' => template::ico('cancel')
])
];
2023-11-03 18:31:35 +01:00
}
// Valeurs en sortie
$this->addOutput([
2024-07-17 20:13:53 +02:00
'title' => 'Inscription en attente',
'view' => 'users'
2023-11-03 18:31:35 +01:00
]);
}
/**
* Édition
*/
public function edit()
{
if (
$this->getUser('permission', __CLASS__, __FUNCTION__) !== true
) {
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
}
// Accès refusé
if (
// L'utilisateur n'existe pas
2024-07-17 20:13:53 +02:00
$this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2)]) === null
2023-11-03 18:31:35 +01:00
// Droit d'édition
and (
// Impossible de s'auto-éditer
(
2023-11-17 17:53:55 +01:00
$this->getUser('id') === 'user'
2023-11-03 18:31:35 +01:00
and $this->getUrl('group') <= self::GROUP_VISITOR
)
// Impossible d'éditer un autre utilisateur
or ($this->getUrl('group') < self::GROUP_EDITOR)
)
) {
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
}
// Accès autorisé
else {
// Soumission du formulaire
if (
$this->getUser('permission', __CLASS__, __FUNCTION__) === true
&& $this->isPost()
) {
2024-07-17 20:13:53 +02:00
// Créer le user dans la base
2023-11-03 18:31:35 +01:00
$this->setData([
'user',
2024-07-17 20:13:53 +02:00
$this->getUrl(2),
2023-11-03 18:31:35 +01:00
[
2024-07-17 20:13:53 +02:00
'firstname' => $this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2), 'firstname']),
2023-11-03 18:31:35 +01:00
'forgot' => 0,
'group' => $this->getInput('registrationUserEditGroup', helper::FILTER_INT),
2024-07-17 20:13:53 +02:00
// Le profil vaut 0 pour les amdins et 1 pour les autres membres, profil par défaut.
'profil' => $this->getInput('registrationUserEditGroup', helper::FILTER_INT) === self::GROUP_ADMIN
? 0 : 1,
'lastname' => $this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2), 'lastname']),
'mail' => $this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2), 'mail']),
'password' => $this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2), 'password']),
'connectFail' => $this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2), 'connectFail']),
'connectTimeout' => $this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2), 'connectTimeout']),
'accessUrl' => $this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2), 'accessUrl']),
'accessTimer' => $this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2), 'accessTimer']),
'accessCsrf' => $this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2), 'accessCsrf'])
2023-11-03 18:31:35 +01:00
]
]);
// Notifier le user uniquement si le groupe est membre au moins membre
if ($this->getInput('registrationUserEditGroup') >= 1) {
$this->sendMail(
2024-07-17 20:13:53 +02:00
$this->getData(['module', $this->getUrl(0), 'users', 'mail']),
2023-11-03 18:31:35 +01:00
'Approbation de l\'inscription',
2023-11-16 11:14:14 +01:00
'<p>' . $this->getdata(['module', $this->getUrl(0), 'config', 'mailValidateContent']) . '</p>',
2023-11-03 18:31:35 +01:00
null,
$this->getData(['config', 'smtp', 'from'])
);
}
2024-07-17 20:13:53 +02:00
// Supprimer le user de la base temporaire,
$this->deleteData(['module', $this->getUrl(0), 'users', $this->getUrl(2)]);
2023-11-03 18:31:35 +01:00
// Valeurs en sortie
$this->addOutput([
2024-07-17 20:13:53 +02:00
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/users',
2023-11-03 18:31:35 +01:00
'notification' => 'Modifications enregistrées',
'state' => true
]);
}
2024-07-17 20:13:53 +02:00
// Changement temporaire de libellé du groupe 0
self::$groups = self::$groupEdits;
self::$groups[self::GROUP_BANNED] = 'En attente d\'approbation';
// Profils disponibles
foreach ($this->getData(['profil']) as $profilId => $profilData) {
if ($profilId < self::GROUP_MEMBER) {
continue;
}
if ($profilId === self::GROUP_ADMIN) {
self::$userProfils[$profilId][self::GROUP_ADMIN] = $profilData['name'];
self::$userProfilsComments[$profilId][self::GROUP_ADMIN] = $profilData['comment'];
continue;
}
foreach ($profilData as $key => $value) {
self::$userProfils[$profilId][$key] = $profilData[$key]['name'];
self::$userProfilsComments[$profilId][$key] = $profilData[$key]['name'] . ' : ' . $profilData[$key]['comment'];
}
}
2023-11-03 18:31:35 +01:00
// Valeurs en sortie
$this->addOutput([
2024-07-17 20:13:53 +02:00
'title' => $this->getData(['module', $this->getUrl(0), 'users', 'firstname']) . ' ' . $this->getData(['user', $this->getUrl(0), 'lastname']),
2023-11-03 18:31:35 +01:00
'view' => 'edit'
]);
}
}
/**
* Suppression
*/
public function delete()
{
// Accès refusé
if (
// L'utilisateur n'existe pas
2024-07-17 20:13:53 +02:00
$this->getData(['module', $this->getUrl(0), 'users', $this->getUrl(2)]) === null
2023-11-03 18:31:35 +01:00
// Groupe insuffisant
2023-11-17 17:53:55 +01:00
&& $this->getUser('permission', __CLASS__, __FUNCTION__) !== true
2023-11-03 18:31:35 +01:00
) {
// Valeurs en sortie
$this->addOutput([
'access' => false
]);
}
// Suppression
else {
2024-07-17 20:13:53 +02:00
$this->deleteData(['module', $this->getUrl(0), 'users', $this->getUrl(2)]);
2023-11-03 18:31:35 +01:00
// Valeurs en sortie
$this->addOutput([
2024-07-17 20:13:53 +02:00
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/users',
2023-11-03 18:31:35 +01:00
'notification' => 'Utilisateur supprimé',
'state' => true
]);
}
}
/**
* Ajout
*/
public function index()
{
2023-11-17 17:53:55 +01:00
/**
* Traitement du formulaire
* Stocke les données du formulaire dans le module
* Envoie le mail de vérification de l'email
*/
2023-11-03 18:31:35 +01:00
// Soumission du formulaire
2023-11-16 11:14:14 +01:00
if ($this->isPost()) {
2024-07-17 20:13:53 +02:00
// Le domaine saisi est invalide si un filtre existe
if (
!empty($this->getData(['module', $this->getUrl(0), 'config', 'filter']))
) {
// Contrôler la validité du domaine saisi parmi les domaines valides
$email_to_check = $this->getInput('registrationAddMail', helper::FILTER_MAIL, true);
$valid_domains[] = strpos($this->getData(['module', $this->getUrl(0), 'config', 'filter']), ';') === false
? $this->getData(['module', $this->getUrl(0), 'config', 'filter'])
: explode(';', $this->getData(['module', $this->getUrl(0), 'config', 'filter']));
if (in_array(explode('@', $email_to_check)[1], $valid_domains) === false) {
self::$inputNotices['registrationAddMail'] = 'Ce domaine n\'est pas autorisé';
}
}
2023-11-16 11:14:14 +01:00
// Drapeau de contrôle des données saisies.
2023-11-03 18:31:35 +01:00
$check = true;
2024-07-17 20:13:53 +02:00
$sentMailtoUser = false;
2023-11-03 18:31:35 +01:00
// L'identifiant d'utilisateur est indisponible
$userId = $this->getInput('registrationAddId', helper::FILTER_ID, true);
2024-07-17 20:13:53 +02:00
if (is_array($this->getData(['user', $userId]))) {
self::$inputNotices['registrationAddId'] = 'Identifiant invalide';
2023-11-03 18:31:35 +01:00
$check = false;
}
2024-07-17 20:13:53 +02:00
// Le compte existe déjà
2023-11-03 18:31:35 +01:00
foreach ($this->getData(['user']) as $usersId => $user) {
if ($user['mail'] === $this->getInput('registrationAddMail', helper::FILTER_MAIL, true)) {
2024-07-17 20:13:53 +02:00
self::$inputNotices['registrationAddMail'] = 'Vous ne pouvez pas utilisez cette boite mail';
2023-11-03 18:31:35 +01:00
$check = false;
break;
}
}
// Données de l'utilisateur
$userFirstname = $this->getInput('registrationAddFirstname', helper::FILTER_STRING_SHORT, true);
$userLastname = $this->getInput('registrationAddLastname', helper::FILTER_STRING_SHORT, true);
$userMail = $this->getInput('registrationAddMail', helper::FILTER_MAIL, true);
// Pas de nom saisi
if (
empty($userFirstname) ||
2024-07-17 20:13:53 +02:00
empty($userLastname)
2023-11-03 18:31:35 +01:00
) {
$check = false;
}
// Si tout est ok
if ($check === true) {
2024-07-17 20:13:53 +02:00
// Enregistrement du compte dans les données du module
2023-11-17 17:53:55 +01:00
$auth = uniqid('', true);
2023-11-03 18:31:35 +01:00
$this->setData([
2023-11-16 11:14:14 +01:00
'module',
$this->getUrl(0),
2024-07-17 20:13:53 +02:00
'users',
2023-11-03 18:31:35 +01:00
$userId,
[
'firstname' => $userFirstname,
'lastname' => $userLastname,
'mail' => $userMail,
2024-07-17 20:13:53 +02:00
'password' => '',
2023-11-03 18:31:35 +01:00
// pas de groupe afin de le différencier dans la liste des users
2023-11-16 11:14:14 +01:00
'timer' => time(),
2023-11-17 17:53:55 +01:00
'auth' => $auth,
'status' => self::STATUS_EMAIL_AWAITING
2023-11-03 18:31:35 +01:00
]
]);
// Mail d'avertissement aux administrateurs
// Utilisateurs dans le groupe admin
$to = [];
2023-11-17 17:53:55 +01:00
foreach ($this->getData(['user']) as $key => $user) {
2023-11-03 18:31:35 +01:00
if ($user['group'] == self::GROUP_ADMIN) {
$to[] = $user['mail'];
}
}
2023-11-17 17:53:55 +01:00
// Envoi du mail à l'administrateur
2024-07-17 20:13:53 +02:00
if ($check && is_array($to)) {
2023-11-03 18:31:35 +01:00
$this->sendMail(
$to,
'Auto-inscription sur le site ' . $this->getData(['config', 'title']),
2024-07-17 20:13:53 +02:00
'<p>Un nouveau membre s\'est inscrit, son email est en attente de validation</p>' .
2023-11-03 18:31:35 +01:00
'<p><strong>Identifiant du compte :</strong> ' . $userId . ' (' . $userFirstname . ' ' . $userLastname . ')<br>' .
'<strong>Email :</strong> ' . $userMail . '</p>' .
2024-07-17 20:13:53 +02:00
'<a href="' . helper::baseUrl() . 'user/login/' . strip_tags(str_replace('/', '_', $this->getUrl(0) . '/users')) . '">Validation de l\'inscription</a>',
2023-11-03 18:31:35 +01:00
null,
$this->getData(['config', 'smtp', 'from'])
);
}
// Mail de confirmation à l'utilisateur
// forger le lien de vérification
2023-11-17 17:53:55 +01:00
$validateLink = helper::baseUrl(true) . $this->getUrl() . '/validate/' . $userId . '/' . $auth;
2023-11-03 18:31:35 +01:00
// Envoi
2024-07-17 20:13:53 +02:00
if ($check) {
2023-11-03 18:31:35 +01:00
$sentMailtoUser = $this->sendMail(
$userMail,
'Confirmation de votre inscription',
2023-11-16 11:14:14 +01:00
'<p>' . $this->getdata(['module', $this->getUrl(0), 'config', 'mailRegisterContent']) . '</p>' .
2023-11-17 17:53:55 +01:00
'<p><a href="' . $validateLink . '">Activer votre compte<a/>' . '</p>' .
'<p>ou copiez collez le lien suivant dans un navigateur : ' . $validateLink . '</p>'
,
2023-11-03 18:31:35 +01:00
null,
$this->getData(['config', 'smtp', 'from'])
);
}
}
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl(),
//'redirect' => $validateLink,
2023-11-16 11:14:14 +01:00
'notification' => $sentMailtoUser ? "Un mail vous a été envoyé." : 'Quelque chose n\'a pas fonctionné !',
2023-11-03 18:31:35 +01:00
'state' => $sentMailtoUser ? true : false
]);
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Inscription',
'view' => 'index',
'showBarEditButton' => true,
'showPageContent' => true
]);
}
/**
* Vérification de l'email
*/
public function validate()
{
2024-07-17 20:13:53 +02:00
// Soumission du formulaire
if ($this->isPost()) {
// Vérifie la session + l'id + le timer
$check = true;
$notification = 'Bienvenue sur le site ' . $this->getData(['config', 'title']);
$userId = $this->getUrl(2);
$auth = $this->getUrl(3);
// la validité du lien est dépassé
2023-11-17 17:53:55 +01:00
if (
2024-07-17 20:13:53 +02:00
(time() - $this->getData(['module', $this->getUrl(0), 'users', $userId, 'timer']))
>= $this->getdata(['module', $this->getUrl(0), 'config', 'timeOut'])
2023-11-17 17:53:55 +01:00
) {
2024-07-17 20:13:53 +02:00
$check = false;
$notification = 'La validité du lien est dépassée';
}
// La clé est incorrecte ou le compte n'est pas en attente de validation
if (
$check
&& $auth !== $this->getData(['module', $this->getUrl(0), 'users', $userId, 'auth'])
&& $this->getData(['module', $this->getUrl(0), 'users', $userId, 'status']) !== self::STATUS_EMAIL_AWAITING
) {
$check = false;
$notification = 'Données incorrectes !';
2023-11-17 17:53:55 +01:00
}
2024-07-17 20:13:53 +02:00
// Double vérification pour le mot de passe
if (
$check
&& $this->getInput('registrationValidPassword', helper::FILTER_STRING_SHORT, true) !== $this->getInput('registrationValidConfirmPassword', helper::FILTER_STRING_SHORT, true)
) {
self::$inputNotices['registrationAddConfirmPassword'] = 'Les mots de passe ne sont pas identiques';
$check = false;
}
if ($check) {
if (
// Pas d'approbation par un administrateur
$this->getData(['module', $this->getUrl(0), 'config', 'approval']) === false
) {
// Créer le compte
$this->setData([
'user',
$userId,
[
'firstname' => $this->getData(['module', $this->getUrl(0), 'users', $userId, 'firstname']),
'lastname' => $this->getData(['module', $this->getUrl(0), 'users', $userId, 'lastname']),
'mail' => $this->getData(['module', $this->getUrl(0), 'users', $userId, 'mail']),
'password' => $this->getInput('registrationValidPassword', helper::FILTER_PASSWORD, true),
'group' => self::GROUP_MEMBER,
'profil' => 1,
'forgot' => 0,
'pseudo' => $userId,
'signature' => 1,
'language' => self::$siteContent,
]
]);
// Modifier le statut dans le module
$this->deleteData(['module', $this->getUrl(0), 'users', $userId]);
$notification = 'Votre inscription est confirmée';
} else {
// Approbation nécessaire
$this->setData(['module', $this->getUrl(0), 'users', $userId, 'status', self::STATUS_ACCOUNT_AWAITING]);
$notification = 'L\'inscription doit être approuvée par un administrateur';
}
}
// Valeurs en sortie
$this->addOutput([
'redirect' => $check ? helper::baseUrl() . $this->getdata(['module', $this->getUrl(0), 'config', 'pageSuccess']) : helper::baseUrl() . $this->getdata(['module', $this->getUrl(0), 'config', 'pageError']),
'notification' => $notification,
'state' => $check
]);
2023-11-03 18:31:35 +01:00
}
// Valeurs en sortie
$this->addOutput([
2024-07-17 20:13:53 +02:00
'title' => 'Saisie du mot de passe',
'view' => 'validate'
2023-11-03 18:31:35 +01:00
]);
}
/**
* Module de configuration
*/
public function config()
{
// Soumission du formulaire
if (
$this->getUser('permission', __CLASS__, __FUNCTION__) === true
&& $this->isPost()
) {
2024-07-17 20:13:53 +02:00
2023-11-03 18:31:35 +01:00
// Lire les options et les enregistrer
$this->setData([
'module',
$this->getUrl(0),
'config',
[
2024-07-17 20:13:53 +02:00
'timeOut' => $this->getInput('registrationConfigTimeOut', helper::FILTER_INT) * 60,
2023-11-03 18:31:35 +01:00
'pageSuccess' => $this->getInput('registrationConfigSuccess'),
'pageError' => $this->getInput('registrationConfigError'),
2023-11-17 17:53:55 +01:00
'approval' => $this->getInput('registrationConfigState', helper::FILTER_BOOLEAN),
2023-11-03 18:31:35 +01:00
'mailRegisterContent' => $this->getInput('registrationconfigMailRegisterContent', null, true),
'mailValidateContent' => $this->getInput('registrationconfigMailValidateContent', null, true),
2024-07-17 20:13:53 +02:00
'layout' => $this->getInput('registrationConfigLayout'),
'filter' => $this->getInput('registrationConfigFilter', helper::FILTER_STRING_SHORT)
2023-11-03 18:31:35 +01:00
]
]);
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(),
'notification' => 'Modifications enregistrées',
'state' => true
]);
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Configuration',
'view' => 'config',
'vendor' => ['tinymce']
]);
}
}