]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/api.php
Make statuses/home_timeline return the same thing as statuses/friends_timeline to...
[quix0rs-gnu-social.git] / actions / api.php
1 <?php
2 /*
3  * StatusNet - the 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('STATUSNET') && !defined('LACONICA')) { exit(1); }
21
22 class ApiAction extends Action
23 {
24
25     var $user;
26     var $content_type;
27     var $api_arg;
28     var $api_method;
29     var $api_action;
30
31     function handle($args)
32     {
33         parent::handle($args);
34
35         $this->api_action = $this->arg('apiaction');
36         $method = $this->arg('method');
37         $argument = $this->arg('argument');
38
39         if (isset($argument)) {
40             $cmdext = explode('.', $argument);
41             $this->api_arg =  $cmdext[0];
42             $this->api_method = $method;
43             $this->content_type = strtolower($cmdext[1]);
44         } else {
45
46             # Requested format / content-type will be an extension on the method
47             $cmdext = explode('.', $method);
48             $this->api_method = $cmdext[0];
49             $this->content_type = strtolower($cmdext[1]);
50         }
51
52         if ($this->requires_auth()) {
53             if (!isset($_SERVER['PHP_AUTH_USER'])) {
54
55                 # This header makes basic auth go
56                 header('WWW-Authenticate: Basic realm="StatusNet API"');
57
58                 # If the user hits cancel -- bam!
59                 $this->show_basic_auth_error();
60             } else {
61                 $nickname = $_SERVER['PHP_AUTH_USER'];
62                 $password = $_SERVER['PHP_AUTH_PW'];
63                 $user = common_check_user($nickname, $password);
64
65                 if ($user) {
66                     $this->user = $user;
67                     $this->process_command();
68                 } else {
69                     # basic authentication failed
70                     list($proxy, $ip) = common_client_ip();
71
72                     common_log(LOG_WARNING, "Failed API auth attempt, nickname = $nickname, proxy = $proxy, ip = $ip.");
73                     $this->show_basic_auth_error();
74                 }
75             }
76         } else {
77
78             // Caller might give us a username even if not required
79             if (isset($_SERVER['PHP_AUTH_USER'])) {
80                 $user = User::staticGet('nickname', $_SERVER['PHP_AUTH_USER']);
81                 if ($user) {
82                     $this->user = $user;
83                 }
84                 # Twitter doesn't throw an error if the user isn't found
85             }
86
87             $this->process_command();
88         }
89     }
90
91     function process_command()
92     {
93         $action = "twitapi$this->api_action";
94         $actionfile = INSTALLDIR."/actions/$action.php";
95
96         if (file_exists($actionfile)) {
97             require_once($actionfile);
98             $action_class = ucfirst($action)."Action";
99             $action_obj = new $action_class();
100
101             if (!$action_obj->prepare($this->args)) {
102                 return;
103             }
104
105             if (method_exists($action_obj, $this->api_method)) {
106                 $apidata = array(    'content-type' => $this->content_type,
107                                     'api_method' => $this->api_method,
108                                     'api_arg' => $this->api_arg,
109                                     'user' => $this->user);
110
111                 call_user_func(array($action_obj, $this->api_method), $_REQUEST, $apidata);
112             } else {
113                 $this->clientError("API method not found!", $code=404);
114             }
115         } else {
116             $this->clientError("API method not found!", $code=404);
117         }
118     }
119
120     // Whitelist of API methods that don't need authentication
121     function requires_auth()
122     {
123         static $noauth = array( 'statuses/public_timeline',
124                                 'statuses/show',
125                                 'users/show',
126                                 'help/test',
127                                 'help/downtime_schedule',
128                                 'statusnet/version',
129                                 'statusnet/config',
130                                 'statusnet/wadl',
131                                 'tags/timeline',
132                                 'oembed/oembed',
133                                 'groups/show',
134                                 'groups/timeline',
135                                 'groups/list_all',
136                                 'groups/membership',
137                                 'groups/is_member',
138                                 'groups/timeline');
139
140         static $bareauth = array('statuses/user_timeline',
141                                  'statuses/friends_timeline',
142                                  'statuses/friends',
143                                  'statuses/replies',
144                                  'statuses/mentions',
145                                  'statuses/followers',
146                                  'favorites/favorites',
147                                  'friendships/show',
148                                  'groups/list_groups');
149
150         $fullname = "$this->api_action/$this->api_method";
151
152         // If the site is "private", all API methods except statusnet/config
153         // need authentication
154
155         if (common_config('site', 'private')) {
156             return $fullname != 'statusnet/config' || false;
157         }
158
159         // bareauth: only needs auth if without an argument or query param specifying user
160
161         if (in_array($fullname, $bareauth)) {
162
163             // Special case: friendships/show only needs auth if source_id or
164             // source_screen_name is not specified as a param
165
166             if ($fullname == 'friendships/show') {
167
168                 $source_id          = $this->arg('source_id');
169                 $source_screen_name = $this->arg('source_screen_name');
170
171                 if (empty($source_id) && empty($source_screen_name)) {
172                     return true;
173                 }
174
175                 return false;
176             }
177
178             // if all of these are empty, auth is required
179
180             $id          = $this->arg('id');
181             $user_id     = $this->arg('user_id');
182             $screen_name = $this->arg('screen_name');
183
184             if (empty($this->api_arg) &&
185                 empty($id)            &&
186                 empty($user_id)       &&
187                 empty($screen_name)) {
188                 return true;
189             } else {
190                 return false;
191             }
192
193         } else if (in_array($fullname, $noauth)) {
194
195             // noauth: never needs auth
196
197             return false;
198         } else {
199
200             // everybody else needs auth
201
202             return true;
203         }
204     }
205
206     function show_basic_auth_error()
207     {
208         header('HTTP/1.1 401 Unauthorized');
209         $msg = 'Could not authenticate you.';
210
211         if ($this->content_type == 'xml') {
212             header('Content-Type: application/xml; charset=utf-8');
213             $this->startXML();
214             $this->elementStart('hash');
215             $this->element('error', null, $msg);
216             $this->element('request', null, $_SERVER['REQUEST_URI']);
217             $this->elementEnd('hash');
218             $this->endXML();
219         } else if ($this->content_type == 'json')  {
220             header('Content-Type: application/json; charset=utf-8');
221             $error_array = array('error' => $msg, 'request' => $_SERVER['REQUEST_URI']);
222             print(json_encode($error_array));
223         } else {
224             header('Content-type: text/plain');
225             print "$msg\n";
226         }
227     }
228
229     function isReadOnly($args)
230     {
231         $apiaction = $args['apiaction'];
232         $method = $args['method'];
233
234         list($cmdtext, $fmt) = explode('.', $method);
235
236         static $write_methods = array(
237             'account' => array('update_location', 'update_delivery_device', 'end_session'),
238             'blocks' => array('create', 'destroy'),
239             'direct_messages' => array('create', 'destroy'),
240             'favorites' => array('create', 'destroy'),
241             'friendships' => array('create', 'destroy'),
242             'help' => array(),
243             'notifications' => array('follow', 'leave'),
244             'statuses' => array('update', 'destroy'),
245             'users' => array()
246         );
247
248         if (array_key_exists($apiaction, $write_methods)) {
249             if (!in_array($cmdtext, $write_methods[$apiaction])) {
250                 return true;
251             }
252         }
253
254         return false;
255     }
256 }