2015-01-07 14:01:08 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This software is governed by the CeCILL-B license. If a copy of this license
|
|
|
|
* is not distributed with this file, you can obtain one at
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
|
|
|
|
*
|
|
|
|
* Authors of STUdS (initial project): Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
|
|
|
|
* Authors of Framadate/OpenSondate: Framasoft (https://github.com/framasoft)
|
|
|
|
*
|
|
|
|
* =============================
|
|
|
|
*
|
|
|
|
* Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
|
|
|
|
* ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt
|
|
|
|
*
|
|
|
|
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
|
|
|
|
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
|
|
|
|
*/
|
|
|
|
|
|
|
|
use Framadate\Services\AdminPollService;
|
|
|
|
use Framadate\Services\LogService;
|
|
|
|
use Framadate\Services\PollService;
|
2015-01-10 16:35:21 +01:00
|
|
|
use Framadate\Services\SecurityService;
|
2015-01-07 14:01:08 +01:00
|
|
|
use Framadate\Services\SuperAdminService;
|
|
|
|
use Framadate\Utils;
|
|
|
|
|
|
|
|
include_once __DIR__ . '/../app/inc/init.php';
|
|
|
|
include_once __DIR__ . '/../bandeaux.php';
|
|
|
|
|
2015-01-07 22:47:34 +01:00
|
|
|
/* Variables */
|
|
|
|
/* --------- */
|
|
|
|
|
|
|
|
$polls = null;
|
|
|
|
$poll_to_delete = null;
|
|
|
|
|
2015-01-07 14:01:08 +01:00
|
|
|
/* Services */
|
|
|
|
/*----------*/
|
2015-01-07 22:47:34 +01:00
|
|
|
|
2015-01-07 14:01:08 +01:00
|
|
|
$logService = new LogService();
|
|
|
|
$pollService = new PollService($connect, $logService);
|
|
|
|
$adminPollService = new AdminPollService($connect, $pollService, $logService);
|
|
|
|
$superAdminService = new SuperAdminService($connect);
|
2015-01-10 16:35:21 +01:00
|
|
|
$securityService = new SecurityService();
|
2015-01-07 14:01:08 +01:00
|
|
|
|
2015-01-07 22:47:34 +01:00
|
|
|
/* PAGE */
|
|
|
|
/* ---- */
|
2015-01-07 14:01:08 +01:00
|
|
|
|
2015-01-10 16:35:21 +01:00
|
|
|
if (!empty($_POST['delete_poll']) && $securityService->checkCsrf('admin', $_POST['csrf'])) {
|
|
|
|
$delete_id = filter_input(INPUT_POST, 'delete_poll', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => POLL_REGEX]]);
|
2015-01-07 22:47:34 +01:00
|
|
|
$poll_to_delete = $pollService->findById($delete_id);
|
2015-01-07 14:01:08 +01:00
|
|
|
}
|
|
|
|
|
2015-01-07 22:47:34 +01:00
|
|
|
// Traitement de la confirmation de suppression
|
2015-01-10 16:35:21 +01:00
|
|
|
if (!empty($_POST['delete_confirm']) && $securityService->checkCsrf('admin', $_POST['csrf'])) {
|
|
|
|
$poll_id = filter_input(INPUT_POST, 'delete_confirm', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => POLL_REGEX]]);
|
2015-01-07 22:47:34 +01:00
|
|
|
$adminPollService->deleteEntirePoll($poll_id);
|
2015-01-07 14:01:08 +01:00
|
|
|
}
|
|
|
|
|
2015-01-07 22:47:34 +01:00
|
|
|
$polls = $superAdminService->findAllPolls();
|
|
|
|
|
|
|
|
// Assign data to template
|
|
|
|
$smarty->assign('polls', $polls);
|
|
|
|
$smarty->assign('poll_to_delete', $poll_to_delete);
|
|
|
|
$smarty->assign('log_file', is_readable('../' . LOG_FILE) ? LOG_FILE : null);
|
2015-01-10 16:35:21 +01:00
|
|
|
$smarty->assign('crsf', $securityService->getToken('admin'));
|
2015-01-07 14:01:08 +01:00
|
|
|
|
2015-01-07 22:47:34 +01:00
|
|
|
$smarty->display('admin/polls.tpl');
|