]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/postnotice.php
Merge branch '0.8.x' into 0.9.x
[quix0rs-gnu-social.git] / actions / postnotice.php
1 <?php
2 /**
3  * Handle postnotice action
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @author   Robin Millette <millette@status.net>
11  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12  * @link     http://status.net/
13  *
14  * StatusNet - the distributed open-source microblogging tool
15  * Copyright (C) 2008, 2009, StatusNet, Inc.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU Affero General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU Affero General Public License for more details.
26  *
27  * You should have received a copy of the GNU Affero General Public License
28  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
32
33 require_once INSTALLDIR.'/lib/omb.php';
34 require_once INSTALLDIR.'/extlib/libomb/service_provider.php';
35
36 /**
37  * Handler for postnotice action
38  *
39  * @category Action
40  * @package  StatusNet
41  * @author   Evan Prodromou <evan@status.net>
42  * @author   Robin Millette <millette@status.net>
43  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
44  * @link     http://status.net/
45  */
46 class PostnoticeAction extends Action
47 {
48     /**
49      * For initializing members of the class.
50      *
51      * @param array $argarray misc. arguments
52      *
53      * @return boolean true
54      */
55     function prepare($argarray)
56     {
57         parent::prepare($argarray);
58         try {
59             $this->checkNotice();
60         } catch (Exception $e) {
61             $this->clientError($e->getMessage());
62             return false;
63         }
64         return true;
65     }
66
67     function handle($args)
68     {
69         parent::handle($args);
70         try {
71             $srv = new OMB_Service_Provider(null, omb_oauth_datastore(),
72                                             omb_oauth_server());
73             $srv->handlePostNotice();
74         } catch (Exception $e) {
75             $this->serverError($e->getMessage());
76             return;
77         }
78     }
79
80     function checkNotice()
81     {
82         $content = common_shorten_links($_POST['omb_notice_content']);
83         if (Notice::contentTooLong($content)) {
84             $this->clientError(_('Invalid notice content'), 400);
85             return false;
86         }
87         $license      = $_POST['omb_notice_license'];
88         $site_license = common_config('license', 'url');
89         if ($license && !common_compatible_license($license, $site_license)) {
90             throw new Exception(sprintf(_('Notice license ā€˜%sā€™ is not ' .
91                                           'compatible with site license ā€˜%sā€™.'),
92                                         $license, $site_license));
93         }
94     }
95 }
96 ?>