2015-02-28 19:18:59 +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
|
2016-08-04 21:51:37 +02:00
|
|
|
* Authors of Framadate/OpenSondage: Framasoft (https://github.com/framasoft)
|
2015-02-28 19:18:59 +01:00
|
|
|
*
|
|
|
|
* =============================
|
|
|
|
*
|
|
|
|
* 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)
|
|
|
|
*/
|
|
|
|
|
2015-04-23 23:26:30 +02:00
|
|
|
use Framadate\Services\InputService;
|
2015-02-28 19:18:59 +01:00
|
|
|
use Framadate\Services\LogService;
|
|
|
|
use Framadate\Services\PurgeService;
|
|
|
|
use Framadate\Services\SecurityService;
|
|
|
|
|
|
|
|
include_once __DIR__ . '/../app/inc/init.php';
|
|
|
|
include_once __DIR__ . '/../bandeaux.php';
|
|
|
|
|
|
|
|
/* Variables */
|
|
|
|
/* --------- */
|
|
|
|
|
|
|
|
$message = null;
|
|
|
|
|
|
|
|
/* Services */
|
|
|
|
/*----------*/
|
|
|
|
|
|
|
|
$logService = new LogService();
|
|
|
|
$purgeService = new PurgeService($connect, $logService);
|
|
|
|
$securityService = new SecurityService();
|
2015-04-23 23:26:30 +02:00
|
|
|
$inputService = new InputService();
|
2015-02-28 19:18:59 +01:00
|
|
|
|
|
|
|
/* POST */
|
|
|
|
/*-----*/
|
2015-04-11 16:02:07 +02:00
|
|
|
|
2015-04-23 23:26:30 +02:00
|
|
|
$action = $inputService->filterName(isset($_POST['action']) ? $_POST['action'] : null);
|
2015-02-28 19:18:59 +01:00
|
|
|
|
|
|
|
/* PAGE */
|
|
|
|
/* ---- */
|
|
|
|
|
|
|
|
if ($action === 'purge' && $securityService->checkCsrf('admin', $_POST['csrf'])) {
|
|
|
|
$count = $purgeService->purgeOldPolls();
|
2015-04-07 20:06:24 +02:00
|
|
|
$message = __('Admin', 'Purged:') . ' ' . $count;
|
2015-02-28 19:18:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Assign data to template
|
|
|
|
$smarty->assign('message', $message);
|
|
|
|
$smarty->assign('crsf', $securityService->getToken('admin'));
|
|
|
|
|
2015-03-30 15:19:56 +02:00
|
|
|
$smarty->assign('title', __('Admin', 'Purge'));
|
2015-03-24 00:22:37 +01:00
|
|
|
|
2015-02-28 19:18:59 +01:00
|
|
|
$smarty->display('admin/purge.tpl');
|