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