]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OMB/actions/updateprofile.php
29d334b302354040312a172a1b20b3aa1d6351e1
[quix0rs-gnu-social.git] / plugins / OMB / actions / updateprofile.php
1 <?php
2 /**
3  * Handle an updateprofile 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-2011, 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 dirname(__FILE__) . '/../lib/omb.php';
34 require_once dirname(__FILE__) . '/../extlib/libomb/service_provider.php';
35
36 /**
37  * Handle an updateprofile action
38  *
39  * @category Action
40  * @package  Laconica
41  * @author   Evan Prodromou <evan@status.net>
42  * @author   Robin Millette <millette@controlyourself.ca>
43  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
44  * @link     http://laconi.ca/
45  */
46 class UpdateprofileAction 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         StatusNet::setApi(true); // Send smaller error pages
58
59         parent::prepare($argarray);
60         $license      = $_POST['omb_listenee_license'];
61         $site_license = common_config('license', 'url');
62         if (!common_compatible_license($license, $site_license)) {
63             // TRANS: Client error displayed when trying to update profile with an incompatible license.
64             // TRANS: %1$s is the license incompatible with site license %2$s.
65             $this->clientError(sprintf(_('Listenee stream license "%1$s" is not '.
66                                          'compatible with site license "%2$s".'),
67                                        $license, $site_license));
68             return false;
69         }
70         return true;
71     }
72
73     function handle($args)
74     {
75         parent::handle($args);
76
77         try {
78             $srv = new OMB_Service_Provider(null, omb_oauth_datastore(),
79                                             omb_oauth_server());
80             $srv->handleUpdateProfile();
81         } catch (OMB_RemoteServiceException $rse) {
82             $msg = $rse->getMessage();
83             if (preg_match('/Revoked accesstoken/', $msg) ||
84                 preg_match('/No subscriber/', $msg)) {
85                 $this->clientError($msg, 403);
86             } else {
87                 $this->clientError($msg);
88             }
89         } catch (Exception $e) {
90             $this->serverError($e->getMessage());
91             return;
92         }
93     }
94 }