3 * StatusNet, the distributed open-source microblogging tool
5 * Base class for API actions that require authentication
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.
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.
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/>.
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/
38 /* External API usage documentation. Please update when you change how this method works. */
40 /*! @page authentication Authentication
42 StatusNet supports HTTP Basic Authentication and OAuth for API calls.
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.
48 @section HTTP Basic Auth
56 if (!defined('GNUSOCIAL')) { exit(1); }
59 * Actions extending this class will require auth
63 * @author Zach Copley <zach@status.net>
64 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
65 * @link http://status.net/
67 class ApiAuthAction extends ApiAction
69 var $auth_user_nickname = null;
70 var $auth_user_password = null;
73 * Take arguments for running, looks for an OAuth request,
74 * and outputs basic auth header if needed
76 * @param array $args $_REQUEST args
78 * @return boolean success flag
81 protected function prepare(array $args=array())
83 parent::prepare($args);
85 // NOTE: $this->scoped and $this->auth_user has to get set in
86 // prepare(), not handle(), as subclasses use them in prepares.
88 // Allow regular login session
89 if (common_logged_in()) {
90 $this->scoped = Profile::current();
91 $this->auth_user = $this->scoped->getUser();
92 if (!$this->auth_user->hasRight(Right::API)) {
93 // TRANS: Authorization exception thrown when a user without API access tries to access the API.
94 throw new AuthorizationException(_('Not allowed to use API.'));
96 $this->access = self::READ_WRITE;
98 $oauthReq = $this->getOAuthRequest();
100 if ($oauthReq instanceof OAuthRequest) {
101 $this->checkOAuthRequest($oauthReq);
103 // If not using OAuth, check if there is a basic auth
104 // and require it if the current action requires it.
105 $this->checkBasicAuthUser($this->requiresAuth());
108 // NOTE: Make sure we're scoped properly based on the auths!
109 if (isset($this->auth_user) && $this->auth_user instanceof User) {
110 $this->scoped = $this->auth_user->getProfile();
112 $this->scoped = null;
116 // legacy user transferral
117 // TODO: remove when sure no extended classes need it
118 $this->user = $this->auth_user;
120 // Reject API calls with the wrong access level
122 if ($this->isReadOnly($args) == false) {
123 if ($this->access != self::READ_WRITE) {
124 // TRANS: Client error 401.
125 $msg = _('API resource requires read-write access, ' .
126 'but you only have read access.');
127 $this->clientError($msg, 401);
135 * Determine whether the request is an OAuth request.
136 * This is to avoid doign any unnecessary DB lookups.
138 * @return mixed the OAuthRequest or false
140 function getOAuthRequest()
142 ApiOAuthAction::cleanRequest();
144 $req = OAuthRequest::from_request();
146 $consumer = $req->get_parameter('oauth_consumer_key');
147 $accessToken = $req->get_parameter('oauth_token');
149 // XXX: Is it good enough to assume it's not meant to be an
150 // OAuth request if there is no consumer or token? --Z
152 if (empty($consumer) || empty($accessToken)) {
160 * Verifies the OAuth request signature, sets the auth user
161 * and access type (read-only or read-write)
163 * @param OAuthRequest $request the OAuth Request
167 function checkOAuthRequest($request)
169 $datastore = new ApiGNUsocialOAuthDataStore();
170 $server = new OAuthServer($datastore);
171 $hmac_method = new OAuthSignatureMethod_HMAC_SHA1();
173 $server->add_signature_method($hmac_method);
176 $server->verify_request($request);
178 $consumer = $request->get_parameter('oauth_consumer_key');
179 $access_token = $request->get_parameter('oauth_token');
181 $app = Oauth_application::getByConsumerKey($consumer);
186 'API OAuth - Couldn\'t find the OAuth app for consumer key: ' .
189 // TRANS: OAuth exception thrown when no application is found for a given consumer key.
190 throw new OAuthException(_('No application for that consumer key.'));
193 // set the source attr
194 if ($app->name != 'anonymous') {
195 $this->source = $app->name;
199 $appUser = Oauth_application_user::getKV('token', $access_token);
201 if (!empty($appUser)) {
202 // If access_type == 0 we have either a request token
203 // or a bad / revoked access token
205 if ($appUser->access_type != 0) {
206 // Set the access level for the api call
207 $this->access = ($appUser->access_type & Oauth_application::$writeAccess)
208 ? self::READ_WRITE : self::READ_ONLY;
211 if (Event::handle('StartSetApiUser', array(&$user))) {
212 $user = User::getKV('id', $appUser->profile_id);
214 if (!$user->hasRight(Right::API)) {
215 // TRANS: Authorization exception thrown when a user without API access tries to access the API.
216 throw new AuthorizationException(_('Not allowed to use API.'));
219 $this->auth_user = $user;
220 // FIXME: setting the value returned by common_current_user()
221 // There should probably be a better method for this. common_set_user()
222 // does lots of session stuff.
224 $_cur = $this->auth_user;
225 Event::handle('EndSetApiUser', array($user));
228 $msg = "API OAuth authentication for user '%s' (id: %d) on behalf of " .
229 "application '%s' (id: %d) with %s access.";
235 $this->auth_user->nickname,
236 $this->auth_user->id,
239 ($this->access = self::READ_WRITE) ? 'read-write' : 'read-only'
243 // TRANS: OAuth exception given when an incorrect access token was given for a user.
244 throw new OAuthException(_('Bad access token.'));
247 // Also should not happen.
248 // TRANS: OAuth exception given when no user was found for a given token (no token was found).
249 throw new OAuthException(_('No user for that token.'));
252 } catch (OAuthException $e) {
253 $this->logAuthFailure($e->getMessage());
254 common_log(LOG_WARNING, 'API OAuthException - ' . $e->getMessage());
255 $this->clientError($e->getMessage(), 401);
260 * Does this API resource require authentication?
262 * @return boolean true
264 public function requiresAuth()
270 * Check for a user specified via HTTP basic auth. If there isn't
271 * one, try to get one by outputting the basic auth header.
273 * @return boolean true or false
275 function checkBasicAuthUser($required = true)
277 $this->basicAuthProcessHeader();
279 $realm = common_config('api', 'realm');
282 $realm = common_config('site', 'name') . ' API';
285 if (empty($this->auth_user_nickname) && $required) {
286 header('WWW-Authenticate: Basic realm="' . $realm . '"');
288 // show error if the user clicks 'cancel'
289 // TRANS: Client error thrown when authentication fails because a user clicked "Cancel".
290 $this->clientError(_('Could not authenticate you.'), 401);
292 } elseif ($required) {
293 // $this->auth_user_nickname - i.e. PHP_AUTH_USER - will have a value since it was not empty
295 $user = common_check_user($this->auth_user_nickname,
296 $this->auth_user_password);
298 if (Event::handle('StartSetApiUser', array(&$user))) {
300 if ($user instanceof User) {
301 if (!$user->hasRight(Right::API)) {
302 // TRANS: Authorization exception thrown when a user without API access tries to access the API.
303 throw new AuthorizationException(_('Not allowed to use API.'));
305 $this->auth_user = $user;
308 Event::handle('EndSetApiUser', array($user));
311 // By default, basic auth users have rw access
312 $this->access = self::READ_WRITE;
314 if (!$this->auth_user instanceof User) {
316 "basic auth nickname = %s",
317 $this->auth_user_nickname
319 $this->logAuthFailure($msg);
321 // We must present WWW-Authenticate in accordance to HTTP status code 401
322 header('WWW-Authenticate: Basic realm="' . $realm . '"');
323 // TRANS: Client error thrown when authentication fails.
324 $this->clientError(_('Could not authenticate you.'), 401);
327 // all get rw access for actions that don't require auth
328 $this->access = self::READ_WRITE;
333 * Read the HTTP headers and set the auth user. Decodes HTTP_AUTHORIZATION
334 * param to support basic auth when PHP is running in CGI mode.
338 function basicAuthProcessHeader()
340 $authHeaders = array('AUTHORIZATION',
341 'HTTP_AUTHORIZATION',
342 'REDIRECT_HTTP_AUTHORIZATION'); // rewrite for CGI
343 $authorization_header = null;
344 foreach ($authHeaders as $header) {
345 if (isset($_SERVER[$header])) {
346 $authorization_header = $_SERVER[$header];
351 if (isset($_SERVER['PHP_AUTH_USER'])) {
352 $this->auth_user_nickname = $_SERVER['PHP_AUTH_USER'];
353 $this->auth_user_password = $_SERVER['PHP_AUTH_PW'];
354 } elseif (isset($authorization_header)
355 && strstr(substr($authorization_header, 0, 5), 'Basic')) {
357 // Decode the HTTP_AUTHORIZATION header on php-cgi server self
358 // on fcgid server the header name is AUTHORIZATION
359 $auth_hash = base64_decode(substr($authorization_header, 6));
360 list($this->auth_user_nickname,
361 $this->auth_user_password) = explode(':', $auth_hash);
363 // Set all to null on a empty basic auth request
365 if (empty($this->auth_user_nickname)) {
366 $this->auth_user_nickname = null;
367 $this->auth_password = null;
373 * Log an API authentication failure. Collect the proxy and IP
376 * @param string $logMsg additional log message
378 function logAuthFailure($logMsg)
380 list($proxy, $ip) = common_client_ip();
383 'API auth failure (proxy = %1$s, ip = %2$s) - ',
388 common_log(LOG_WARNING, $msg . $logMsg);