3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, Control Yourself, Inc.
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.
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.
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/>.
20 if (!defined('LACONICA')) {
24 require_once(INSTALLDIR.'/lib/twitterapi.php');
26 class TwitapiaccountAction extends TwitterapiAction
28 function verify_credentials($args, $apidata)
30 parent::handle($args);
32 switch ($apidata['content-type']) {
35 $action_obj = new TwitapiusersAction();
36 $action_obj->prepare($args);
37 call_user_func(array($action_obj, 'show'), $args, $apidata);
40 header('Content-Type: text/html; charset=utf-8');
45 function end_session($args, $apidata)
47 parent::handle($args);
48 $this->serverError(_('API method under construction.'), $code=501);
51 function update_location($args, $apidata)
53 parent::handle($args);
55 if ($_SERVER['REQUEST_METHOD'] != 'POST') {
56 $this->clientError(_('This method requires a POST.'),
57 400, $apidata['content-type']);
61 $location = trim($this->arg('location'));
63 if (!is_null($location) && mb_strlen($location) > 255) {
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']);
71 $user = $apidata['user']; // Always the auth user
72 $profile = $user->getProfile();
74 $orig_profile = clone($profile);
75 $profile->location = $location;
77 $result = $profile->update($orig_profile);
80 common_log_db_error($profile, 'UPDATE', __FILE__);
81 $this->serverError(_('Couldn\'t save profile.'));
85 common_broadcast_profile($profile);
86 $type = $apidata['content-type'];
88 $this->init_document($type);
89 $this->show_profile($profile, $type);
90 $this->end_document($type);
94 function update_delivery_device($args, $apidata)
96 parent::handle($args);
97 $this->serverError(_('API method under construction.'), $code=501);
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)
104 parent::handle($args);
106 $type = $apidata['content-type'];
107 $this->init_document($type);
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') {
118 $out = array('reset_time_in_seconds' => 0,
119 'remaining_hits' => 100,
120 'hourly_limit' => 100,
122 print json_encode($out);
125 $this->end_document($type);