]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - tests/oauth/getrequesttoken.php
Update ApiOauthRequestTokenAction to support OAuth 1.0a
[quix0rs-gnu-social.git] / tests / oauth / getrequesttoken.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * StatusNet - a distributed open-source microblogging tool
5  * Copyright (C) 2010, StatusNet, Inc.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/../..'));
22
23 require_once INSTALLDIR . '/scripts/commandline.inc';
24 require_once INSTALLDIR . '/extlib/OAuth.php';
25
26 $ini = parse_ini_file("oauth.ini");
27
28 // Check to make sure we have everything we need from the ini file
29 foreach(array('consumer_key', 'consumer_secret', 'apiroot', 'request_token_url') as $inikey) {
30     if (empty($ini[$inikey])) {
31         print "You forgot to specify a $inikey in your oauth.ini file.\n";
32         exit(1);
33     }
34 }
35
36 $testConsumer = new OAuthConsumer($ini['consumer_key'], $ini['consumer_secret']);
37 $requestTokenUrl = $ini['apiroot'] . $ini['request_token_url'];
38 $parsed = parse_url($requestTokenUrl);
39 $params = array();
40 parse_str($parsed['query'], $params);
41 $params['oauth_callback'] = 'oob';
42
43 $hmac_method = new OAuthSignatureMethod_HMAC_SHA1();
44
45 try {
46     $req = OAuthRequest::from_consumer_and_token(
47         $testConsumer,
48         null,
49         "GET",
50         $requestTokenUrl,
51         $params
52     );
53     $req->sign_request($hmac_method, $testConsumer, NULL);
54     $r = httpRequest($req->to_url());
55 } catch (Exception $e) {
56     // oh noez
57     print $e->getMessage();
58     var_dump($req);
59     exit(1);
60 }
61
62 $body = $r->getBody();
63 $tokenStuff = array();
64 parse_str($body, $tokenStuff);
65
66 if (empty($tokenStuff['oauth_token'])) {
67     print "Error: $body\n";
68     exit(1);
69 }
70
71 $authurl = $ini['apiroot'] . $ini['authorize_url'] . '?oauth_token=' . $tokenStuff['oauth_token'];
72 print "\nSuccess!\n\n";
73 print 'Request token        : ' . $tokenStuff['oauth_token'] . "\n";
74 print 'Request token secret : ' . $tokenStuff['oauth_token_secret'] . "\n";
75 print "Authorize URL        : $authurl\n";
76
77 print "\nNow paste the Authorize URL into your browser and authorize the request token.\n";
78
79 function httpRequest($url)
80 {
81     $request = HTTPClient::start();
82
83     $request->setConfig(
84         array(
85             'follow_redirects' => true,
86             'connect_timeout' => 120,
87             'timeout' => 120,
88             'ssl_verify_peer' => false,
89             'ssl_verify_host' => false
90         )
91     );
92
93     return $request->get($url);
94 }
95