]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - tests/oauth/fetch_temp_creds.php
Merge remote-tracking branch 'upstream/master' into social-master
[quix0rs-gnu-social.git] / tests / oauth / fetch_temp_creds.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.php';
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 $consumer = new OAuthConsumer($ini['consumer_key'], $ini['consumer_secret']);
37 $endpoint = $ini['apiroot'] . $ini['request_token_url'];
38 $parsed   = parse_url($endpoint);
39 $params   = array();
40
41 parse_str($parsed['query'], $params);
42 $params['oauth_callback'] = 'oob'; // out-of-band
43
44 $hmac_method = new OAuthSignatureMethod_HMAC_SHA1();
45
46 try {
47     $req = OAuthRequest::from_consumer_and_token(
48         $consumer,
49         null,
50         "POST",
51         $endpoint,
52         $params
53     );
54     $req->sign_request($hmac_method, $consumer, NULL);
55     $r = httpRequest($endpoint, $req->to_postdata());
56 } catch (Exception $e) {
57     // oh noez
58     print $e->getMessage();
59     print "\nOAuth Request:\n";
60     var_dump($req);
61     exit(1);
62 }
63
64 $body       = $r->getBody();
65 $tokenStuff = array();
66
67 parse_str($body, $tokenStuff);
68
69 $tok       = $tokenStuff['oauth_token'];
70 $confirmed = $tokenStuff['oauth_callback_confirmed'];
71
72 if (empty($tokenStuff['oauth_token'])
73     || empty($tokenStuff['oauth_token_secret'])
74     || empty($confirmed)
75     || $confirmed != 'true')
76 {
77     print "Error! HTTP response body: $body\n";
78     exit(1);
79 }
80
81 $authurl = $ini['apiroot'] . $ini['authorize_url'] . '?oauth_token=' . $tok;
82
83 print "Request Token\n";
84 print '   - oauth_token        = ' . $tokenStuff['oauth_token'] . "\n";
85 print '   - oauth_token_secret = ' . $tokenStuff['oauth_token_secret'] . "\n";
86 print "Authorize URL\n    $authurl\n\n";
87 print "Now paste the Authorize URL into your browser and authorize your temporary credentials.\n";
88
89 function httpRequest($endpoint, $poststr)
90 {
91     $request = HTTPClient::start();
92
93     $request->setConfig(
94         array(
95             'follow_redirects' => true,
96             'connect_timeout' => 120,
97             'timeout' => 120,
98             'ssl_verify_peer' => false,
99             'ssl_verify_host' => false
100         )
101     );
102
103     // Turn signed request query string back into an array
104     parse_str($poststr, $postdata);
105     return $request->post($endpoint, null, $postdata);
106 }