3 * Handle postnotice action
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/
14 * StatusNet - the distributed open-source microblogging tool
15 * Copyright (C) 2008, 2009, StatusNet, Inc.
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.
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.
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/>.
31 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
33 require_once INSTALLDIR.'/lib/omb.php';
34 require_once INSTALLDIR.'/extlib/libomb/service_provider.php';
37 * Handler for postnotice action
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/
46 class PostnoticeAction extends Action
49 * For initializing members of the class.
51 * @param array $argarray misc. arguments
53 * @return boolean true
55 function prepare($argarray)
57 StatusNet::setApi(true); // Send smaller error pages
59 parent::prepare($argarray);
63 } catch (Exception $e) {
64 $this->clientError($e->getMessage());
70 function handle($args)
72 parent::handle($args);
74 $srv = new OMB_Service_Provider(null, omb_oauth_datastore(),
76 $srv->handlePostNotice();
77 } catch (OMB_RemoteServiceException $rse) {
78 $msg = $rse->getMessage();
79 if (preg_match('/Revoked accesstoken/', $msg) ||
80 preg_match('/No subscriber/', $msg)) {
81 $this->clientError($msg, 403);
83 $this->clientError($msg);
85 } catch (Exception $e) {
86 $this->serverError($e->getMessage());
91 function checkNotice()
93 $content = common_shorten_links($_POST['omb_notice_content']);
94 if (Notice::contentTooLong($content)) {
95 $this->clientError(_('Invalid notice content.'), 400);
98 $license = $_POST['omb_notice_license'];
99 $site_license = common_config('license', 'url');
100 if ($license && !common_compatible_license($license, $site_license)) {
101 throw new Exception(sprintf(_('Notice license ā%1$sā is not ' .
102 'compatible with site license ā%2$sā.'),
103 $license, $site_license));