]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/updateprofile.php
d9cc7f7f3cc823d68fd5401ebc99eb341b8c2de6
[quix0rs-gnu-social.git] / 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, 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  * 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     /**
50      * For initializing members of the class.
51      *
52      * @param array $argarray misc. arguments
53      *
54      * @return boolean true
55      */
56     function prepare($argarray)
57     {
58         $version = $req->get_parameter('omb_version');
59         if ($version != OMB_VERSION_01) {
60             $this->clientError(_('Unsupported OMB version'), 400);
61             return false;
62         }
63         # First, check to see if listenee exists
64         $listenee =  $req->get_parameter('omb_listenee');
65         $remote = Remote_profile::staticGet('uri', $listenee);
66         if (!$remote) {
67             $this->clientError(_('Profile unknown'), 404);
68             return false;
69         }
70         # Second, check to see if they should be able to post updates!
71         # We see if there are any subscriptions to that remote user with
72         # the given token.
73
74         $sub = new Subscription();
75         $sub->subscribed = $remote->id;
76         $sub->token = $token->key;
77         if (!$sub->find(true)) {
78             $this->clientError(_('You did not send us that profile'), 403);
79             return false;
80         }
81
82         $profile = Profile::staticGet('id', $remote->id);
83         if (!$profile) {
84             # This one is our fault
85             $this->serverError(_('Remote profile with no matching profile'), 500);
86             return false;
87         }
88         $nickname = $req->get_parameter('omb_listenee_nickname');
89         if ($nickname && !Validate::string($nickname, array('min_length' => 1,
90                                                             'max_length' => 64,
91                                                             'format' => NICKNAME_FMT))) {
92             $this->clientError(_('Nickname must have only lowercase letters and numbers and no spaces.'));
93             return false;
94         }
95         $license = $req->get_parameter('omb_listenee_license');
96         if ($license && !common_valid_http_url($license)) {
97             $this->clientError(sprintf(_("Invalid license URL '%s'"), $license));
98             return false;
99         }
100         return true;
101     }
102
103     function handle($args)
104     {
105         parent::handle($args);
106
107         try {
108             $srv = new OMB_Service_Provider(null, omb_oauth_datastore(),
109                                             omb_oauth_server());
110             $srv->handleUpdateProfile();
111         } catch (Exception $e) {
112             $this->serverError($e->getMessage());
113             return;
114         }
115     }
116 }