date.chapril.org-framadate/studs.php

221 lines
8.1 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;
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';
/* Constants */
/* --------- */
const UPDATE_VOTE = 1;
const ADD_VOTE = 2;
const ADD_COMMENT = 3;
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']);
/* Functions */
/*-----------*/
/**
* Send a notification to the poll admin to notify him about an update.
*
* @param $poll stdClass The poll
* @param $mailService MailService The mail service
* @param $name string The name user who triggered the notification
* @param $type int cf: Constants on the top of this page
*/
function sendUpdateNotification($poll, $mailService, $name, $type) {
if (!isset($_SESSION['mail_sent'])) {
$_SESSION['mail_sent'] = [];
}
if ($poll->receiveNewVotes) {
2015-04-07 20:06:24 +02:00
$subject = '[' . NOMAPPLICATION . '] ' . __('Mail', 'Poll\'s participation') . ' : ' . $poll->title;
$message = $name . ' ';
switch ($type) {
case UPDATE_VOTE:
2015-04-07 20:06:24 +02:00
$message .= __('Mail', "updated a vote.\nYou can find your poll at the link") . " :\n\n";
break;
case ADD_VOTE:
2015-04-07 20:06:24 +02:00
$message .= __('Mail', "filled a vote.\nYou can find your poll at the link") . " :\n\n";
break;
case ADD_COMMENT:
2015-04-07 20:06:24 +02:00
$message .= __('Mail', "wrote a comment.\nYou can find your poll at the link") . " :\n\n";
break;
}
$message .= Utils::getUrlSondage($poll->admin_id, true) . "\n\n";
$messageTypeKey = $type . '-' . $poll->id;
$mailService->send($poll->admin_mail, $subject, $message, $messageTypeKey);
}
}
/* 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
}
sendUpdateNotification($poll, $mailService, $name, UPDATE_VOTE);
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'));
}
sendUpdateNotification($poll, $mailService, $name, ADD_VOTE);
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
// -------------------------------
// Add a comment
// -------------------------------
if (isset($_POST['add_comment'])) {
2015-04-11 16:02:07 +02:00
$name = $inputService->filterName($_POST['name']);
$comment = $inputService->filterComment($_POST['comment']);
2014-12-17 13:47:14 +01:00
if ($name == null) {
$message = new Message('danger', __('Error', 'The name is invalid.'));
2014-12-17 13:47:14 +01:00
}
if ($message == null) {
// Add comment
$result = $pollService->addComment($poll_id, $name, $comment);
if ($result) {
2015-04-07 20:06:24 +02:00
$message = new Message('success', __('Comments', 'Comment added'));
sendUpdateNotification($poll, $mailService, $name, ADD_COMMENT);
2014-12-17 13:47:14 +01:00
} else {
2015-04-07 20:06:24 +02:00
$message = new Message('danger', __('Error', 'Comment failed'));
2014-12-17 13:47:14 +01:00
}
}
}
// Retrieve data
$slots = $pollService->allSlotsByPollId($poll_id);
$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->assign('parameter_name_regex', NAME_REGEX);
$smarty->display('studs.tpl');