]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/twitapiaccount.php
base class is_readonly() now returns false by default
[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         function is_readonly() {
27                 
28                 static $write_methods = array(  'update_location',
29                                                                                 'update_delivery_device');
30                 
31                 $cmdtext = explode('.', $this->arg('method'));          
32                 
33                 if (in_array($cmdtext[0], $write_methods)) {                    
34                         return false;
35                 }
36                                 
37                 return true;
38         }
39
40         function verify_credentials($args, $apidata) {
41
42                 if ($apidata['content-type'] == 'xml') {
43                         header('Content-Type: application/xml; charset=utf-8');         
44                         print '<authorized>true</authorized>';
45                 } elseif ($apidata['content-type'] == 'json') {
46                         header('Content-Type: application/json; charset=utf-8');                
47                         print '{"authorized":true}';
48                 } else {
49                         common_user_error("API method not found!", $code=404);
50                 }
51                         
52                 exit();
53         }
54         
55         function end_session($args, $apidata) {
56                 parent::handle($args);
57                 common_server_error("API method under construction.", $code=501);
58                 exit();
59         }
60         
61         function update_location($args, $apidata) {
62                 parent::handle($args);
63
64                 $location = trim($this->arg('location'));
65
66                 if (!is_null($location) && strlen($location) > 255) {
67                         
68                         // XXX: But Twitter just truncates and runs with it. -- Zach
69                         header('HTTP/1.1 406 Not Acceptable');                  
70                         print "That's too long. Max notice size is 255 chars.\n";
71                         exit();
72                 }
73                 
74                 $user = $apidata['user'];
75                 $profile = $user->getProfile();
76                 
77                 if (!$profile) {
78                         common_server_error(_('User has no profile.'));
79                         exit();
80                 }
81                 
82                 $orig_profile = clone($profile);
83                 $profile->location = $location;
84                 
85                 common_debug('Old profile: ' . common_log_objstring($orig_profile), __FILE__);
86                 common_debug('New profile: ' . common_log_objstring($profile), __FILE__);
87
88                 $result = $profile->update($orig_profile);
89
90                 if (!$result) {
91                         common_log_db_error($profile, 'UPDATE', __FILE__);
92                         common_server_error(_('Couldn\'t save profile.'));
93                         exit();
94                 }
95
96                 common_broadcast_profile($profile);
97                 $type = $apidata['content-type'];
98                 
99                 $this->init_document($type);
100                 $this->show_profile($profile, $type);
101                 $this->end_document($type);
102                 
103                 exit();
104         }
105
106
107         function update_delivery_device($args, $apidata) {
108                 parent::handle($args);
109                 common_server_error("API method under construction.", $code=501);
110                 exit();
111         }
112         
113         function rate_limit_status($args, $apidata) {
114                 parent::handle($args);
115                 common_server_error("API method under construction.", $code=501);
116                 exit();
117         }
118 }