Merge remote branch 'origin/xorg/maint' into xorg/master
[platal.git] / modules / survey.php
CommitLineData
8fe81c50 1<?php
2/***************************************************************************
5e1513f6 3 * Copyright (C) 2003-2011 Polytechnique.org *
8fe81c50 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22class SurveyModule extends PLModule
23{
8fe81c50 24 function handlers()
25 {
26 return array(
2f4b93be
FB
27 'survey' => $this->make_hook('index', AUTH_COOKIE),
28 'survey/vote' => $this->make_hook('vote', AUTH_COOKIE),
eb5a266d 29 'survey/edit' => $this->make_hook('edit', AUTH_COOKIE),
d0b836c9
FB
30 /*
31 'survey/result' => $this->make_hook('result', AUTH_COOKIE),
eb5a266d
SJ
32 'survey/ajax' => $this->make_hook('ajax', AUTH_COOKIE),
33 'survey/admin' => $this->make_hook('admin', AUTH_MDP, 'admin'),
34 'survey/admin/edit' => $this->make_hook('adminEdit', AUTH_MDP, 'admin'),
8fe81c50 35 'survey/admin/valid' => $this->make_hook('adminValidate', AUTH_MDP, 'admin'),
eb5a266d 36 'survey/admin/del' => $this->make_hook('adminDelete', AUTH_MDP, 'admin'),
2f4b93be 37 */ );
8fe81c50 38 }
8fe81c50 39
22264cd4 40 private function setup_page(PlPage $page)
8fe81c50 41 {
460d8f55 42 $this->load('survey.inc.php');
b7bad73e 43 $page->addJsLink('jquery.ui.xorg.js');
22264cd4
FB
44 $page->addJsLink('survey.js');
45 }
46
82af3fc3 47 function handler_index($page, $action = null)
22264cd4
FB
48 {
49 $this->setup_page($page);
5c6e38d7 50
2f4b93be
FB
51 $page->changeTpl('survey/index.tpl');
52 $page->assign('active', Survey::iterActive());
56c6950a 53 }
56c6950a 54
2f4b93be 55 function handler_vote(PlPage $page, $name)
9f01f40b 56 {
22264cd4 57 $this->setup_page($page);
2f4b93be 58 $page->changeTpl('survey/vote.tpl');
22264cd4 59
2f854773
FB
60 XDB::execute('delete from survey_votes');
61 XDB::execute('delete from survey_voters');
2f4b93be
FB
62 $survey = Survey::get($name);
63 if (is_null($survey)) {
64 return PL_NOT_FOUND;
12678e90 65 }
2f4b93be
FB
66 if (!$survey->canSee(S::user())) {
67 return PL_FORBIDDEN;
95fb3c74 68 }
90343d1e
FB
69 if (Post::has('vote')) {
70 $answers = Post::v('qid');
71 $vote = $survey->vote(S::user(), $answers);
72 if (is_null($vote)) {
73 $page->kill("Tu n'as pas le droit de voter à ce sondage.");
74 } else if ($vote->inError()) {
75 $page->trigError("Certaines réponses sont invalides et doivent être corrigées");
76 } else {
77 $vote->insert(true);
78 $page->trigSuccess("Ton vote a été enregistré");
79 }
80 }
2f4b93be 81 $page->assign('survey', $survey);
8fe81c50 82 }
d0b836c9
FB
83
84 function handler_edit(PlPage $page, $name = null)
85 {
22264cd4 86 $this->setup_page($page);
d0b836c9
FB
87 $page->changeTpl('survey/edit.tpl');
88
89 if (!is_null($name)) {
90 $survey = Survey::get($name);
91 } else {
92 $survey = new Survey();
93 $survey->id = null;
94 $survey->uid = S::user()->id();
95 }
99ec711f
FB
96 if (Post::has('valid')) {
97 $survey->title = Post::t('title');
98 $survey->shortname = Post::t('shortname');
99 $survey->description = Post::t('description');
100 $survey->begin = Post::t('begin');
101 $survey->end = Post::t('end');
102 $survey->flags = 'validated';
22264cd4 103 $survey->flags->addFlag('anonymous', Post::b('anonymous'));
99ec711f
FB
104
105 $q_edit = Post::v('q_edit');
106 $qs = array();
3ddf2584 107 $survey->clearQuestions();
99ec711f
FB
108 foreach ($q_edit as $qid => $q_desc) {
109 if (isset($q_desc['parent'])) {
110 $parent = $qs[$q_desc['parent']];
111 } else {
112 $parent = $survey;
113 }
114 $question = $parent->newQuestion($q_desc['type']);
115 $question->label = $q_desc['label'];
116 unset($q_desc['type']);
117 unset($q_desc['parent']);
118 unset($q_desc['label']);
119 $question->parameters = $q_desc;
120 $qs[$qid] = $question;
121 }
122 $survey->insert('true');
d0b836c9
FB
123 }
124 $page->assign('survey', $survey);
125 }
8fe81c50 126}
127
8602c852 128// vim:set et sw=4 sts=4 ts=4 foldmethod=marker enc=utf-8:
8fe81c50 129?>