]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Poll/newpoll.php
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
[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
47 class NewPollAction extends Action
48 {
49     protected $user        = null;
50     protected $error       = null;
51     protected $complete    = null;
52
53     protected $question    = null;
54     protected $options     = array();
55
56     /**
57      * Returns the title of the action
58      *
59      * @return string Action title
60      */
61
62     function title()
63     {
64         return _('New poll');
65     }
66
67     /**
68      * For initializing members of the class.
69      *
70      * @param array $argarray misc. arguments
71      *
72      * @return boolean true
73      */
74
75     function prepare($argarray)
76     {
77         parent::prepare($argarray);
78
79         $this->user = common_current_user();
80
81         if (empty($this->user)) {
82             throw new ClientException(_("Must be logged in to post a poll."),
83                                       403);
84         }
85
86         if ($this->isPost()) {
87             $this->checkSessionToken();
88         }
89
90         $this->question = $this->trimmed('question');
91         for ($i = 1; $i < 20; $i++) {
92             $opt = $this->trimmed('option' . $i);
93             if ($opt != '') {
94                 $this->options[] = $opt;
95             }
96         }
97
98         return true;
99     }
100
101     /**
102      * Handler method
103      *
104      * @param array $argarray is ignored since it's now passed in in prepare()
105      *
106      * @return void
107      */
108
109     function handle($argarray=null)
110     {
111         parent::handle($argarray);
112
113         if ($this->isPost()) {
114             $this->newPoll();
115         } else {
116             $this->showPage();
117         }
118
119         return;
120     }
121
122     /**
123      * Add a new Poll
124      *
125      * @return void
126      */
127
128     function newPoll()
129     {
130         if ($this->boolean('ajax')) {
131             StatusNet::setApi(true);
132         }
133         try {
134             if (empty($this->question)) {
135                 throw new ClientException(_('Poll must have a question.'));
136             }
137
138             if (count($this->options) < 2) {
139                 throw new ClientException(_('Poll must have at least two options.'));
140             }
141
142
143             $saved = Poll::saveNew($this->user->getProfile(),
144                                               $this->question,
145                                               $this->options);
146
147         } catch (ClientException $ce) {
148             $this->error = $ce->getMessage();
149             $this->showPage();
150             return;
151         }
152
153         if ($this->boolean('ajax')) {
154             header('Content-Type: text/xml;charset=utf-8');
155             $this->xw->startDocument('1.0', 'UTF-8');
156             $this->elementStart('html');
157             $this->elementStart('head');
158             // TRANS: Page title after sending a notice.
159             $this->element('title', null, _('Notice posted'));
160             $this->elementEnd('head');
161             $this->elementStart('body');
162             $this->showNotice($saved);
163             $this->elementEnd('body');
164             $this->elementEnd('html');
165         } else {
166             common_redirect($saved->bestUrl(), 303);
167         }
168     }
169
170     /**
171      * Output a notice
172      *
173      * Used to generate the notice code for Ajax results.
174      *
175      * @param Notice $notice Notice that was saved
176      *
177      * @return void
178      */
179     function showNotice($notice)
180     {
181         class_exists('NoticeList'); // @fixme hack for autoloader
182         $nli = new NoticeListItem($notice, $this);
183         $nli->show();
184     }
185
186     /**
187      * Show the Poll form
188      *
189      * @return void
190      */
191
192     function showContent()
193     {
194         if (!empty($this->error)) {
195             $this->element('p', 'error', $this->error);
196         }
197
198         $form = new NewPollForm($this,
199                                  $this->question,
200                                  $this->options);
201
202         $form->show();
203
204         return;
205     }
206
207     /**
208      * Return true if read only.
209      *
210      * MAY override
211      *
212      * @param array $args other arguments
213      *
214      * @return boolean is read only action?
215      */
216
217     function isReadOnly($args)
218     {
219         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
220             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
221             return true;
222         } else {
223             return false;
224         }
225     }
226 }