]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apiaccountupdateprofile.php
Merge branch 'testing' of gitorious.org:statusnet/mainline into 0.9.x
[quix0rs-gnu-social.git] / actions / apiaccountupdateprofile.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Update the authenticating user's profile
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  API
23  * @package   StatusNet
24  * @author    Zach Copley <zach@status.net>
25  * @copyright 2009 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR . '/lib/apiauth.php';
35
36 /**
37  * API analog to the profile settings page
38  * Only the parameters specified will be updated.
39  *
40  * @category API
41  * @package  StatusNet
42  * @author   Zach Copley <zach@status.net>
43  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44  * @link     http://status.net/
45  */
46
47 class ApiAccountUpdateProfileAction extends ApiAuthAction
48 {
49
50     /**
51      * Take arguments for running
52      *
53      * @param array $args $_REQUEST args
54      *
55      * @return boolean success flag
56      *
57      */
58
59     function prepare($args)
60     {
61         parent::prepare($args);
62
63         $this->user = $this->auth_user;
64
65         $this->name        = $this->trimmed('name');
66         $this->url         = $this->trimmed('url');
67         $this->location    = $this->trimmed('location');
68         $this->description = $this->trimmed('description');
69
70         return true;
71     }
72
73     /**
74      * Handle the request
75      *
76      * See which request params have been set, and update the profile
77      *
78      * @param array $args $_REQUEST data (unused)
79      *
80      * @return void
81      */
82
83     function handle($args)
84     {
85         parent::handle($args);
86
87         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
88             $this->clientError(
89                 _('This method requires a POST.'),
90                 400, $this->format
91             );
92             return;
93         }
94
95         if (!in_array($this->format, array('xml', 'json'))) {
96             $this->clientError(
97                 _('API method not found.'),
98                 404,
99                 $this->format
100             );
101             return;
102         }
103
104         if (empty($this->user)) {
105             $this->clientError(_('No such user.'), 404, $this->format);
106             return;
107         }
108
109         $profile = $this->user->getProfile();
110
111         if (empty($profile)) {
112             $this->clientError(_('User has no profile.'));
113             return;
114         }
115
116         $original = clone($profile);
117
118         if (!empty($this->name)) {
119             $profile->fullname = $this->name;
120         }
121
122         if (!empty($this->url)) {
123             $profile->homepage = $this->url;
124         }
125
126         if (!empty($this->description)) {
127             $profile->bio = $this->description;
128         }
129
130         if (!empty($this->location)) {
131             $profile->location = $this->location;
132
133             $loc = Location::fromName($location);
134
135             if (!empty($loc)) {
136                 $profile->lat         = $loc->lat;
137                 $profile->lon         = $loc->lon;
138                 $profile->location_id = $loc->location_id;
139                 $profile->location_ns = $loc->location_ns;
140             }
141         }
142
143         $result = $profile->update($original);
144
145         if (!$result) {
146             common_log_db_error($profile, 'UPDATE', __FILE__);
147             $this->serverError(_('Could not save profile.'));
148             return;
149         }
150
151         common_broadcast_profile($profile);
152
153         $twitter_user = $this->twitterUserArray($profile, true);
154
155         if ($this->format == 'xml') {
156             $this->initDocument('xml');
157             $this->showTwitterXmlUser($twitter_user);
158             $this->endDocument('xml');
159         } elseif ($this->format == 'json') {
160             $this->initDocument('json');
161             $this->showJsonObjects($twitter_user);
162             $this->endDocument('json');
163         }
164     }
165
166 }