Skip to content
Snippets Groups Projects
studs.php 10.6 KiB
Newer Older
Simon Leblanc's avatar
Simon Leblanc committed
<?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/OpenSondage: 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)
Olivier PEREZ's avatar
Olivier PEREZ committed
use Framadate\Exception\AlreadyExistsException;
use Framadate\Exception\ConcurrentEditionException;
use Framadate\Exception\ConcurrentVoteException;
use Framadate\Message;
use Framadate\Security\Token;
Olivier PEREZ's avatar
Olivier PEREZ committed
use Framadate\Services\InputService;
use Framadate\Services\LogService;
use Framadate\Services\MailService;
use Framadate\Services\NotificationService;
use Framadate\Services\PollService;
use Framadate\Services\SecurityService;
use Framadate\Services\SessionService;
use Framadate\Utils;

include_once __DIR__ . '/app/inc/init.php';

/* Constantes */
/* ---------- */

const USER_REMEMBER_VOTES_KEY = 'UserVotes';

Olivier PEREZ's avatar
Olivier PEREZ committed
/* Variables */
Olivier PEREZ's avatar
Olivier PEREZ committed
/* --------- */
$poll_id = null;
Olivier PEREZ's avatar
Olivier PEREZ committed
$message = null;
$editingVoteId = 0;
$accessGranted = true;
$resultPubliclyVisible = true;
Olivier PEREZ's avatar
Olivier PEREZ committed
$logService = new LogService();
$pollService = new PollService($connect, $logService);
Olivier PEREZ's avatar
Olivier PEREZ committed
$inputService = new InputService();
$mailService = new MailService($config['use_smtp'], $config['smtp_options']);
$notificationService = new NotificationService($mailService);
$securityService = new SecurityService();
$sessionService = new SessionService();
Olivier PEREZ's avatar
Olivier PEREZ committed
/* PAGE */
/* ---- */
Antonin's avatar
Antonin committed
if (!empty($_GET['poll'])) {
    $poll_id = filter_input(INPUT_GET, 'poll', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => POLL_REGEX]]);
    $poll = $pollService->findById($poll_id);
Olivier PEREZ's avatar
Olivier PEREZ committed
if (!$poll) {
Olivier PEREZ's avatar
Olivier PEREZ committed
    $smarty->assign('error', __('Error', 'This poll doesn\'t exist !'));
Olivier PEREZ's avatar
Olivier PEREZ committed
    $smarty->display('error.tpl');
    exit;
$editedVoteUniqueId = $sessionService->get(USER_REMEMBER_VOTES_KEY, $poll_id, '');

// -------------------------------
// Password verification
// -------------------------------

if (!is_null($poll->password_hash)) {
    // If we came from password submission
    $password = isset($_POST['password']) ? $_POST['password'] : null;
    if (!empty($password)) {
        $securityService->submitPollAccess($poll, $password);
    }
    if (!$securityService->canAccessPoll($poll)) {
        $accessGranted = false;
    $resultPubliclyVisible = $poll->results_publicly_visible;

    if (!$accessGranted && !empty($password)) {
        $message = new Message('danger', __('Password', 'Wrong password'));
    } else if (!$accessGranted && !$resultPubliclyVisible) {
        $message = new Message('danger', __('Password', 'You have to provide a password to access the poll.'));
    } else if (!$accessGranted && $resultPubliclyVisible) {
        $message = new Message('danger', __('Password', 'You have to provide a password so you can participate to the poll.'));
    }
}

// We allow actions only if access is granted
if ($accessGranted) {
    // -------------------------------
    // A vote is going to be edited
    // -------------------------------

    if (!empty($_GET['vote'])) {
        $editingVoteId = filter_input(INPUT_GET, 'vote', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => POLL_REGEX]]);
    // -------------------------------
    // Something to save (edit or add)
    // -------------------------------

    if (!empty($_POST['save'])) { // Save edition of an old vote
        $name = $inputService->filterName($_POST['name']);
        $editedVote = filter_input(INPUT_POST, 'save', FILTER_VALIDATE_INT);
        $choices = $inputService->filterArray($_POST['choices'], FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => CHOICE_REGEX]]);
Olivier PEREZ's avatar
Olivier PEREZ committed
        $slots_hash = $inputService->filterMD5($_POST['control']);

        if (empty($editedVote)) {
            $message = new Message('danger', __('Error', 'Something is going wrong...'));
        }
        if (count($choices) !== count($_POST['choices'])) {
            $message = new Message('danger', __('Error', 'There is a problem with your choices'));
        }

            // Update vote
Olivier PEREZ's avatar
Olivier PEREZ committed
            try {
                $result = $pollService->updateVote($poll_id, $editedVote, $name, $choices, $slots_hash);
                if ($result) {
                    if ($poll->editable === Editable::EDITABLE_BY_OWN) {
Olivier PEREZ's avatar
Olivier PEREZ committed
                        $editedVoteUniqueId = filter_input(INPUT_POST, 'edited_vote', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => POLL_REGEX]]);
Antonin's avatar
Antonin committed
                        $message = getMessageForOwnVoteEditableVote($sessionService, $smarty, $editedVoteUniqueId, $config['use_smtp'], $poll_id, $name);
Olivier PEREZ's avatar
Olivier PEREZ committed
                    } else {
                        $message = new Message('success', __('studs', 'Update vote succeeded'));
                    }
                    $notificationService->sendUpdateNotification($poll, NotificationService::UPDATE_VOTE, $name);
Olivier PEREZ's avatar
Olivier PEREZ committed
                    $message = new Message('danger', __('Error', 'Update vote failed'));
m's avatar
m committed
            } catch (AlreadyExistsException $aee) {
	            $message = new Message('danger', __('Error', 'The name you\'ve chosen already exist in this poll!'));
	        } catch (ConcurrentEditionException $cee) {
Olivier PEREZ's avatar
Olivier PEREZ committed
                $message = new Message('danger', __('Error', 'Poll has been updated before you vote'));
            } catch (ConcurrentVoteException $cve) {
                $message = new Message('danger', __('Error', "Your vote wasn't counted, because someone voted in the meantime and it conflicted with your choices and the poll conditions. Please retry."));
    } elseif (isset($_POST['save'])) { // Add a new vote
        $name = $inputService->filterName($_POST['name']);
        $choices = $inputService->filterArray($_POST['choices'], FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => CHOICE_REGEX]]);
Olivier PEREZ's avatar
Olivier PEREZ committed
        $slots_hash = $inputService->filterMD5($_POST['control']);
            $message = new Message('danger', __('Error', 'The name is invalid.'));
        }
        if (count($choices) !== count($_POST['choices'])) {
            $message = new Message('danger', __('Error', 'There is a problem with your choices'));
        }
Olivier PEREZ's avatar
Olivier PEREZ committed
            try {
                $result = $pollService->addVote($poll_id, $name, $choices, $slots_hash);
                if ($result) {
Thomas Citharel's avatar
Thomas Citharel committed
                    if (intval($poll->editable) === Editable::EDITABLE_BY_OWN) {
Olivier PEREZ's avatar
Olivier PEREZ committed
                        $editedVoteUniqueId = $result->uniqId;
Antonin's avatar
Antonin committed
                        $message = getMessageForOwnVoteEditableVote($sessionService, $smarty, $editedVoteUniqueId, $config['use_smtp'], $poll_id, $name);
Olivier PEREZ's avatar
Olivier PEREZ committed
                    } else {
                        $message = new Message('success', __('studs', 'Adding the vote succeeded'));
                    }
                    $notificationService->sendUpdateNotification($poll, NotificationService::ADD_VOTE, $name);
Olivier PEREZ's avatar
Olivier PEREZ committed
                    $message = new Message('danger', __('Error', 'Adding vote failed'));
Olivier PEREZ's avatar
Olivier PEREZ committed
            } catch (AlreadyExistsException $aee) {
                $message = new Message('danger', __('Error', 'You already voted'));
                $selectedNewVotes = $choices;
Olivier PEREZ's avatar
Olivier PEREZ committed
            } catch (ConcurrentEditionException $cee) {
                $message = new Message('danger', __('Error', 'Poll has been updated before you vote'));
            } catch (ConcurrentVoteException $cve) {
                $message = new Message('danger', __('Error', "Your vote wasn't counted, because someone voted in the meantime and it conflicted with your choices and the poll conditions. Please retry."));
Antonin's avatar
Antonin committed
// Functions
function getMessageForOwnVoteEditableVote(SessionService &$sessionService, Smarty &$smarty, $editedVoteUniqueId, $canUseSMTP, $poll_id, $name) {
    $sessionService->set(USER_REMEMBER_VOTES_KEY, $poll_id, $editedVoteUniqueId);
    $urlEditVote = Utils::getUrlSondage($poll_id, false, $editedVoteUniqueId);
    $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,
        __f('Poll results', 'Edit the line: %s', $name),
Antonin's avatar
Antonin committed
        'glyphicon-pencil');
    if ($canUseSMTP) {
        $token = new Token();
        $sessionService->set("Common", SESSION_EDIT_LINK_TOKEN, $token);
        $smarty->assign('editedVoteUniqueId', $editedVoteUniqueId);
        $smarty->assign('token', $token->getValue());
        $smarty->assign('poll_id', $poll_id);
        $message->includeTemplate = $smarty->fetch('part/form_remember_edit_link.tpl');
        $smarty->clearAssign('token');
    }
    return $message;
}

Olivier PEREZ's avatar
Olivier PEREZ committed
// Retrieve data
if ($resultPubliclyVisible || $accessGranted) {
    $slots = $pollService->allSlotsByPoll($poll);
    $votes = $pollService->allVotesByPollId($poll_id);
    $comments = $pollService->allCommentsByPollId($poll_id);
}
FramaJosephK's avatar
FramaJosephK committed

Olivier PEREZ's avatar
Olivier PEREZ committed
// Assign data to template
$smarty->assign('poll_id', $poll_id);
$smarty->assign('poll', $poll);
Olivier PEREZ's avatar
Olivier PEREZ committed
$smarty->assign('title', __('Generic', 'Poll') . ' - ' . $poll->title);
$smarty->assign('expired', strtotime($poll->end_date) < time());
Antonin's avatar
Antonin committed
$smarty->assign('deletion_date', strtotime($poll->end_date) + PURGE_DELAY * 86400);
$smarty->assign('slots', $poll->format === 'D' ? $pollService->splitSlots($slots) : $slots);
Olivier PEREZ's avatar
Olivier PEREZ committed
$smarty->assign('slots_hash',  $pollService->hashSlots($slots));
Olivier PEREZ's avatar
Olivier PEREZ committed
$smarty->assign('votes', $pollService->splitVotes($votes));
m's avatar
m committed
$smarty->assign('best_choices', $pollService->computeBestChoices($votes, $poll));
$smarty->assign('comments', $comments);
$smarty->assign('editingVoteId', $editingVoteId);
Olivier PEREZ's avatar
Olivier PEREZ committed
$smarty->assign('message', $message);
$smarty->assign('admin', false);
$smarty->assign('hidden', $poll->hidden);
$smarty->assign('accessGranted', $accessGranted);
$smarty->assign('resultPubliclyVisible', $resultPubliclyVisible);
$smarty->assign('editedVoteUniqueId', $editedVoteUniqueId);
$smarty->assign('ValueMax', $poll->ValueMax);
$smarty->assign('selectedNewVotes', $selectedNewVotes);
Olivier PEREZ's avatar
Olivier PEREZ committed
$smarty->display('studs.tpl');