]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/apiauth.php
Relax restrictions on URL validation for oauth_callback. We need to
[quix0rs-gnu-social.git] / lib / apiauth.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Base class for API actions that require authentication
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  API
23  * @package   StatusNet
24  * @author    Adrian Lang <mail@adrianlang.de>
25  * @author    Brenda Wallace <shiny@cpan.org>
26  * @author    Craig Andrews <candrews@integralblue.com>
27  * @author    Dan Moore <dan@moore.cx>
28  * @author    Evan Prodromou <evan@status.net>
29  * @author    mEDI <medi@milaro.net>
30  * @author    Sarven Capadisli <csarven@status.net>
31  * @author    Zach Copley <zach@status.net>
32  * @copyright 2009-2010 StatusNet, Inc.
33  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
34  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
35  * @link      http://status.net/
36  */
37
38 /* External API usage documentation. Please update when you change how this method works. */
39
40 /*! @page authentication Authentication
41
42     StatusNet supports HTTP Basic Authentication and OAuth for API calls.
43
44     @warning Currently, users who have created accounts without setting a
45     password via OpenID, Facebook Connect, etc., cannot use the API until
46     they set a password with their account settings panel.
47
48     @section HTTP Basic Auth
49
50
51
52     @section OAuth
53
54 */
55
56 if (!defined('STATUSNET')) {
57     exit(1);
58 }
59
60 require_once INSTALLDIR . '/lib/apioauth.php';
61
62 /**
63  * Actions extending this class will require auth
64  *
65  * @category API
66  * @package  StatusNet
67  * @author   Zach Copley <zach@status.net>
68  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
69  * @link     http://status.net/
70  */
71 class ApiAuthAction extends ApiAction
72 {
73     var $auth_user_nickname = null;
74     var $auth_user_password = null;
75
76     /**
77      * Take arguments for running, looks for an OAuth request,
78      * and outputs basic auth header if needed
79      *
80      * @param array $args $_REQUEST args
81      *
82      * @return boolean success flag
83      *
84      */
85     function prepare($args)
86     {
87         parent::prepare($args);
88
89         // NOTE: $this->auth_user has to get set in prepare(), not handle(),
90         // because subclasses do stuff with it in their prepares.
91
92         $oauthReq = $this->getOAuthRequest();
93
94         if (!$oauthReq) {
95             if ($this->requiresAuth()) {
96                 $this->checkBasicAuthUser(true);
97             } else {
98                 // Check to see if a basic auth user is there even
99                 // if one's not required
100                 $this->checkBasicAuthUser(false);
101             }
102         } else {
103             $this->checkOAuthRequest($oauthReq);
104         }
105
106         // Reject API calls with the wrong access level
107
108         if ($this->isReadOnly($args) == false) {
109             if ($this->access != self::READ_WRITE) {
110                 // TRANS: Client error 401.
111                 $msg = _('API resource requires read-write access, ' .
112                          'but you only have read access.');
113                 $this->clientError($msg, 401, $this->format);
114                 exit;
115             }
116         }
117
118         return true;
119     }
120
121     /**
122      * Determine whether the request is an OAuth request.
123      * This is to avoid doign any unnecessary DB lookups.
124      *
125      * @return mixed the OAuthRequest or false
126      */
127     function getOAuthRequest()
128     {
129         ApiOauthAction::cleanRequest();
130
131         $req  = OAuthRequest::from_request();
132
133         $consumer    = $req->get_parameter('oauth_consumer_key');
134         $accessToken = $req->get_parameter('oauth_token');
135
136         // XXX: Is it good enough to assume it's not meant to be an
137         // OAuth request if there is no consumer or token? --Z
138
139         if (empty($consumer) || empty($accessToken)) {
140             return false;
141         }
142
143         return $req;
144     }
145
146     /**
147      * Verifies the OAuth request signature, sets the auth user
148      * and access type (read-only or read-write)
149      *
150      * @param OAuthRequest $request the OAuth Request
151      *
152      * @return nothing
153      */
154     function checkOAuthRequest($request)
155     {
156         $datastore   = new ApiStatusNetOAuthDataStore();
157         $server      = new OAuthServer($datastore);
158         $hmac_method = new OAuthSignatureMethod_HMAC_SHA1();
159
160         $server->add_signature_method($hmac_method);
161
162         try {
163             $server->verify_request($request);
164
165             $consumer     = $request->get_parameter('oauth_consumer_key');
166             $access_token = $request->get_parameter('oauth_token');
167
168             $app = Oauth_application::getByConsumerKey($consumer);
169
170             if (empty($app)) {
171                 common_log(
172                     LOG_WARNING,
173                     'API OAuth - Couldn\'t find the OAuth app for consumer key: ' .
174                     $consumer
175                 );
176                 // TRANS: OAuth exception thrown when no application is found for a given consumer key.
177                 throw new OAuthException(_('No application for that consumer key.'));
178             }
179
180             // set the source attr
181
182             $this->source = $app->name;
183
184             $appUser = Oauth_application_user::staticGet('token', $access_token);
185
186             if (!empty($appUser)) {
187                 // If access_type == 0 we have either a request token
188                 // or a bad / revoked access token
189
190                 if ($appUser->access_type != 0) {
191                     // Set the access level for the api call
192                     $this->access = ($appUser->access_type & Oauth_application::$writeAccess)
193                       ? self::READ_WRITE : self::READ_ONLY;
194
195                     // Set the auth user
196                     if (Event::handle('StartSetApiUser', array(&$user))) {
197                         $this->auth_user = User::staticGet('id', $appUser->profile_id);
198                         Event::handle('EndSetApiUser', array($user));
199                     }
200
201                     $msg = "API OAuth authentication for user '%s' (id: %d) on behalf of " .
202                         "application '%s' (id: %d) with %s access.";
203
204                     common_log(
205                         LOG_INFO,
206                         sprintf(
207                             $msg,
208                             $this->auth_user->nickname,
209                             $this->auth_user->id,
210                             $app->name,
211                             $app->id,
212                             ($this->access = self::READ_WRITE) ? 'read-write' : 'read-only'
213                         )
214                     );
215                 } else {
216                     // TRANS: OAuth exception given when an incorrect access token was given for a user.
217                     throw new OAuthException(_('Bad access token.'));
218                 }
219             } else {
220                 // Also should not happen
221                 // TRANS: OAuth exception given when no user was found for a given token (no token was found).
222                 throw new OAuthException(_('No user for that token.'));
223             }
224
225         } catch (OAuthException $e) {
226             $this->logAuthFailure($e->getMessage());
227             common_log(LOG_WARNING, 'API OAuthException - ' . $e->getMessage());
228             $this->clientError($e->getMessage(), 401, $this->format);
229             exit;
230         }
231     }
232
233     /**
234      * Does this API resource require authentication?
235      *
236      * @return boolean true
237      */
238     function requiresAuth()
239     {
240         return true;
241     }
242
243     /**
244      * Check for a user specified via HTTP basic auth. If there isn't
245      * one, try to get one by outputting the basic auth header.
246      *
247      * @return boolean true or false
248      */
249     function checkBasicAuthUser($required = true)
250     {
251         $this->basicAuthProcessHeader();
252
253         $realm = common_config('api', 'realm');
254
255         if (empty($realm)) {
256             $realm = common_config('site', 'name') . ' API';
257         }
258
259         if (empty($this->auth_user_nickname) && $required) {
260             header('WWW-Authenticate: Basic realm="' . $realm . '"');
261
262             // show error if the user clicks 'cancel'
263             // TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
264             $this->clientError(_("Could not authenticate you."), 401, $this->format);
265             exit;
266
267         } else {
268
269             $user = common_check_user($this->auth_user_nickname,
270                                       $this->auth_user_password);
271
272             if (Event::handle('StartSetApiUser', array(&$user))) {
273
274                 if (!empty($user)) {
275                     $this->auth_user = $user;
276                 }
277
278                 Event::handle('EndSetApiUser', array($user));
279             }
280
281             // By default, basic auth users have rw access
282             $this->access = self::READ_WRITE;
283
284             if (empty($this->auth_user) && ($required || isset($_SERVER['PHP_AUTH_USER']))) {
285                 $msg = sprintf(
286                     "basic auth nickname = %s",
287                     $this->auth_user_nickname
288                 );
289                 $this->logAuthFailure($msg);
290                 // TRANS: Client error thrown when authentication fails.
291                 $this->clientError(_("Could not authenticate you."), 401, $this->format);
292                 exit;
293             }
294         }
295     }
296
297     /**
298      * Read the HTTP headers and set the auth user.  Decodes HTTP_AUTHORIZATION
299      * param to support basic auth when PHP is running in CGI mode.
300      *
301      * @return void
302      */
303     function basicAuthProcessHeader()
304     {
305         $authHeaders = array('AUTHORIZATION',
306                              'HTTP_AUTHORIZATION',
307                              'REDIRECT_HTTP_AUTHORIZATION'); // rewrite for CGI
308         $authorization_header = null;
309         foreach ($authHeaders as $header) {
310             if (isset($_SERVER[$header])) {
311                 $authorization_header = $_SERVER[$header];
312                 break;
313             }
314         }
315
316         if (isset($_SERVER['PHP_AUTH_USER'])) {
317             $this->auth_user_nickname = $_SERVER['PHP_AUTH_USER'];
318             $this->auth_user_password = $_SERVER['PHP_AUTH_PW'];
319         } elseif (isset($authorization_header)
320             && strstr(substr($authorization_header, 0, 5), 'Basic')) {
321
322             // Decode the HTTP_AUTHORIZATION header on php-cgi server self
323             // on fcgid server the header name is AUTHORIZATION
324             $auth_hash = base64_decode(substr($authorization_header, 6));
325             list($this->auth_user_nickname,
326                  $this->auth_user_password) = explode(':', $auth_hash);
327
328             // Set all to null on a empty basic auth request
329
330             if (empty($this->auth_user_nickname)) {
331                 $this->auth_user_nickname = null;
332                 $this->auth_password = null;
333             }
334         }
335     }
336
337     /**
338      * Log an API authentication failer. Collect the proxy and IP
339      * and log them
340      *
341      * @param string $logMsg additional log message
342      */
343
344      function logAuthFailure($logMsg)
345      {
346         list($proxy, $ip) = common_client_ip();
347
348         $msg = sprintf(
349             'API auth failure (proxy = %1$s, ip = %2$s) - ',
350             $proxy,
351             $ip
352         );
353
354         common_log(LOG_WARNING, $msg . $logMsg);
355      }
356 }