]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/postnotice.php
14152a83d64d36387445e2fdf3cf348ca33a179a
[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  Laconica
9  * @author   Evan Prodromou <evan@controlyourself.ca>
10  * @author   Robin Millette <millette@controlyourself.ca>
11  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12  * @link     http://laconi.ca/
13  *
14  * Laconica - a distributed open-source microblogging tool
15  * Copyright (C) 2008, 2009, Control Yourself, 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('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/omb.php';
36 require_once INSTALLDIR.'/extlib/libomb/service_provider.php';
37
38 /**
39  * Handler for postnotice action
40  *
41  * @category Action
42  * @package  Laconica
43  * @author   Evan Prodromou <evan@controlyourself.ca>
44  * @author   Robin Millette <millette@controlyourself.ca>
45  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
46  * @link     http://laconi.ca/
47  */
48 class PostnoticeAction extends Action
49 {
50     /**
51      * For initializing members of the class.
52      *
53      * @param array $argarray misc. arguments
54      *
55      * @return boolean true
56      */
57     function prepare($argarray)
58     {
59         parent::prepare($argarray);
60         try {
61             $this->checkNotice();
62         } catch (Exception $e) {
63             $this->clientError($e->getMessage());
64             return false;
65         }
66         return true;
67     }
68
69     function handle($args)
70     {
71         parent::handle($args);
72         try {
73             $srv = new OMB_Service_Provider(null, omb_oauth_datastore(),
74                                             omb_oauth_server());
75             $srv->handlePostNotice();
76         } catch (Exception $e) {
77             $this->serverError($e->getMessage());
78             return;
79         }
80     }
81
82     function checkNotice()
83     {
84         $content = common_shorten_links($_POST['omb_notice_content']);
85         if (Notice::contentTooLong($content)) {
86             $this->clientError(_('Invalid notice content'), 400);
87             return false;
88         }
89         $license      = $_POST['omb_notice_license'];
90         $site_license = common_config('license', 'url');
91         if ($license && !common_compatible_license($license, $site_license)) {
92             throw new Exception(sprintf(_('Notice license ā€˜%sā€™ is not ' .
93                                           'compatible with site license ā€˜%sā€™.'),
94                                         $license, $site_license));
95         }
96     }
97 }
98 ?>