date.chapril.org-framadate/studs.php

154 lines
6.0 KiB
PHP
Raw Normal View History

2011-05-15 01:32:47 +02: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)
*/
2014-12-25 00:55:52 +01:00
use Framadate\Services\LogService;
use Framadate\Services\PollService;
2014-12-17 13:17:08 +01:00
use Framadate\Services\InputService;
use Framadate\Services\MailService;
2015-10-13 01:03:41 +02:00
use Framadate\Services\NotificationService;
2014-12-17 13:17:08 +01:00
use Framadate\Message;
2014-12-17 13:47:14 +01:00
use Framadate\Utils;
use Framadate\Editable;
include_once __DIR__ . '/app/inc/init.php';
2014-12-17 13:17:08 +01:00
/* Variables */
/* --------- */
2014-12-17 13:47:14 +01:00
$poll_id = null;
$poll = null;
2014-12-17 13:17:08 +01:00
$message = null;
$editingVoteId = 0;
/* Services */
/*----------*/
2015-01-06 23:52:52 +01:00
$logService = new LogService();
2014-12-25 00:55:52 +01:00
$pollService = new PollService($connect, $logService);
2014-12-17 13:17:08 +01:00
$inputService = new InputService();
$mailService = new MailService($config['use_smtp']);
2015-10-13 01:03:41 +02:00
$notificationService = new NotificationService($mailService);
/* PAGE */
/* ---- */
2011-05-15 03:56:54 +02:00
2015-04-07 17:09:18 +02:00
if (!empty($_GET['poll'])) {
$poll_id = filter_input(INPUT_GET, 'poll', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => POLL_REGEX]]);
if (strlen($poll_id) === 16) {
$poll = $pollService->findById($poll_id);
}
}
if (!$poll) {
2015-04-07 20:06:24 +02:00
$smarty->assign('error', __('Error', 'This poll doesn\'t exist !'));
$smarty->display('error.tpl');
exit;
2011-05-15 03:56:54 +02:00
}
// -------------------------------
2014-12-16 00:45:16 +01:00
// A vote is going to be edited
// -------------------------------
if (!empty($_GET['vote'])) {
$editingVoteId = filter_input(INPUT_GET, 'vote', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => POLL_REGEX]]);
2014-12-16 00:45:16 +01:00
}
// -------------------------------
2014-12-17 13:17:08 +01:00
// Something to save (edit or add)
// -------------------------------
2014-12-16 00:45:16 +01:00
if (!empty($_POST['save'])) { // Save edition of an old vote
2015-04-11 16:02:07 +02:00
$name = $inputService->filterName($_POST['name']);
2014-12-16 00:45:16 +01:00
$editedVote = filter_input(INPUT_POST, 'save', FILTER_VALIDATE_INT);
$choices = $inputService->filterArray($_POST['choices'], FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => CHOICE_REGEX]]);
2014-12-17 13:17:08 +01:00
2014-12-17 13:23:32 +01:00
if (empty($editedVote)) {
2015-04-07 20:06:24 +02:00
$message = new Message('danger', __('Error', 'Something is going wrong...'));
2014-12-17 13:17:08 +01:00
}
if (count($choices) != count($_POST['choices'])) {
2015-04-07 20:06:24 +02:00
$message = new Message('danger', __('Error', 'There is a problem with your choices'));
2014-12-17 13:17:08 +01:00
}
2014-12-16 00:45:16 +01:00
2014-12-17 13:17:08 +01:00
if ($message == null) {
// Update vote
$result = $pollService->updateVote($poll_id, $editedVote, $name, $choices);
2014-12-17 13:17:08 +01:00
if ($result) {
2015-04-07 17:58:45 +02:00
if ($poll->editable == Editable::EDITABLE_BY_OWN) {
$editedVoteUniqId = filter_input(INPUT_POST, 'edited_vote', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => POLL_REGEX]]);
$urlEditVote = Utils::getUrlSondage($poll_id, false, $editedVoteUniqId);
2015-04-07 22:00:48 +02:00
$message = new Message('success', __('studs', 'Your vote has been registered successfully, but be careful: regarding this poll options, you need to keep this personal link to edit your own vote:'), $urlEditVote);
2015-04-07 17:58:45 +02:00
} else {
2015-04-07 20:06:24 +02:00
$message = new Message('success', __('studs', 'Update vote succeeded'));
2015-04-07 17:58:45 +02:00
}
2015-10-26 16:26:22 +01:00
$notificationService->sendUpdateNotification($poll, NotificationService::UPDATE_VOTE, $name);
2014-12-17 13:17:08 +01:00
} else {
2015-04-07 20:06:24 +02:00
$message = new Message('danger', __('Error', 'Update vote failed'));
2014-12-16 00:45:16 +01:00
}
}
2014-12-17 13:17:08 +01:00
} elseif (isset($_POST['save'])) { // Add a new vote
2015-04-11 16:02:07 +02:00
$name = $inputService->filterName($_POST['name']);
$choices = $inputService->filterArray($_POST['choices'], FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => CHOICE_REGEX]]);
2014-12-17 13:17:08 +01:00
if ($name == null) {
$message = new Message('danger', __('Error', 'The name is invalid.'));
2014-12-17 13:17:08 +01:00
}
if (count($choices) != count($_POST['choices'])) {
2015-05-29 18:11:12 +02:00
$message = new Message('danger', __('Error', 'There is a problem with your choices'));
2014-12-17 13:17:08 +01:00
}
2014-12-16 00:45:16 +01:00
2014-12-17 13:17:08 +01:00
if ($message == null) {
// Add vote
$result = $pollService->addVote($poll_id, $name, $choices);
2014-12-16 00:45:16 +01:00
if ($result) {
if ($poll->editable == Editable::EDITABLE_BY_OWN) {
$urlEditVote = Utils::getUrlSondage($poll_id, false, $result->uniqId);
2015-04-07 22:00:48 +02:00
$message = new Message('success', __('studs', 'Your vote has been registered successfully, but be careful: regarding this poll options, you need to keep this personal link to edit your own vote:'), $urlEditVote);
} else {
$message = new Message('success', __('studs', 'Adding the vote succeeded'));
}
2015-10-26 16:26:22 +01:00
$notificationService->sendUpdateNotification($poll, NotificationService::ADD_VOTE, $name);
2014-12-16 00:45:16 +01:00
} else {
$message = new Message('danger', __('Error', 'Adding vote failed'));
2014-12-16 00:45:16 +01:00
}
}
}
2014-12-17 13:47:14 +01:00
}
// Retrieve data
2015-05-30 23:36:04 +02:00
$slots = $pollService->allSlotsByPoll($poll);
$votes = $pollService->allVotesByPollId($poll_id);
$comments = $pollService->allCommentsByPollId($poll_id);
2014-10-21 01:31:26 +02:00
// Assign data to template
$smarty->assign('poll_id', $poll_id);
$smarty->assign('poll', $poll);
2015-04-07 20:06:24 +02:00
$smarty->assign('title', __('Generic', 'Poll') . ' - ' . $poll->title);
2015-03-13 12:56:45 +01:00
$smarty->assign('expired', strtotime($poll->end_date) < time());
2015-05-29 17:46:29 +02:00
$smarty->assign('deletion_date', strtotime($poll->end_date) + PURGE_DELAY * 86400);
$smarty->assign('slots', $poll->format === 'D' ? $pollService->splitSlots($slots) : $slots);
2014-12-17 13:17:08 +01:00
$smarty->assign('votes', $pollService->splitVotes($votes));
$smarty->assign('best_choices', $pollService->computeBestChoices($votes));
$smarty->assign('comments', $comments);
2014-12-16 00:45:16 +01:00
$smarty->assign('editingVoteId', $editingVoteId);
2014-12-17 13:17:08 +01:00
$smarty->assign('message', $message);
$smarty->assign('admin', false);
$smarty->assign('hidden', $poll->hidden);
$smarty->display('studs.tpl');