]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - tests/oauth/getrequesttoken.php
Somewhat improved test script for fetching an OAuth request token
[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) 2008, 2009, 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 $test_consumer = new OAuthConsumer($ini['consumer_key'], $ini['consumer_secret']);
28 $rt_endpoint = $ini['apiroot'] . $ini['request_token_url'];
29 $parsed = parse_url($rt_endpoint);
30 $params = array();
31 parse_str($parsed['query'], $params);
32
33 $hmac_method = new OAuthSignatureMethod_HMAC_SHA1();
34
35 try {
36     $req_req = OAuthRequest::from_consumer_and_token($test_consumer, NULL, "GET", $rt_endpoint, $params);
37     $req_req->sign_request($hmac_method, $test_consumer, NULL);
38     $r = httpRequest($req_req->to_url());
39 } catch (Exception $e) {
40     print $e->getMessage();
41     var_dump($req_req);
42     exit(1);
43 }
44
45 $body = $r->getBody();
46 $token_stuff = array();
47 parse_str($body, $token_stuff);
48
49 if (empty($token_stuff['oauth_token'])) {
50     print "Error: $body\n";
51     exit(1);
52 }
53
54 $authurl = $ini['apiroot'] . $ini['authorize_url'] . '?oauth_token=' . $token_stuff['oauth_token'];
55 print "\nSuccess!\n\n";
56 print 'Request token        : ' . $token_stuff['oauth_token'] . "\n";
57 print 'Request token secret : ' . $token_stuff['oauth_token_secret'] . "\n";
58 print "Authorize URL        : $authurl\n";
59
60 print "\nNow paste the Authorize URL into your browser and authorize the request token.\n";
61
62 function httpRequest($url)
63 {
64     $request = HTTPClient::start();
65     
66     $request->setConfig(
67         array(
68             'follow_redirects' => true,
69             'connect_timeout' => 120,
70             'timeout' => 120,
71             'ssl_verify_peer' => false,
72             'ssl_verify_host' => false
73         )
74     );
75     
76     return $request->get($url);
77 }
78