| 
									
										
										
										
											2010-01-07 13:19:21 -08:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  |  * Action for getting OAuth token credentials (exchange an authorized | 
					
						
							|  |  |  |  * request token for an access token) | 
					
						
							| 
									
										
										
										
											2010-01-07 13:19:21 -08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * LICENCE: This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  API | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Zach Copley <zach@status.net> | 
					
						
							|  |  |  |  * @copyright 2010 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-06 12:40:58 +02:00
										 |  |  | if (!defined('GNUSOCIAL')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2010-01-07 13:19:21 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  |  * Action for getting OAuth token credentials (exchange an authorized | 
					
						
							|  |  |  |  * request token for an access token) | 
					
						
							| 
									
										
										
										
											2010-01-07 13:19:21 -08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @category API | 
					
						
							|  |  |  |  * @package  StatusNet | 
					
						
							|  |  |  |  * @author   Zach Copley <zach@status.net> | 
					
						
							|  |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link     http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-10-06 12:40:58 +02:00
										 |  |  | class ApiOAuthAccessTokenAction extends ApiOAuthAction | 
					
						
							| 
									
										
										
										
											2010-01-07 13:19:21 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  |     protected $reqToken = null; | 
					
						
							|  |  |  |     protected $verifier = null; | 
					
						
							| 
									
										
										
										
											2010-01-07 13:19:21 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-11 01:11:50 -08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Class handler. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args array of arguments | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function handle($args) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::handle($args); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 00:20:36 +02:00
										 |  |  |         $datastore   = new ApiGNUsocialOAuthDataStore(); | 
					
						
							| 
									
										
										
										
											2010-01-11 01:11:50 -08:00
										 |  |  |         $server      = new OAuthServer($datastore); | 
					
						
							|  |  |  |         $hmac_method = new OAuthSignatureMethod_HMAC_SHA1(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $server->add_signature_method($hmac_method); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-19 12:07:59 -07:00
										 |  |  |         $atok = $app = null; | 
					
						
							| 
									
										
										
										
											2010-01-11 01:11:50 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  |         // XXX: Insist that oauth_token and oauth_verifier be populated?
 | 
					
						
							|  |  |  |         // Spec doesn't say they MUST be.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-11 01:11:50 -08:00
										 |  |  |         try { | 
					
						
							|  |  |  |             $req  = OAuthRequest::from_request(); | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |             $this->reqToken = $req->get_parameter('oauth_token'); | 
					
						
							|  |  |  |             $this->verifier = $req->get_parameter('oauth_verifier'); | 
					
						
							| 
									
										
										
										
											2010-10-20 17:21:04 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |             $app  = $datastore->getAppByRequestToken($this->reqToken); | 
					
						
							| 
									
										
										
										
											2010-01-11 01:11:50 -08:00
										 |  |  |             $atok = $server->fetch_access_token($req); | 
					
						
							| 
									
										
										
										
											2010-10-19 20:54:53 -07:00
										 |  |  |         } catch (Exception $e) { | 
					
						
							| 
									
										
										
										
											2010-01-27 08:45:56 +00:00
										 |  |  |             common_log(LOG_WARNING, 'API OAuthException - ' . $e->getMessage()); | 
					
						
							| 
									
										
										
										
											2010-01-13 05:06:35 +00:00
										 |  |  |             common_debug(var_export($req, true)); | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  |             $code = $e->getCode(); | 
					
						
							|  |  |  |             $this->clientError($e->getMessage(), empty($code) ? 401 : $code, 'text'); | 
					
						
							| 
									
										
										
										
											2010-01-11 01:11:50 -08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-13 05:06:35 +00:00
										 |  |  |         if (empty($atok)) { | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  |             // Token exchange failed -- log it
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $msg = sprintf( | 
					
						
							| 
									
										
										
										
											2010-10-19 12:07:59 -07:00
										 |  |  |                 'API OAuth - Failure exchanging OAuth request token for access token, ' | 
					
						
							|  |  |  |                     . 'request token = %s, verifier = %s', | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  |                 $this->reqToken, | 
					
						
							| 
									
										
										
										
											2010-10-19 12:07:59 -07:00
										 |  |  |                 $this->verifier | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  |             ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-19 20:54:53 -07:00
										 |  |  |             common_log(LOG_WARNING, $msg); | 
					
						
							| 
									
										
										
										
											2010-10-20 19:34:27 +02:00
										 |  |  |             // TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
 | 
					
						
							| 
									
										
										
										
											2011-02-17 00:39:53 +01:00
										 |  |  |             $this->clientError(_('Invalid request token or verifier.'), 400, 'text'); | 
					
						
							| 
									
										
										
										
											2010-01-13 05:06:35 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2010-10-19 12:07:59 -07:00
										 |  |  |             common_log( | 
					
						
							|  |  |  |                 LOG_INFO, | 
					
						
							|  |  |  |                 sprintf( | 
					
						
							| 
									
										
										
										
											2010-10-20 17:21:04 -07:00
										 |  |  |                     "Issued access token '%s' for application %d (%s).", | 
					
						
							| 
									
										
										
										
											2010-10-19 12:07:59 -07:00
										 |  |  |                     $atok->key, | 
					
						
							|  |  |  |                     $app->id, | 
					
						
							|  |  |  |                     $app->name | 
					
						
							|  |  |  |                 ) | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  |             $this->showAccessToken($atok); | 
					
						
							| 
									
										
										
										
											2010-01-13 05:06:35 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-01-11 01:11:50 -08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  |     /* | 
					
						
							|  |  |  |      * Display OAuth token credentials | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param OAuthToken token the access token | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function showAccessToken($token) | 
					
						
							| 
									
										
										
										
											2010-01-11 01:11:50 -08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-10-07 18:32:27 -07:00
										 |  |  |         header('Content-Type: application/x-www-form-urlencoded'); | 
					
						
							|  |  |  |         print $token; | 
					
						
							| 
									
										
										
										
											2010-01-11 01:11:50 -08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-01-07 13:19:21 -08:00
										 |  |  | } |