]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apioauthaccesstoken.php
Print a proper error message
[quix0rs-gnu-social.git] / actions / apioauthaccesstoken.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Action for getting OAuth token credentials (exchange an authorized
6  * request token for an access token)
7  *
8  * PHP version 5
9  *
10  * LICENCE: This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  API
24  * @package   StatusNet
25  * @author    Zach Copley <zach@status.net>
26  * @copyright 2010 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR . '/lib/apioauth.php';
36
37 /**
38  * Action for getting OAuth token credentials (exchange an authorized
39  * request token for an access token)
40  *
41  * @category API
42  * @package  StatusNet
43  * @author   Zach Copley <zach@status.net>
44  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45  * @link     http://status.net/
46  */
47
48 class ApiOauthAccessTokenAction extends ApiOauthAction
49 {
50     protected $reqToken = null;
51     protected $verifier = null;
52
53     /**
54      * Class handler.
55      *
56      * @param array $args array of arguments
57      *
58      * @return void
59      */
60     function handle($args)
61     {
62         parent::handle($args);
63
64         $datastore   = new ApiStatusNetOAuthDataStore();
65         $server      = new OAuthServer($datastore);
66         $hmac_method = new OAuthSignatureMethod_HMAC_SHA1();
67
68         $server->add_signature_method($hmac_method);
69
70         $atok = null;
71
72         // XXX: Insist that oauth_token and oauth_verifier be populated?
73         // Spec doesn't say they MUST be.
74
75         try {
76
77             $req  = OAuthRequest::from_request();
78
79             $this->reqToken = $req->get_parameter('oauth_token');
80             $this->verifier = $req->get_parameter('oauth_verifier');
81
82             $atok = $server->fetch_access_token($req);
83
84         } catch (OAuthException $e) {
85             common_log(LOG_WARNING, 'API OAuthException - ' . $e->getMessage());
86             common_debug(var_export($req, true));
87             $code = $e->getCode();
88             $this->clientError($e->getMessage(), empty($code) ? 401 : $code, 'text');
89         }
90
91         if (empty($atok)) {
92
93             // Token exchange failed -- log it
94
95             list($proxy, $ip) = common_client_ip();
96
97             $msg = sprintf(
98                 'API OAuth - Failure exchanging request token for access token, '
99                     . 'request token = %s, verifier = %s, IP = %s, proxy = %s',
100                 $this->reqToken,
101                 $this->verifier,
102                 $ip,
103                 $proxy
104             );
105
106             common_log(LOG_WARNING, $msg);
107
108             $this->clientError(_("Invalid request token or verifier.", 400, 'text'));
109
110         } else {
111             $this->showAccessToken($atok);
112         }
113     }
114
115     /*
116      * Display OAuth token credentials
117      *
118      * @param OAuthToken token the access token
119      */
120
121     function showAccessToken($token)
122     {
123         header('Content-Type: application/x-www-form-urlencoded');
124         print $token;
125     }
126 }