Skip to content
Snippets Groups Projects
studs.php 4.11 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/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)
Olivier PEREZ's avatar
Olivier PEREZ committed
use Framadate\Services\InputService;
use Framadate\Utils;
Olivier PEREZ's avatar
Olivier PEREZ committed
use Framadate\Message;

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

Olivier PEREZ's avatar
Olivier PEREZ committed
/* Variables */
Olivier PEREZ's avatar
Olivier PEREZ committed
/* --------- */
Olivier PEREZ's avatar
Olivier PEREZ committed
$message = null;
/* Services */
/*----------*/

$pollService = new PollService($connect);
Olivier PEREZ's avatar
Olivier PEREZ committed
$inputService = new InputService();
Olivier PEREZ's avatar
Olivier PEREZ committed
/* PAGE */
/* ---- */
Olivier PEREZ's avatar
Olivier PEREZ committed
if(!empty($_GET['poll'])) {
    $poll_id = filter_input(INPUT_GET, 'poll', FILTER_VALIDATE_REGEXP, ['options'=>['regexp'=>'/^[a-z0-9]+$/']]);
$poll = $pollService->findById($poll_id);
Olivier PEREZ's avatar
Olivier PEREZ committed
if (!$poll) {
    $smarty->assign('error', 'This poll doesn\'t exist');
    $smarty->display('error.tpl');
    exit;
// A vote is going to be edited
if (!empty($_POST['edit_vote'])) {
    // TODO Try what does filter_input with a wrong value
    $editingVoteId = filter_input(INPUT_POST, 'edit_vote', FILTER_VALIDATE_INT);
} else {
    $editingVoteId = 0;
}


Olivier PEREZ's avatar
Olivier PEREZ committed
// Something to save (edit or add)
if (!empty($_POST['save'])) { // Save edition of an old vote
    $editedVote = filter_input(INPUT_POST, 'save', FILTER_VALIDATE_INT);
Olivier PEREZ's avatar
Olivier PEREZ committed
    $choices = $inputService->filterArray($_POST['choices'], FILTER_VALIDATE_REGEXP, ['options'=>['regexp'=>'/^[012]$/']]);

    if (empty($editedVote)) {
        $message = new Message('danger', _('Something is going wrong...'));
Olivier PEREZ's avatar
Olivier PEREZ committed
    }
    if (count($choices) != count($_POST['choices'])) {
        $message = new Message('danger', _('There is a problem with your choices.'));
    }
Olivier PEREZ's avatar
Olivier PEREZ committed
    if ($message == null) {
        // Update vote
        $result = $pollService->updateVote($poll_id, $editedVote, $choices);
        if ($result) {
            $message = new Message('success', _('Update vote successfully!'));
        } else {
            $message = new Message('danger', _('Update vote failed!'));
Olivier PEREZ's avatar
Olivier PEREZ committed
} 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.'));
    }
Olivier PEREZ's avatar
Olivier PEREZ committed
    if ($message == null) {
        // Add vote
        $result = $pollService->addVote($poll_id, $name, $choices);
        if ($result) {
Olivier PEREZ's avatar
Olivier PEREZ committed
            $message = new Message('success', _('Update vote successfully!'));
        } else {
Olivier PEREZ's avatar
Olivier PEREZ committed
            $message = new Message('danger', _('Update vote failed!'));
Olivier PEREZ's avatar
Olivier PEREZ committed
// Retrieve data
$slots = $pollService->allSlotsByPollId($poll_id);
$votes = $pollService->allUserVotesByPollId($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);
$smarty->assign('title', _('Poll') . ' - ' . $poll->title);
Olivier PEREZ's avatar
Olivier PEREZ committed
$smarty->assign('slots', $pollService->splitSlots($slots));
$smarty->assign('votes', $pollService->splitVotes($votes));
$smarty->assign('best_moments', $pollService->computeBestMoments($votes));
$smarty->assign('comments', $comments);
$smarty->assign('editingVoteId', $editingVoteId);
Olivier PEREZ's avatar
Olivier PEREZ committed
$smarty->assign('message', $message);
//Utils::debug(computeBestMoments($votes));exit;
Olivier PEREZ's avatar
Olivier PEREZ committed
$smarty->display('studs.tpl');