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