2011-05-15 01:32:47 +02:00
|
|
|
<?php
|
2014-09-04 17:52:18 +02:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
*
|
2014-07-04 11:21:31 +02:00
|
|
|
* =============================
|
2014-09-04 17:52:18 +02: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
|
|
|
|
*
|
2014-07-04 11:21:31 +02:00
|
|
|
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
|
2014-09-04 17:52:18 +02:00
|
|
|
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
|
2014-07-04 11:21:31 +02:00
|
|
|
*/
|
2014-12-25 00:55:52 +01:00
|
|
|
use Framadate\Services\LogService;
|
2014-12-16 00:02:01 +01:00
|
|
|
use Framadate\Services\PollService;
|
2014-12-17 13:17:08 +01:00
|
|
|
use Framadate\Services\InputService;
|
2014-12-23 00:58:00 +01:00
|
|
|
use Framadate\Services\MailService;
|
2014-12-17 13:17:08 +01:00
|
|
|
use Framadate\Message;
|
2014-12-17 13:47:14 +01:00
|
|
|
use Framadate\Utils;
|
2014-09-04 17:52:18 +02:00
|
|
|
|
|
|
|
include_once __DIR__ . '/app/inc/init.php';
|
|
|
|
|
2014-12-17 13:17:08 +01:00
|
|
|
/* Variables */
|
2014-12-12 13:43:43 +01:00
|
|
|
/* --------- */
|
2014-12-23 00:58:00 +01:00
|
|
|
|
2014-12-17 13:47:14 +01:00
|
|
|
$poll_id = null;
|
2014-12-17 23:20:12 +01:00
|
|
|
$poll = null;
|
2014-12-17 13:17:08 +01:00
|
|
|
$message = null;
|
2014-12-17 23:43:06 +01:00
|
|
|
$editingVoteId = 0;
|
2014-12-14 00:16:49 +01:00
|
|
|
|
2014-12-16 00:02:01 +01:00
|
|
|
/* Services */
|
|
|
|
/*----------*/
|
2015-01-03 17:24:39 +01:00
|
|
|
|
2014-12-25 00:55:52 +01:00
|
|
|
$logService = new LogService(LOG_FILE);
|
|
|
|
$pollService = new PollService($connect, $logService);
|
2014-12-17 13:17:08 +01:00
|
|
|
$inputService = new InputService();
|
2014-12-23 00:58:00 +01:00
|
|
|
$mailService = new MailService($config['use_smtp']);
|
|
|
|
|
|
|
|
/* Functions */
|
|
|
|
/*-----------*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a notification to the poll admin to notify him about an update.
|
|
|
|
*
|
|
|
|
* @param $poll Object The poll
|
|
|
|
* @param $mailService MailService The mail service
|
|
|
|
*/
|
|
|
|
function sendUpdateNotification($poll, $mailService) {
|
2014-12-30 01:41:25 +01:00
|
|
|
if ($poll->receiveNewVotes && !isset($_SESSION['mail_sent'][$poll->id])) {
|
2014-12-23 00:58:00 +01:00
|
|
|
|
|
|
|
$subject = '[' . NOMAPPLICATION . '] ' . _('Poll\'s participation') . ' : ' . html_entity_decode($poll->title, ENT_QUOTES, 'UTF-8');
|
|
|
|
$message = html_entity_decode('"$nom" ', ENT_QUOTES, 'UTF-8') .
|
|
|
|
_('has filled a line.\nYou can find your poll at the link') . " :\n\n" .
|
|
|
|
Utils::getUrlSondage($poll->admin_poll_id, true) . " \n\n" .
|
|
|
|
_('Thanks for your confidence.') . "\n" . NOMAPPLICATION;
|
|
|
|
|
|
|
|
$mailService->send($poll->admin_mail, $subject, $message);
|
|
|
|
|
2014-12-30 01:41:25 +01:00
|
|
|
$_SESSION["mail_sent"][$poll->id] = true;
|
2014-12-23 00:58:00 +01:00
|
|
|
}
|
|
|
|
}
|
2014-12-16 00:02:01 +01:00
|
|
|
|
2014-12-12 13:43:43 +01:00
|
|
|
/* PAGE */
|
|
|
|
/* ---- */
|
2011-05-15 03:56:54 +02:00
|
|
|
|
2014-12-12 13:43:43 +01:00
|
|
|
if(!empty($_GET['poll'])) {
|
2014-12-16 00:45:16 +01:00
|
|
|
$poll_id = filter_input(INPUT_GET, 'poll', FILTER_VALIDATE_REGEXP, ['options'=>['regexp'=>'/^[a-z0-9]+$/']]);
|
2014-12-17 23:20:12 +01:00
|
|
|
$poll = $pollService->findById($poll_id);
|
2014-09-04 17:52:18 +02:00
|
|
|
}
|
|
|
|
|
2014-12-12 13:43:43 +01:00
|
|
|
if (!$poll) {
|
|
|
|
$smarty->assign('error', 'This poll doesn\'t exist');
|
|
|
|
$smarty->display('error.tpl');
|
|
|
|
exit;
|
2011-05-15 03:56:54 +02:00
|
|
|
}
|
|
|
|
|
2014-12-17 13:39:12 +01:00
|
|
|
// -------------------------------
|
2014-12-16 00:45:16 +01:00
|
|
|
// A vote is going to be edited
|
2014-12-17 13:39:12 +01:00
|
|
|
// -------------------------------
|
|
|
|
|
2014-12-16 00:45:16 +01:00
|
|
|
if (!empty($_POST['edit_vote'])) {
|
|
|
|
$editingVoteId = filter_input(INPUT_POST, 'edit_vote', FILTER_VALIDATE_INT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-17 13:39:12 +01:00
|
|
|
// -------------------------------
|
2014-12-17 13:17:08 +01:00
|
|
|
// Something to save (edit or add)
|
2014-12-17 13:39:12 +01:00
|
|
|
// -------------------------------
|
|
|
|
|
2014-12-16 00:45:16 +01:00
|
|
|
if (!empty($_POST['save'])) { // Save edition of an old vote
|
|
|
|
$editedVote = filter_input(INPUT_POST, 'save', FILTER_VALIDATE_INT);
|
2014-12-17 13:17:08 +01:00
|
|
|
$choices = $inputService->filterArray($_POST['choices'], FILTER_VALIDATE_REGEXP, ['options'=>['regexp'=>'/^[012]$/']]);
|
|
|
|
|
2014-12-17 13:23:32 +01:00
|
|
|
if (empty($editedVote)) {
|
|
|
|
$message = new Message('danger', _('Something is going wrong...'));
|
2014-12-17 13:17:08 +01:00
|
|
|
}
|
|
|
|
if (count($choices) != count($_POST['choices'])) {
|
|
|
|
$message = new Message('danger', _('There is a problem with your choices.'));
|
|
|
|
}
|
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, $choices);
|
|
|
|
if ($result) {
|
2014-12-17 13:47:14 +01:00
|
|
|
$message = new Message('success', _('Update vote successfully.'));
|
2014-12-23 00:58:00 +01:00
|
|
|
sendUpdateNotification($poll, $mailService);
|
2014-12-17 13:17:08 +01:00
|
|
|
} else {
|
2014-12-17 13:47:14 +01:00
|
|
|
$message = new Message('danger', _('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
|
|
|
|
$name = filter_input(INPUT_POST, 'name', FILTER_VALIDATE_REGEXP, ['options'=>['regexp'=>'/^[a-z0-9_ -]+$/i']]);
|
|
|
|
$choices = $inputService->filterArray($_POST['choices'], FILTER_VALIDATE_REGEXP, ['options'=>['regexp'=>'/^[012]$/']]);
|
|
|
|
|
|
|
|
if (empty($name)) {
|
|
|
|
$message = new Message('danger', _('Name is incorrect.'));
|
|
|
|
}
|
|
|
|
if (count($choices) != count($_POST['choices'])) {
|
|
|
|
$message = new Message('danger', _('There is a problem with your choices.'));
|
|
|
|
}
|
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) {
|
2014-12-17 13:47:14 +01:00
|
|
|
$message = new Message('success', _('Update vote successfully.'));
|
2014-12-23 00:58:00 +01:00
|
|
|
sendUpdateNotification($poll, $mailService);
|
2014-12-16 00:45:16 +01:00
|
|
|
} else {
|
2014-12-17 13:47:14 +01:00
|
|
|
$message = new Message('danger', _('Update vote failed.'));
|
2014-12-16 00:45:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-17 13:47:14 +01:00
|
|
|
// -------------------------------
|
|
|
|
// Add a comment
|
|
|
|
// -------------------------------
|
|
|
|
|
|
|
|
if (isset($_POST['add_comment'])) {
|
|
|
|
$name = filter_input(INPUT_POST, 'name', FILTER_VALIDATE_REGEXP, ['options'=>['regexp'=>'/^[a-z0-9_ -]+$/i']]);
|
|
|
|
$comment = filter_input(INPUT_POST, 'comment', FILTER_DEFAULT);
|
|
|
|
|
|
|
|
if (empty($name)) {
|
|
|
|
$message = new Message('danger', _('Name is incorrect.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($message == null) {
|
|
|
|
// Add comment
|
|
|
|
$result = $pollService->addComment($poll_id, $name, $comment);
|
|
|
|
if ($result) {
|
|
|
|
$message = new Message('success', _('Comment added.'));
|
|
|
|
} else {
|
|
|
|
$message = new Message('danger', _('Comment failed.'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-12-12 13:43:43 +01:00
|
|
|
// Retrieve data
|
2014-12-16 00:02:01 +01:00
|
|
|
$slots = $pollService->allSlotsByPollId($poll_id);
|
2015-01-03 17:24:39 +01:00
|
|
|
$votes = $pollService->allVotesByPollId($poll_id);
|
2014-12-16 00:02:01 +01:00
|
|
|
$comments = $pollService->allCommentsByPollId($poll_id);
|
2014-10-21 01:31:26 +02:00
|
|
|
|
2014-12-16 00:45:16 +01:00
|
|
|
|
2014-12-12 13:43:43 +01:00
|
|
|
// Assign data to template
|
|
|
|
$smarty->assign('poll_id', $poll_id);
|
|
|
|
$smarty->assign('poll', $poll);
|
|
|
|
$smarty->assign('title', _('Poll') . ' - ' . $poll->title);
|
2014-12-27 00:00:14 +01:00
|
|
|
$smarty->assign('slots', $poll->format === 'D' ? $pollService->splitSlots($slots) : $slots);
|
2014-12-17 13:17:08 +01:00
|
|
|
$smarty->assign('votes', $pollService->splitVotes($votes));
|
2014-12-27 00:19:48 +01:00
|
|
|
$smarty->assign('best_choices', $pollService->computeBestChoices($votes));
|
2014-12-15 13:49:25 +01:00
|
|
|
$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);
|
2014-12-17 23:43:06 +01:00
|
|
|
$smarty->assign('admin', false);
|
2014-09-04 17:52:18 +02:00
|
|
|
|
2014-12-12 13:43:43 +01:00
|
|
|
$smarty->display('studs.tpl');
|