]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/newnotice.php
Merge branch 'mobile-style' of git://gitorious.org/laconica/meitar into review
[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
156         $notice = Notice::saveNew($user->id, $content, 'web', 1,
157                                   ($replyto == 'false') ? null : $replyto);
158
159         if (is_string($notice)) {
160             $this->clientError($notice);
161             return;
162         }
163
164         common_broadcast_notice($notice);
165
166         if ($this->boolean('ajax')) {
167             $this->startHTML('text/xml;charset=utf-8');
168             $this->elementStart('head');
169             $this->element('title', null, _('Notice posted'));
170             $this->elementEnd('head');
171             $this->elementStart('body');
172             $this->showNotice($notice);
173             $this->elementEnd('body');
174             $this->elementEnd('html');
175         } else {
176             $returnto = $this->trimmed('returnto');
177
178             if ($returnto) {
179                 $url = common_local_url($returnto,
180                                         array('nickname' => $user->nickname));
181             } else {
182                 $url = common_local_url('shownotice',
183                                         array('notice' => $notice->id));
184             }
185             common_redirect($url, 303);
186         }
187     }
188
189     /**
190      * Show an Ajax-y error message
191      *
192      * Goes back to the browser, where it's shown in a popup.
193      *
194      * @param string $msg Message to show
195      *
196      * @return void
197      */
198
199     function ajaxErrorMsg($msg)
200     {
201         $this->startHTML('text/xml;charset=utf-8', true);
202         $this->elementStart('head');
203         $this->element('title', null, _('Ajax Error'));
204         $this->elementEnd('head');
205         $this->elementStart('body');
206         $this->element('p', array('id' => 'error'), $msg);
207         $this->elementEnd('body');
208         $this->elementEnd('html');
209     }
210
211     /**
212      * Formerly page output
213      *
214      * This used to be the whole page output; now that's been largely
215      * subsumed by showPage. So this just stores an error message, if
216      * it was passed, and calls showPage.
217      *
218      * Note that since we started doing Ajax output, this page is rarely
219      * seen.
220      *
221      * @param string $msg An error message, if any
222      *
223      * @return void
224      */
225
226     function showForm($msg=null)
227     {
228         if ($msg && $this->boolean('ajax')) {
229             $this->ajaxErrorMsg($msg);
230             return;
231         }
232
233         $this->msg = $msg;
234         $this->showPage();
235     }
236
237     /**
238      * Overload for replies or bad results
239      *
240      * We show content in the notice form if there were replies or results.
241      *
242      * @return void
243      */
244
245     function showNoticeForm()
246     {
247         $content = $this->trimmed('status_textarea');
248         if (!$content) {
249             $replyto = $this->trimmed('replyto');
250             $profile = Profile::staticGet('nickname', $replyto);
251             if ($profile) {
252                 $content = '@' . $profile->nickname . ' ';
253             }
254         }
255
256         $notice_form = new NoticeForm($this, $content);
257         $notice_form->show();
258     }
259
260     /**
261      * Show an error message
262      *
263      * Shows an error message if there is one.
264      *
265      * @return void
266      *
267      * @todo maybe show some instructions?
268      */
269
270     function showPageNotice()
271     {
272         if ($this->msg) {
273             $this->element('p', array('id' => 'error'), $this->msg);
274         }
275     }
276
277     /**
278      * Output a notice
279      *
280      * Used to generate the notice code for Ajax results.
281      *
282      * @param Notice $notice Notice that was saved
283      *
284      * @return void
285      */
286
287     function showNotice($notice)
288     {
289         $nli = new NoticeListItem($notice, $this);
290         $nli->show();
291     }
292 }