]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - _darcs/pristine/actions/twitapiaccount.php
move opening brace of class declaration to next line
[quix0rs-gnu-social.git] / _darcs / pristine / actions / twitapiaccount.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once(INSTALLDIR.'/lib/twitterapi.php');
23
24 class TwitapiaccountAction extends TwitterapiAction
25 {
26
27     function verify_credentials($args, $apidata)
28     {
29         parent::handle($args);
30
31         if (!in_array($apidata['content-type'], array('xml', 'json'))) {
32             common_user_error(_('API method not found!'), $code = 404);
33             return;
34         }
35
36         $this->show_extended_profile($apidata['user'], $apidata);
37     }
38
39     function end_session($args, $apidata)
40     {
41         parent::handle($args);
42         common_server_error(_('API method under construction.'), $code=501);
43     }
44
45     function update_location($args, $apidata)
46     {
47         parent::handle($args);
48
49         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
50             $this->client_error(_('This method requires a POST.'), 400, $apidata['content-type']);
51             return;
52         }
53
54         $location = trim($this->arg('location'));
55
56         if (!is_null($location) && strlen($location) > 255) {
57
58             // XXX: But Twitter just truncates and runs with it. -- Zach
59             $this->client_error(_('That\'s too long. Max notice size is 255 chars.'), 406, $apidate['content-type']);
60             return;
61         }
62
63         $user = $apidata['user'];
64         $profile = $user->getProfile();
65
66         if (!$profile) {
67             common_server_error(_('User has no profile.'));
68             return;
69         }
70
71         $orig_profile = clone($profile);
72         $profile->location = $location;
73
74         $result = $profile->update($orig_profile);
75
76         if (!$result) {
77             common_log_db_error($profile, 'UPDATE', __FILE__);
78             common_server_error(_('Couldn\'t save profile.'));
79             return;
80         }
81
82         common_broadcast_profile($profile);
83         $type = $apidata['content-type'];
84
85         $this->init_document($type);
86         $this->show_profile($profile, $type);
87         $this->end_document($type);
88     }
89
90
91     function update_delivery_device($args, $apidata)
92     {
93         parent::handle($args);
94         common_server_error(_('API method under construction.'), $code=501);
95     }
96
97     function rate_limit_status($args, $apidata)
98     {
99         parent::handle($args);
100         common_server_error(_('API method under construction.'), $code=501);
101     }
102 }