]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/twitapiaccount.php
Fixed routing for direct messages and favorites in the API
[quix0rs-gnu-social.git] / 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
30                 if ($apidata['content-type'] == 'xml') {
31                         header('Content-Type: application/xml; charset=utf-8');
32                         print '<authorized>true</authorized>';
33                 } elseif ($apidata['content-type'] == 'json') {
34                         header('Content-Type: application/json; charset=utf-8');
35                         print '{"authorized":true}';
36                 } else {
37                         common_user_error(_('API method not found!'), $code=404);
38                 }
39
40         }
41
42     function end_session($args, $apidata)
43     {
44         parent::handle($args);
45         $this->serverError(_('API method under construction.'), $code=501);
46     }
47
48     function update_location($args, $apidata)
49     {
50         parent::handle($args);
51
52         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
53             $this->clientError(_('This method requires a POST.'), 400, $apidata['content-type']);
54             return;
55         }
56
57         $location = trim($this->arg('location'));
58
59         if (!is_null($location) && mb_strlen($location) > 255) {
60
61             // XXX: But Twitter just truncates and runs with it. -- Zach
62             $this->clientError(_('That\'s too long. Max notice size is 255 chars.'), 406, $apidate['content-type']);
63             return;
64         }
65
66         $user = $apidata['user'];
67         $profile = $user->getProfile();
68
69         if (!$profile) {
70             $this->serverError(_('User has no profile.'));
71             return;
72         }
73
74         $orig_profile = clone($profile);
75         $profile->location = $location;
76
77         $result = $profile->update($orig_profile);
78
79         if (!$result) {
80             common_log_db_error($profile, 'UPDATE', __FILE__);
81             $this->serverError(_('Couldn\'t save profile.'));
82             return;
83         }
84
85         common_broadcast_profile($profile);
86         $type = $apidata['content-type'];
87
88         $this->init_document($type);
89         $this->show_profile($profile, $type);
90         $this->end_document($type);
91     }
92
93
94     function update_delivery_device($args, $apidata)
95     {
96         parent::handle($args);
97         $this->serverError(_('API method under construction.'), $code=501);
98     }
99
100     function rate_limit_status($args, $apidata)
101     {
102         parent::handle($args);
103         $this->serverError(_('API method under construction.'), $code=501);
104     }
105 }