]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/newnotice.php
Merge branch '0.7.x' into 0.8.x
[quix0rs-gnu-social.git] / actions / newnotice.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * Handler for posting new notices
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Personal
23  * @package   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @author    Zach Copley <zach@controlyourself.ca>
26  * @author    Sarven Capadisli <csarven@controlyourself.ca>
27  * @copyright 2008-2009 Control Yourself, Inc.
28  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
29  * @link      http://laconi.ca/
30  */
31
32 if (!defined('LACONICA')) {
33     exit(1);
34 }
35
36 require_once INSTALLDIR.'/lib/noticelist.php';
37
38 /**
39  * Action for posting new notices
40  *
41  * @category Personal
42  * @package  Laconica
43  * @author   Evan Prodromou <evan@controlyourself.ca>
44  * @author   Zach Copley <zach@controlyourself.ca>
45  * @author   Sarven Capadisli <csarven@controlyourself.ca>
46  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47  * @link     http://laconi.ca/
48  */
49
50 class NewnoticeAction extends Action
51 {
52     /**
53      * Error message, if any
54      */
55
56     var $msg = null;
57
58     /**
59      * Title of the page
60      *
61      * Note that this usually doesn't get called unless something went wrong
62      *
63      * @return string page title
64      */
65
66     function title()
67     {
68         return _('New notice');
69     }
70
71     /**
72      * Handle input, produce output
73      *
74      * Switches based on GET or POST method. On GET, shows a form
75      * for posting a notice. On POST, saves the results of that form.
76      *
77      * Results may be a full page, or just a single notice list item,
78      * depending on whether AJAX was requested.
79      *
80      * @param array $args $_REQUEST contents
81      *
82      * @return void
83      */
84
85     function handle($args)
86     {
87         parent::handle($args);
88
89         if (!common_logged_in()) {
90             $this->clientError(_('Not logged in.'));
91         } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
92
93             // CSRF protection
94             $token = $this->trimmed('token');
95             if (!$token || $token != common_session_token()) {
96                 $this->clientError(_('There was a problem with your session token. '.
97                                      'Try again, please.'));
98                 return;
99             }
100
101             try {
102                 $this->saveNewNotice();
103             } catch (Exception $e) {
104                 $this->showForm($e->getMessage());
105                 return;
106             }
107         } else {
108             $this->showForm();
109         }
110     }
111
112     /**
113      * Save a new notice, based on arguments
114      *
115      * If successful, will show the notice, or return an Ajax-y result.
116      * If not, it will show an error message -- possibly Ajax-y.
117      *
118      * Also, if the notice input looks like a command, it will run the
119      * command and show the results -- again, possibly ajaxy.
120      *
121      * @return void
122      */
123
124     function saveNewNotice()
125     {
126         $user = common_current_user();
127         assert($user); // XXX: maybe an error instead...
128         $content = $this->trimmed('status_textarea');
129
130         if (!$content) {
131             $this->clientError(_('No content!'));
132         } else {
133             $content_shortened = common_shorten_links($content);
134
135             if (mb_strlen($content_shortened) > 140) {
136                 $this->clientError(_('That\'s too long. '.
137                                      'Max notice size is 140 chars.'));
138             }
139         }
140
141         $inter = new CommandInterpreter();
142
143         $cmd = $inter->handle_command($user, $content_shortened);
144
145         if ($cmd) {
146             if ($this->boolean('ajax')) {
147                 $cmd->execute(new AjaxWebChannel($this));
148             } else {
149                 $cmd->execute(new WebChannel($this));
150             }
151             return;
152         }
153
154         $replyto = $this->trimmed('inreplyto');
155         #If an ID of 0 is wrongly passed here, it will cause a database error,
156         #so override it...
157         if ($replyto == 0) {
158             $replyto = 'false';
159         }
160
161         $notice = Notice::saveNew($user->id, $content, 'web', 1,
162                                   ($replyto == 'false') ? null : $replyto);
163
164         if (is_string($notice)) {
165             $this->clientError($notice);
166             return;
167         }
168
169         common_broadcast_notice($notice);
170
171         if ($this->boolean('ajax')) {
172             $this->startHTML('text/xml;charset=utf-8');
173             $this->elementStart('head');
174             $this->element('title', null, _('Notice posted'));
175             $this->elementEnd('head');
176             $this->elementStart('body');
177             $this->showNotice($notice);
178             $this->elementEnd('body');
179             $this->elementEnd('html');
180         } else {
181             $returnto = $this->trimmed('returnto');
182
183             if ($returnto) {
184                 $url = common_local_url($returnto,
185                                         array('nickname' => $user->nickname));
186             } else {
187                 $url = common_local_url('shownotice',
188                                         array('notice' => $notice->id));
189             }
190             common_redirect($url, 303);
191         }
192     }
193
194     /**
195      * Show an Ajax-y error message
196      *
197      * Goes back to the browser, where it's shown in a popup.
198      *
199      * @param string $msg Message to show
200      *
201      * @return void
202      */
203
204     function ajaxErrorMsg($msg)
205     {
206         $this->startHTML('text/xml;charset=utf-8', true);
207         $this->elementStart('head');
208         $this->element('title', null, _('Ajax Error'));
209         $this->elementEnd('head');
210         $this->elementStart('body');
211         $this->element('p', array('id' => 'error'), $msg);
212         $this->elementEnd('body');
213         $this->elementEnd('html');
214     }
215
216     /**
217      * Formerly page output
218      *
219      * This used to be the whole page output; now that's been largely
220      * subsumed by showPage. So this just stores an error message, if
221      * it was passed, and calls showPage.
222      *
223      * Note that since we started doing Ajax output, this page is rarely
224      * seen.
225      *
226      * @param string $msg An error message, if any
227      *
228      * @return void
229      */
230
231     function showForm($msg=null)
232     {
233         if ($msg && $this->boolean('ajax')) {
234             $this->ajaxErrorMsg($msg);
235             return;
236         }
237
238         $this->msg = $msg;
239         $this->showPage();
240     }
241
242     /**
243      * Overload for replies or bad results
244      *
245      * We show content in the notice form if there were replies or results.
246      *
247      * @return void
248      */
249
250     function showNoticeForm()
251     {
252         $content = $this->trimmed('status_textarea');
253         if (!$content) {
254             $replyto = $this->trimmed('replyto');
255             $profile = Profile::staticGet('nickname', $replyto);
256             if ($profile) {
257                 $content = '@' . $profile->nickname . ' ';
258             }
259         }
260
261         $notice_form = new NoticeForm($this, '', $content);
262         $notice_form->show();
263     }
264
265     /**
266      * Show an error message
267      *
268      * Shows an error message if there is one.
269      *
270      * @return void
271      *
272      * @todo maybe show some instructions?
273      */
274
275     function showPageNotice()
276     {
277         if ($this->msg) {
278             $this->element('p', array('id' => 'error'), $this->msg);
279         }
280     }
281
282     /**
283      * Output a notice
284      *
285      * Used to generate the notice code for Ajax results.
286      *
287      * @param Notice $notice Notice that was saved
288      *
289      * @return void
290      */
291
292     function showNotice($notice)
293     {
294         $nli = new NoticeListItem($notice, $this);
295         $nli->show();
296     }
297 }