]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Poll/newpoll.php
0386f3e3b8cacab68f0e09ca94426ffb0eda02c4
[quix0rs-gnu-social.git] / plugins / Poll / newpoll.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Add a new Poll
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Poll
24  * @package   StatusNet
25  * @author    Brion Vibber <brion@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30 if (!defined('STATUSNET')) {
31     // This check helps protect against security problems;
32     // your code file can't be executed directly from the web.
33     exit(1);
34 }
35
36 /**
37  * Add a new Poll
38  *
39  * @category  Poll
40  * @package   StatusNet
41  * @author    Evan Prodromou <evan@status.net>
42  * @copyright 2010 StatusNet, Inc.
43  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
44  * @link      http://status.net/
45  */
46 class NewPollAction extends Action
47 {
48     protected $user        = null;
49     protected $error       = null;
50     protected $complete    = null;
51
52     protected $question    = null;
53     protected $options     = array();
54
55     /**
56      * Returns the title of the action
57      *
58      * @return string Action title
59      */
60     function title()
61     {
62         return _m('New poll');
63     }
64
65     /**
66      * For initializing members of the class.
67      *
68      * @param array $argarray misc. arguments
69      *
70      * @return boolean true
71      */
72     function prepare($argarray)
73     {
74         parent::prepare($argarray);
75
76         $this->user = common_current_user();
77
78         if (empty($this->user)) {
79             throw new ClientException(_m('You must be logged in to post a poll.'),
80                                       403);
81         }
82
83         if ($this->isPost()) {
84             $this->checkSessionToken();
85         }
86
87         $this->question = $this->trimmed('question');
88         for ($i = 1; $i < 20; $i++) {
89             $opt = $this->trimmed('option' . $i);
90             if ($opt != '') {
91                 $this->options[] = $opt;
92             }
93         }
94
95         return true;
96     }
97
98     /**
99      * Handler method
100      *
101      * @param array $argarray is ignored since it's now passed in in prepare()
102      *
103      * @return void
104      */
105     function handle($argarray=null)
106     {
107         parent::handle($argarray);
108
109         if ($this->isPost()) {
110             $this->newPoll();
111         } else {
112             $this->showPage();
113         }
114
115         return;
116     }
117
118     /**
119      * Add a new Poll
120      *
121      * @return void
122      */
123     function newPoll()
124     {
125         if ($this->boolean('ajax')) {
126             StatusNet::setApi(true);
127         }
128         try {
129             if (empty($this->question)) {
130                 throw new ClientException(_m('Poll must have a question.'));
131             }
132
133             if (count($this->options) < 2) {
134                 throw new ClientException(_m('Poll must have at least two options.'));
135             }
136
137
138             $saved = Poll::saveNew($this->user->getProfile(),
139                                               $this->question,
140                                               $this->options);
141         } catch (ClientException $ce) {
142             $this->error = $ce->getMessage();
143             $this->showPage();
144             return;
145         }
146
147         if ($this->boolean('ajax')) {
148             header('Content-Type: text/xml;charset=utf-8');
149             $this->xw->startDocument('1.0', 'UTF-8');
150             $this->elementStart('html');
151             $this->elementStart('head');
152             // TRANS: Page title after sending a notice.
153             $this->element('title', null, _m('Notice posted'));
154             $this->elementEnd('head');
155             $this->elementStart('body');
156             $this->showNotice($saved);
157             $this->elementEnd('body');
158             $this->elementEnd('html');
159         } else {
160             common_redirect($saved->bestUrl(), 303);
161         }
162     }
163
164     /**
165      * Output a notice
166      *
167      * Used to generate the notice code for Ajax results.
168      *
169      * @param Notice $notice Notice that was saved
170      *
171      * @return void
172      */
173     function showNotice($notice)
174     {
175         class_exists('NoticeList'); // @fixme hack for autoloader
176         $nli = new NoticeListItem($notice, $this);
177         $nli->show();
178     }
179
180     /**
181      * Show the Poll form
182      *
183      * @return void
184      */
185     function showContent()
186     {
187         if (!empty($this->error)) {
188             $this->element('p', 'error', $this->error);
189         }
190
191         $form = new NewPollForm($this,
192                                  $this->question,
193                                  $this->options);
194
195         $form->show();
196
197         return;
198     }
199
200     /**
201      * Return true if read only.
202      *
203      * MAY override
204      *
205      * @param array $args other arguments
206      *
207      * @return boolean is read only action?
208      */
209     function isReadOnly($args)
210     {
211         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
212             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
213             return true;
214         } else {
215             return false;
216         }
217     }
218 }