]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/twitapiaccount.php
change Laconica and Control Yourself to StatusNet in PHP files
[quix0rs-gnu-social.git] / actions / twitapiaccount.php
1 <?php
2 /*
3  * StatusNet - a distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, 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')) {
21     exit(1);
22 }
23
24 require_once(INSTALLDIR.'/lib/twitterapi.php');
25
26 class TwitapiaccountAction extends TwitterapiAction
27 {
28     function verify_credentials($args, $apidata)
29     {
30         parent::handle($args);
31
32         switch ($apidata['content-type']) {
33         case 'xml':
34         case 'json':
35             $action_obj = new TwitapiusersAction();
36             $action_obj->prepare($args);
37             call_user_func(array($action_obj, 'show'), $args, $apidata);
38             break;
39         default:
40             header('Content-Type: text/html; charset=utf-8');
41             print 'Authorized';
42         }
43     }
44
45    function end_session($args, $apidata)
46     {
47         parent::handle($args);
48         $this->serverError(_('API method under construction.'), $code=501);
49     }
50
51     function update_location($args, $apidata)
52     {
53         parent::handle($args);
54
55         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
56             $this->clientError(_('This method requires a POST.'),
57                 400, $apidata['content-type']);
58             return;
59         }
60
61         $location = trim($this->arg('location'));
62
63         if (!is_null($location) && mb_strlen($location) > 255) {
64
65             // XXX: But Twitter just truncates and runs with it. -- Zach
66             $this->clientError(_('That\'s too long. Max notice size is 255 chars.'),
67                 406, $apidate['content-type']);
68             return;
69         }
70
71         $user = $apidata['user']; // Always the auth user
72         $profile = $user->getProfile();
73
74         $orig_profile = clone($profile);
75         $profile->location = $location;
76
77         $result = $profile->update($orig_profile);
78
79         if (empty($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     // We don't have a rate limit, but some clients check this method.
101     // It always returns the same thing: 100 hit left.
102     function rate_limit_status($args, $apidata)
103     {
104         parent::handle($args);
105
106         $type = $apidata['content-type'];
107         $this->init_document($type);
108
109         if ($apidata['content-type'] == 'xml') {
110             $this->elementStart('hash');
111             $this->element('remaining-hits', array('type' => 'integer'), 100);
112             $this->element('hourly-limit', array('type' => 'integer'), 100);
113             $this->element('reset-time', array('type' => 'datetime'), null);
114             $this->element('reset_time_in_seconds', array('type' => 'integer'), 0);
115             $this->elementEnd('hash');
116         } elseif ($apidata['content-type'] == 'json') {
117
118             $out = array('reset_time_in_seconds' => 0,
119                          'remaining_hits' => 100,
120                          'hourly_limit' => 100,
121                          'reset_time' => '');
122             print json_encode($out);
123         }
124
125         $this->end_document($type);
126     }
127 }