GoogleOauth2.0 First implementation
First try for GoogleOauth2.0
This commit is contained in:
1
express-server/node_modules/oauth/.npmignore
generated
vendored
Normal file
1
express-server/node_modules/oauth/.npmignore
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
node_modules
|
8
express-server/node_modules/oauth/LICENSE
generated
vendored
Normal file
8
express-server/node_modules/oauth/LICENSE
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
The MIT License (MIT)
|
||||
Copyright (c) <2010-2012> <Ciaran Jessup>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
7
express-server/node_modules/oauth/Makefile
generated
vendored
Normal file
7
express-server/node_modules/oauth/Makefile
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
#
|
||||
# Run all tests
|
||||
#
|
||||
test:
|
||||
@@node_modules/.bin/vows tests/*tests.js --spec
|
||||
|
||||
.PHONY: test install
|
190
express-server/node_modules/oauth/Readme.md
generated
vendored
Normal file
190
express-server/node_modules/oauth/Readme.md
generated
vendored
Normal file
@ -0,0 +1,190 @@
|
||||
node-oauth
|
||||
===========
|
||||
A simple oauth API for node.js . This API allows users to authenticate against OAUTH providers, and thus act as OAuth consumers. It also has support for OAuth Echo, which is used for communicating with 3rd party media providers such as TwitPic and yFrog.
|
||||
|
||||
Tested against Twitter (http://twitter.com), term.ie (http://term.ie/oauth/example/), TwitPic, and Yahoo!
|
||||
|
||||
Also provides rudimentary OAuth2 support, tested against facebook, github, foursquare, google and Janrain. For more complete usage examples please take a look at connect-auth (http://github.com/ciaranj/connect-auth)
|
||||
|
||||
[][koding]
|
||||
[koding]: https://koding.com/Teamwork?import=https://github.com/ciaranj/node-oauth/archive/master.zip&c=git1
|
||||
[][Thinkful]
|
||||
[Thinkful]: http://start.thinkful.com/node/?utm_source=github&utm_medium=badge&utm_campaign=node-oauth
|
||||
|
||||
Installation
|
||||
==============
|
||||
|
||||
$ npm install oauth
|
||||
|
||||
|
||||
Examples
|
||||
==========
|
||||
|
||||
To run examples/tests install Mocha `$ npm install -g mocha` and run `$ mocha you-file-name.js`:
|
||||
|
||||
## OAuth1.0
|
||||
|
||||
```javascript
|
||||
describe('OAuth1.0',function(){
|
||||
var OAuth = require('oauth');
|
||||
|
||||
it('tests trends Twitter API v1.1',function(done){
|
||||
var oauth = new OAuth.OAuth(
|
||||
'https://api.twitter.com/oauth/request_token',
|
||||
'https://api.twitter.com/oauth/access_token',
|
||||
'your application consumer key',
|
||||
'your application secret',
|
||||
'1.0A',
|
||||
null,
|
||||
'HMAC-SHA1'
|
||||
);
|
||||
oauth.get(
|
||||
'https://api.twitter.com/1.1/trends/place.json?id=23424977',
|
||||
'your user token for this app', //test user token
|
||||
'your user secret for this app', //test user secret
|
||||
function (e, data, res){
|
||||
if (e) console.error(e);
|
||||
console.log(require('util').inspect(data));
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
```
|
||||
|
||||
## OAuth2.0
|
||||
```javascript
|
||||
describe('OAuth2',function(){
|
||||
var OAuth = require('oauth');
|
||||
|
||||
it('gets bearer token', function(done){
|
||||
var OAuth2 = OAuth.OAuth2;
|
||||
var twitterConsumerKey = 'your key';
|
||||
var twitterConsumerSecret = 'your secret';
|
||||
var oauth2 = new OAuth2(server.config.keys.twitter.consumerKey,
|
||||
twitterConsumerSecret,
|
||||
'https://api.twitter.com/',
|
||||
null,
|
||||
'oauth2/token',
|
||||
null);
|
||||
oauth2.getOAuthAccessToken(
|
||||
'',
|
||||
{'grant_type':'client_credentials'},
|
||||
function (e, access_token, refresh_token, results){
|
||||
console.log('bearer: ',access_token);
|
||||
done();
|
||||
});
|
||||
});
|
||||
```
|
||||
|
||||
Change History
|
||||
==============
|
||||
* 0.9.15
|
||||
- OAuth2: Allow specification of agent
|
||||
* 0.9.14
|
||||
- OAuth2: Extend 'successful' token responses to include anything in the 2xx range.
|
||||
* 0.9.13
|
||||
- OAuth2: Fixes the "createCredentials() is deprecated, use tls.createSecureContext instead" message. (thank you AJ ONeal)
|
||||
* 0.9.12
|
||||
- OAuth1/2: Can now pass Buffer instance directly for PUTs+POSTs (thank you Evan Prodromou)
|
||||
- OAuth1: Improve interoperability with libraries that mess with the prototype. (thank you Jose Ignacio Andres)
|
||||
- OAuth2: Adds PUT support for OAuth2 (thank you Derek Brooks)
|
||||
- OAuth1: Improves use_strict compatibility (thank you Ted Goddard)
|
||||
* 0.9.11
|
||||
- OAuth2: No longer sends the type=webserver argument with the OAuth2 requests (thank you bendiy)
|
||||
- OAuth2: Provides a default (and overrideable) User-Agent header (thanks to Andrew Martens & Daniel Mahlow)
|
||||
- OAuth1: New followRedirects client option (true by default) (thanks to Pieter Joost van de Sande)
|
||||
- OAuth1: Adds RSA-SHA1 support (thanks to Jeffrey D. Van Alstine & Michael Garvin & Andreas Knecht)
|
||||
* 0.9.10
|
||||
- OAuth2: Addresses 2 issues that came in with 0.9.9, #129 & #125 (thank you José F. Romaniello)
|
||||
* 0.9.9
|
||||
- OAuth1: Fix the mismatch between the output of querystring.stringify() and this._encodeData(). (thank you rolandboon)
|
||||
- OAuth2: Adds Authorization Header and supports extra headers by default ( thanks to Brian Park)
|
||||
* 0.9.8
|
||||
- OAuth1: Support overly-strict OAuth server's that require whitespace separating the Authorization Header parameters (e.g. 500px.com) (Thanks to Christian Schwarz)
|
||||
- OAuth1: Fix incorrect double-encoding of PLAINTEXT OAuth connections (Thanks to Joe Rozner)
|
||||
- OAuth1: Minor safety check added when checking hostnames. (Thanks to Garrick Cheung)
|
||||
* 0.9.7
|
||||
- OAuth2: Pass back any extra response data for calls to getOAuthAccessToken (Thanks to Tang Bo Hao)
|
||||
- OAuth2: Don't force a https request if given a http url (Thanks to Damien Mathieu)
|
||||
- OAuth2: Supports specifying a grant-type of 'refresh-token' (Thanks to Luke Baker)
|
||||
* 0.9.6
|
||||
- OAuth2: Support for 302 redirects (Thanks Patrick Negri).
|
||||
- OAuth1/2: Some code tidying. ( Thanks to Raoul Millais )
|
||||
* 0.9.5
|
||||
- OAuth1: Allow usage of HTTP verbs other than GET for retrieving the access and request tokens (Thanks to Raoul Millais)
|
||||
* 0.9.4
|
||||
- OAuth1/2: Support for OAuth providers that drop connections (don't send response lengths? [Google])
|
||||
- OAuth2: Change getOAuthAccessToken to POST rather than GET ( Possible Breaking change!!! ... re-tested against Google, Github, Facebook, FourSquare and Janrain and seems ok .. is closer to the spec (v20) )
|
||||
* 0.9.3
|
||||
- OAuth1: Adds support for following 301 redirects (Thanks bdickason)
|
||||
* 0.9.2
|
||||
- OAuth1: Correct content length calculated for non-ascii post bodies (Thanks selead)
|
||||
- OAuth1: Allowed for configuration of the 'access token' name used when requesting protected resources (OAuth2)
|
||||
* 0.9.1
|
||||
- OAuth1: Added support for automatically following 302 redirects (Thanks neyric)
|
||||
- OAuth1: Added support for OAuth Echo (Thanks Ryan LeFevre).
|
||||
- OAuth1: Improved handling of 2xx responses (Thanks Neil Mansilla).
|
||||
* 0.9.0
|
||||
- OAuth1/2: Compatibility fixes to bring node-oauth up to speed with node.js 0.4x [thanks to Rasmus Andersson for starting the work ]
|
||||
* 0.8.4
|
||||
- OAuth1: Fixed issue #14 (Parameter ordering ignored encodings).
|
||||
- OAuth1: Added support for repeated parameter names.
|
||||
- OAuth1/2: Implements issue #15 (Use native SHA1 if available, 10x speed improvement!).
|
||||
- OAuth2: Fixed issue #16 (Should use POST when requesting access tokens.).
|
||||
- OAuth2: Fixed Issue #17 (OAuth2 spec compliance).
|
||||
- OAuth1: Implemented enhancement #13 (Adds support for PUT & DELETE http verbs).
|
||||
- OAuth1: Fixes issue #18 (Complex/Composite url arguments [thanks novemberborn])
|
||||
* 0.8.3
|
||||
- OAuth1: Fixed an issue where the auth header code depended on the Array's toString method (Yohei Sasaki) Updated the getOAuthRequestToken method so we can access google's OAuth secured methods. Also re-implemented and fleshed out the test suite.
|
||||
* 0.8.2
|
||||
- OAuth1: The request returning methods will now write the POST body if provided (Chris Anderson), the code responsible for manipulating the headers is a bit safe now when working with other code (Paul McKellar)
|
||||
- Package: Tweaked the package.json to use index.js instead of main.js
|
||||
* 0.8.1
|
||||
- OAuth1: Added mechanism to get hold of a signed Node Request object, ready for attaching response listeners etc. (Perfect for streaming APIs)
|
||||
* 0.8.0
|
||||
- OAuth1: Standardised method capitalisation, the old getOauthAccessToken is now getOAuthAccessToken (Breaking change to existing code)
|
||||
* 0.7.7
|
||||
- OAuth1: Looks like non oauth_ parameters where appearing within the Authorization headers, which I believe to be incorrect.
|
||||
* 0.7.6
|
||||
- OAuth1: Added in oauth_verifier property to getAccessToken required for 1.0A
|
||||
* 0.7.5
|
||||
- Package: Added in a main.js to simplify the require'ing of OAuth
|
||||
* 0.7.4
|
||||
- OAuth1: Minor change to add an error listener to the OAuth client (thanks troyk)
|
||||
* 0.7.3
|
||||
- OAuth2: Now sends a Content-Length Http header to keep nginx happy :)
|
||||
* 0.7.2
|
||||
- OAuth1: Fixes some broken unit tests!
|
||||
* 0.7.0
|
||||
- OAuth1/2: Introduces support for HTTPS end points and callback URLS for OAuth 1.0A and Oauth 2 (Please be aware that this was a breaking change to the constructor arguments order)
|
||||
|
||||
Contributors (In no particular order)
|
||||
=====================================
|
||||
|
||||
* Evan Prodromou
|
||||
* Jose Ignacio Andres
|
||||
* Ted Goddard
|
||||
* Derek Brooks
|
||||
* Ciaran Jessup - ciaranj@gmail.com
|
||||
* Mark Wubben - http://equalmedia.com/
|
||||
* Ryan LeFevre - http://meltingice.net
|
||||
* Raoul Millais
|
||||
* Patrick Negri - http://github.com/pnegri
|
||||
* Tang Bo Hao - http://github.com/btspoony
|
||||
* Damien Mathieu - http://42.dmathieu.com
|
||||
* Luke Baker - http://github.com/lukebaker
|
||||
* Christian Schwarz - http://github.com/chrischw/
|
||||
* Joe Rozer - http://www.deadbytes.net
|
||||
* Garrick Cheung - http://www.garrickcheung.com/
|
||||
* rolandboon - http://rolandboon.com
|
||||
* Brian Park - http://github.com/yaru22
|
||||
* José F. Romaniello - http://github.com/jfromaniello
|
||||
* bendiy - https://github.com/bendiy
|
||||
* Andrew Martins - http://www.andrewmartens.com
|
||||
* Daniel Mahlow - https://github.com/dmahlow
|
||||
* Pieter Joost van de Sande - https://github.com/pjvds
|
||||
* Jeffrey D. Van Alstine
|
||||
* Michael Garvin
|
||||
* Andreas Knecht
|
||||
* AJ ONeal
|
||||
* Philip Skinner - https://github.com/PhilipSkinner
|
168
express-server/node_modules/oauth/examples/express-gdata/server.js
generated
vendored
Normal file
168
express-server/node_modules/oauth/examples/express-gdata/server.js
generated
vendored
Normal file
@ -0,0 +1,168 @@
|
||||
var express = require('express'),
|
||||
OAuth = require('oauth').OAuth,
|
||||
querystring = require('querystring');
|
||||
|
||||
// Setup the Express.js server
|
||||
var app = express.createServer();
|
||||
app.use(express.logger());
|
||||
app.use(express.bodyParser());
|
||||
app.use(express.cookieParser());
|
||||
app.use(express.session({
|
||||
secret: "skjghskdjfhbqigohqdiouk"
|
||||
}));
|
||||
|
||||
// Home Page
|
||||
app.get('/', function(req, res){
|
||||
if(!req.session.oauth_access_token) {
|
||||
res.redirect("/google_login");
|
||||
}
|
||||
else {
|
||||
res.redirect("/google_contacts");
|
||||
}
|
||||
});
|
||||
|
||||
// Request an OAuth Request Token, and redirects the user to authorize it
|
||||
app.get('/google_login', function(req, res) {
|
||||
|
||||
var getRequestTokenUrl = "https://www.google.com/accounts/OAuthGetRequestToken";
|
||||
|
||||
// GData specifid: scopes that wa want access to
|
||||
var gdataScopes = [
|
||||
querystring.escape("https://www.google.com/m8/feeds/"),
|
||||
querystring.escape("https://www.google.com/calendar/feeds/")
|
||||
];
|
||||
|
||||
var oa = new OAuth(getRequestTokenUrl+"?scope="+gdataScopes.join('+'),
|
||||
"https://www.google.com/accounts/OAuthGetAccessToken",
|
||||
"anonymous",
|
||||
"anonymous",
|
||||
"1.0",
|
||||
"http://localhost:3000/google_cb"+( req.param('action') && req.param('action') != "" ? "?action="+querystring.escape(req.param('action')) : "" ),
|
||||
"HMAC-SHA1");
|
||||
|
||||
oa.getOAuthRequestToken(function(error, oauth_token, oauth_token_secret, results){
|
||||
if(error) {
|
||||
console.log('error');
|
||||
console.log(error);
|
||||
}
|
||||
else {
|
||||
// store the tokens in the session
|
||||
req.session.oa = oa;
|
||||
req.session.oauth_token = oauth_token;
|
||||
req.session.oauth_token_secret = oauth_token_secret;
|
||||
|
||||
// redirect the user to authorize the token
|
||||
res.redirect("https://www.google.com/accounts/OAuthAuthorizeToken?oauth_token="+oauth_token);
|
||||
}
|
||||
})
|
||||
|
||||
});
|
||||
|
||||
// Callback for the authorization page
|
||||
app.get('/google_cb', function(req, res) {
|
||||
|
||||
// get the OAuth access token with the 'oauth_verifier' that we received
|
||||
|
||||
var oa = new OAuth(req.session.oa._requestUrl,
|
||||
req.session.oa._accessUrl,
|
||||
req.session.oa._consumerKey,
|
||||
req.session.oa._consumerSecret,
|
||||
req.session.oa._version,
|
||||
req.session.oa._authorize_callback,
|
||||
req.session.oa._signatureMethod);
|
||||
|
||||
console.log(oa);
|
||||
|
||||
oa.getOAuthAccessToken(
|
||||
req.session.oauth_token,
|
||||
req.session.oauth_token_secret,
|
||||
req.param('oauth_verifier'),
|
||||
function(error, oauth_access_token, oauth_access_token_secret, results2) {
|
||||
|
||||
if(error) {
|
||||
console.log('error');
|
||||
console.log(error);
|
||||
}
|
||||
else {
|
||||
|
||||
// store the access token in the session
|
||||
req.session.oauth_access_token = oauth_access_token;
|
||||
req.session.oauth_access_token_secret = oauth_access_token_secret;
|
||||
|
||||
res.redirect((req.param('action') && req.param('action') != "") ? req.param('action') : "/google_contacts");
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
function require_google_login(req, res, next) {
|
||||
if(!req.session.oauth_access_token) {
|
||||
res.redirect("/google_login?action="+querystring.escape(req.originalUrl));
|
||||
return;
|
||||
}
|
||||
next();
|
||||
};
|
||||
|
||||
app.get('/google_contacts', require_google_login, function(req, res) {
|
||||
var oa = new OAuth(req.session.oa._requestUrl,
|
||||
req.session.oa._accessUrl,
|
||||
req.session.oa._consumerKey,
|
||||
req.session.oa._consumerSecret,
|
||||
req.session.oa._version,
|
||||
req.session.oa._authorize_callback,
|
||||
req.session.oa._signatureMethod);
|
||||
|
||||
console.log(oa);
|
||||
|
||||
// Example using GData API v3
|
||||
// GData Specific Header
|
||||
oa._headers['GData-Version'] = '3.0';
|
||||
|
||||
oa.getProtectedResource(
|
||||
"https://www.google.com/m8/feeds/contacts/default/full?alt=json",
|
||||
"GET",
|
||||
req.session.oauth_access_token,
|
||||
req.session.oauth_access_token_secret,
|
||||
function (error, data, response) {
|
||||
|
||||
var feed = JSON.parse(data);
|
||||
|
||||
res.render('google_contacts.ejs', {
|
||||
locals: { feed: feed }
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
app.get('/google_calendars', require_google_login, function(req, res) {
|
||||
var oa = new OAuth(req.session.oa._requestUrl,
|
||||
req.session.oa._accessUrl,
|
||||
req.session.oa._consumerKey,
|
||||
req.session.oa._consumerSecret,
|
||||
req.session.oa._version,
|
||||
req.session.oa._authorize_callback,
|
||||
req.session.oa._signatureMethod);
|
||||
// Example using GData API v2
|
||||
// GData Specific Header
|
||||
oa._headers['GData-Version'] = '2';
|
||||
|
||||
oa.getProtectedResource(
|
||||
"https://www.google.com/calendar/feeds/default/allcalendars/full?alt=jsonc",
|
||||
"GET",
|
||||
req.session.oauth_access_token,
|
||||
req.session.oauth_access_token_secret,
|
||||
function (error, data, response) {
|
||||
|
||||
var feed = JSON.parse(data);
|
||||
|
||||
res.render('google_calendars.ejs', {
|
||||
locals: { feed: feed }
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
app.listen(3000);
|
||||
console.log("listening on http://localhost:3000");
|
21
express-server/node_modules/oauth/examples/express-gdata/views/google_calendars.ejs
generated
vendored
Normal file
21
express-server/node_modules/oauth/examples/express-gdata/views/google_calendars.ejs
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
|
||||
<p><a href="/google_contacts">Check google_contacts</a></p>
|
||||
|
||||
<h1>Google Calendars</h1>
|
||||
|
||||
<% for(var i = 0 ; i < feed.data.items.length ; i++ ) {
|
||||
|
||||
var calendar = feed.data.items[i]; %>
|
||||
<div>
|
||||
|
||||
<h2 style="color:white;background-color:<%= calendar["color"] %>"><%= calendar["title"] %></h2>
|
||||
|
||||
<p>canEdit: <%= calendar["canEdit"] %></p>
|
||||
<p>accessLevel: <%= calendar["accessLevel"] %></p>
|
||||
<p>timeZone: <%= calendar["timeZone"] %></p>
|
||||
<p>kind: <%= calendar["kind"] %></p>
|
||||
<p>updated: <%= calendar["updated"] %></p>
|
||||
<p>created: <%= calendar["created"] %></p>
|
||||
|
||||
</div>
|
||||
<% } %>
|
24
express-server/node_modules/oauth/examples/express-gdata/views/google_contacts.ejs
generated
vendored
Normal file
24
express-server/node_modules/oauth/examples/express-gdata/views/google_contacts.ejs
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
|
||||
<p><a href="/google_calendars">Check google_calendars</a></p>
|
||||
|
||||
<h1>Google Contacts</h1>
|
||||
|
||||
<% for(var i = 0 ; i < feed.feed.entry.length ; i++ ) {
|
||||
|
||||
var contact = feed.feed.entry[i]; %>
|
||||
|
||||
<div>
|
||||
<!-- you can access much more ! Just a sample: -->
|
||||
<%= contact["title"]["$t"] %>
|
||||
<% emails = contact["gd$email"] %>
|
||||
|
||||
<ul>
|
||||
<% for(var j = 0 ; j < emails.length ; j++) { %>
|
||||
<li><%= emails[j]["address" ]%></li>
|
||||
<% } %>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<% } %>
|
9
express-server/node_modules/oauth/examples/express-gdata/views/layout.ejs
generated
vendored
Normal file
9
express-server/node_modules/oauth/examples/express-gdata/views/layout.ejs
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<%- body %>
|
||||
|
||||
</body>
|
||||
</html>
|
73
express-server/node_modules/oauth/examples/github-example.js
generated
vendored
Normal file
73
express-server/node_modules/oauth/examples/github-example.js
generated
vendored
Normal file
@ -0,0 +1,73 @@
|
||||
var http = require('http');
|
||||
var qs = require('querystring');
|
||||
// var OAuth = require('oauth'), OAuth2 = OAuth.OAuth2;
|
||||
var OAuth2 = require('../lib/oauth2.js').OAuth2;
|
||||
|
||||
var clientID = '';
|
||||
var clientSecret = '';
|
||||
var oauth2 = new OAuth2(clientID,
|
||||
clientSecret,
|
||||
'https://github.com/',
|
||||
'login/oauth/authorize',
|
||||
'login/oauth/access_token',
|
||||
null); /** Custom headers */
|
||||
|
||||
http.createServer(function (req, res) {
|
||||
var p = req.url.split('/');
|
||||
pLen = p.length;
|
||||
|
||||
/**
|
||||
* Authorised url as per github docs:
|
||||
* https://developer.github.com/v3/oauth/#redirect-users-to-request-github-access
|
||||
*
|
||||
* getAuthorizedUrl: https://github.com/ciaranj/node-oauth/blob/master/lib/oauth2.js#L148
|
||||
* Adding params to authorize url with fields as mentioned in github docs
|
||||
*
|
||||
*/
|
||||
var authURL = oauth2.getAuthorizeUrl({
|
||||
redirect_uri: 'http://localhost:8080/code',
|
||||
scope: ['repo', 'user'],
|
||||
state: 'some random string to protect against cross-site request forgery attacks'
|
||||
});
|
||||
|
||||
|
||||
/**
|
||||
* Creating an anchor with authURL as href and sending as response
|
||||
*/
|
||||
var body = '<a href="' + authURL + '"> Get Code </a>';
|
||||
if (pLen === 2 && p[1] === '') {
|
||||
res.writeHead(200, {
|
||||
'Content-Length': body.length,
|
||||
'Content-Type': 'text/html' });
|
||||
res.end(body);
|
||||
} else if (pLen === 2 && p[1].indexOf('code') === 0) {
|
||||
|
||||
/** Github sends auth code so that access_token can be obtained */
|
||||
var qsObj = {};
|
||||
|
||||
/** To obtain and parse code='...' from code?code='...' */
|
||||
qsObj = qs.parse(p[1].split('?')[1]);
|
||||
|
||||
/** Obtaining access_token */
|
||||
oauth2.getOAuthAccessToken(
|
||||
qsObj.code,
|
||||
{'redirect_uri': 'http://localhost:8080/code/'},
|
||||
function (e, access_token, refresh_token, results){
|
||||
if (e) {
|
||||
console.log(e);
|
||||
res.end(e);
|
||||
} else if (results.error) {
|
||||
console.log(results);
|
||||
res.end(JSON.stringify(results));
|
||||
}
|
||||
else {
|
||||
console.log('Obtained access_token: ', access_token);
|
||||
res.end( access_token);
|
||||
}
|
||||
});
|
||||
|
||||
} else {
|
||||
// Unhandled url
|
||||
}
|
||||
|
||||
}).listen(8080);
|
31
express-server/node_modules/oauth/examples/term.ie.oauth-HMAC-SHA1.js
generated
vendored
Normal file
31
express-server/node_modules/oauth/examples/term.ie.oauth-HMAC-SHA1.js
generated
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
var util= require('util')
|
||||
|
||||
var OAuth= require('../lib/oauth').OAuth;
|
||||
|
||||
var oa= new OAuth("http://term.ie/oauth/example/request_token.php",
|
||||
"http://term.ie/oauth/example/access_token.php",
|
||||
"key",
|
||||
"secret",
|
||||
"1.0",
|
||||
null,
|
||||
"HMAC-SHA1")
|
||||
|
||||
oa.getOAuthRequestToken(function(error, oauth_token, oauth_token_secret, results){
|
||||
if(error) util.puts('error :' + error)
|
||||
else {
|
||||
util.puts('oauth_token :' + oauth_token)
|
||||
util.puts('oauth_token_secret :' + oauth_token_secret)
|
||||
util.puts('requestoken results :' + util.inspect(results))
|
||||
util.puts("Requesting access token")
|
||||
oa.getOAuthAccessToken(oauth_token, oauth_token_secret, function(error, oauth_access_token, oauth_access_token_secret, results2) {
|
||||
util.puts('oauth_access_token :' + oauth_access_token)
|
||||
util.puts('oauth_token_secret :' + oauth_access_token_secret)
|
||||
util.puts('accesstoken results :' + util.inspect(results2))
|
||||
util.puts("Requesting access token")
|
||||
var data= "";
|
||||
oa.getProtectedResource("http://term.ie/oauth/example/echo_api.php?foo=bar&too=roo", "GET", oauth_access_token, oauth_access_token_secret, function (error, data, response) {
|
||||
util.puts(data);
|
||||
});
|
||||
});
|
||||
}
|
||||
})
|
75
express-server/node_modules/oauth/examples/twitter-example.js
generated
vendored
Normal file
75
express-server/node_modules/oauth/examples/twitter-example.js
generated
vendored
Normal file
@ -0,0 +1,75 @@
|
||||
var http = require('http');
|
||||
var OAuth = require('../lib/oauth.js').OAuth;
|
||||
var nodeUrl = require('url');
|
||||
var clientID = '';
|
||||
var clientSecret = '';
|
||||
var callbackURL = '';
|
||||
|
||||
oa = new OAuth(
|
||||
'https://api.twitter.com/oauth/request_token',
|
||||
'https://api.twitter.com/oauth/access_token',
|
||||
clientID,
|
||||
clientSecret,
|
||||
'1.0',
|
||||
callbackURL,
|
||||
'HMAC-SHA1'
|
||||
);
|
||||
|
||||
http.createServer(function (request, response) {
|
||||
oa.getOAuthRequestToken(function (error, oAuthToken, oAuthTokenSecret, results) {
|
||||
var urlObj = nodeUrl.parse(request.url, true);
|
||||
var authURL = 'https://twitter.com/' +
|
||||
'oauth/authenticate?oauth_token=' + oAuthToken;
|
||||
var handlers = {
|
||||
'/': function (request, response) {
|
||||
/**
|
||||
* Creating an anchor with authURL as href and sending as response
|
||||
*/
|
||||
var body = '<a href="' + authURL + '"> Get Code </a>';
|
||||
response.writeHead(200, {
|
||||
'Content-Length': body.length,
|
||||
'Content-Type': 'text/html' });
|
||||
response.end(body);
|
||||
},
|
||||
'/callback': function (request, response) {
|
||||
/** Obtaining access_token */
|
||||
var getOAuthRequestTokenCallback = function (error, oAuthAccessToken,
|
||||
oAuthAccessTokenSecret, results) {
|
||||
if (error) {
|
||||
console.log(error);
|
||||
response.end(JSON.stringify({
|
||||
message: 'Error occured while getting access token',
|
||||
error: error
|
||||
}));
|
||||
return;
|
||||
}
|
||||
|
||||
oa.get('https://api.twitter.com/1.1/account/verify_credentials.json',
|
||||
oAuthAccessToken,
|
||||
oAuthAccessTokenSecret,
|
||||
function (error, twitterResponseData, result) {
|
||||
if (error) {
|
||||
console.log(error)
|
||||
res.end(JSON.stringify(error));
|
||||
return;
|
||||
}
|
||||
try {
|
||||
console.log(JSON.parse(twitterResponseData));
|
||||
} catch (parseError) {
|
||||
console.log(parseError);
|
||||
}
|
||||
console.log(twitterResponseData);
|
||||
response.end(twitterResponseData);
|
||||
});
|
||||
};
|
||||
|
||||
oa.getOAuthAccessToken(urlObj.query.oauth_token, oAuthTokenSecret,
|
||||
urlObj.query.oauth_verifier,
|
||||
getOAuthRequestTokenCallback);
|
||||
|
||||
}
|
||||
};
|
||||
handlers[urlObj.pathname](request, response);
|
||||
})
|
||||
|
||||
}).listen(3000);
|
3
express-server/node_modules/oauth/index.js
generated
vendored
Normal file
3
express-server/node_modules/oauth/index.js
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
exports.OAuth = require("./lib/oauth").OAuth;
|
||||
exports.OAuthEcho = require("./lib/oauth").OAuthEcho;
|
||||
exports.OAuth2 = require("./lib/oauth2").OAuth2;
|
4
express-server/node_modules/oauth/lib/_utils.js
generated
vendored
Normal file
4
express-server/node_modules/oauth/lib/_utils.js
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
// Returns true if this is a host that closes *before* it ends?!?!
|
||||
module.exports.isAnEarlyCloseHost= function( hostName ) {
|
||||
return hostName && hostName.match(".*google(apis)?.com$")
|
||||
}
|
581
express-server/node_modules/oauth/lib/oauth.js
generated
vendored
Normal file
581
express-server/node_modules/oauth/lib/oauth.js
generated
vendored
Normal file
@ -0,0 +1,581 @@
|
||||
var crypto= require('crypto'),
|
||||
sha1= require('./sha1'),
|
||||
http= require('http'),
|
||||
https= require('https'),
|
||||
URL= require('url'),
|
||||
querystring= require('querystring'),
|
||||
OAuthUtils= require('./_utils');
|
||||
|
||||
exports.OAuth= function(requestUrl, accessUrl, consumerKey, consumerSecret, version, authorize_callback, signatureMethod, nonceSize, customHeaders) {
|
||||
this._isEcho = false;
|
||||
|
||||
this._requestUrl= requestUrl;
|
||||
this._accessUrl= accessUrl;
|
||||
this._consumerKey= consumerKey;
|
||||
this._consumerSecret= this._encodeData( consumerSecret );
|
||||
if (signatureMethod == "RSA-SHA1") {
|
||||
this._privateKey = consumerSecret;
|
||||
}
|
||||
this._version= version;
|
||||
if( authorize_callback === undefined ) {
|
||||
this._authorize_callback= "oob";
|
||||
}
|
||||
else {
|
||||
this._authorize_callback= authorize_callback;
|
||||
}
|
||||
|
||||
if( signatureMethod != "PLAINTEXT" && signatureMethod != "HMAC-SHA1" && signatureMethod != "RSA-SHA1")
|
||||
throw new Error("Un-supported signature method: " + signatureMethod )
|
||||
this._signatureMethod= signatureMethod;
|
||||
this._nonceSize= nonceSize || 32;
|
||||
this._headers= customHeaders || {"Accept" : "*/*",
|
||||
"Connection" : "close",
|
||||
"User-Agent" : "Node authentication"}
|
||||
this._clientOptions= this._defaultClientOptions= {"requestTokenHttpMethod": "POST",
|
||||
"accessTokenHttpMethod": "POST",
|
||||
"followRedirects": true};
|
||||
this._oauthParameterSeperator = ",";
|
||||
};
|
||||
|
||||
exports.OAuthEcho= function(realm, verify_credentials, consumerKey, consumerSecret, version, signatureMethod, nonceSize, customHeaders) {
|
||||
this._isEcho = true;
|
||||
|
||||
this._realm= realm;
|
||||
this._verifyCredentials = verify_credentials;
|
||||
this._consumerKey= consumerKey;
|
||||
this._consumerSecret= this._encodeData( consumerSecret );
|
||||
if (signatureMethod == "RSA-SHA1") {
|
||||
this._privateKey = consumerSecret;
|
||||
}
|
||||
this._version= version;
|
||||
|
||||
if( signatureMethod != "PLAINTEXT" && signatureMethod != "HMAC-SHA1" && signatureMethod != "RSA-SHA1")
|
||||
throw new Error("Un-supported signature method: " + signatureMethod );
|
||||
this._signatureMethod= signatureMethod;
|
||||
this._nonceSize= nonceSize || 32;
|
||||
this._headers= customHeaders || {"Accept" : "*/*",
|
||||
"Connection" : "close",
|
||||
"User-Agent" : "Node authentication"};
|
||||
this._oauthParameterSeperator = ",";
|
||||
}
|
||||
|
||||
exports.OAuthEcho.prototype = exports.OAuth.prototype;
|
||||
|
||||
exports.OAuth.prototype._getTimestamp= function() {
|
||||
return Math.floor( (new Date()).getTime() / 1000 );
|
||||
}
|
||||
|
||||
exports.OAuth.prototype._encodeData= function(toEncode){
|
||||
if( toEncode == null || toEncode == "" ) return ""
|
||||
else {
|
||||
var result= encodeURIComponent(toEncode);
|
||||
// Fix the mismatch between OAuth's RFC3986's and Javascript's beliefs in what is right and wrong ;)
|
||||
return result.replace(/\!/g, "%21")
|
||||
.replace(/\'/g, "%27")
|
||||
.replace(/\(/g, "%28")
|
||||
.replace(/\)/g, "%29")
|
||||
.replace(/\*/g, "%2A");
|
||||
}
|
||||
}
|
||||
|
||||
exports.OAuth.prototype._decodeData= function(toDecode) {
|
||||
if( toDecode != null ) {
|
||||
toDecode = toDecode.replace(/\+/g, " ");
|
||||
}
|
||||
return decodeURIComponent( toDecode);
|
||||
}
|
||||
|
||||
exports.OAuth.prototype._getSignature= function(method, url, parameters, tokenSecret) {
|
||||
var signatureBase= this._createSignatureBase(method, url, parameters);
|
||||
return this._createSignature( signatureBase, tokenSecret );
|
||||
}
|
||||
|
||||
exports.OAuth.prototype._normalizeUrl= function(url) {
|
||||
var parsedUrl= URL.parse(url, true)
|
||||
var port ="";
|
||||
if( parsedUrl.port ) {
|
||||
if( (parsedUrl.protocol == "http:" && parsedUrl.port != "80" ) ||
|
||||
(parsedUrl.protocol == "https:" && parsedUrl.port != "443") ) {
|
||||
port= ":" + parsedUrl.port;
|
||||
}
|
||||
}
|
||||
|
||||
if( !parsedUrl.pathname || parsedUrl.pathname == "" ) parsedUrl.pathname ="/";
|
||||
|
||||
return parsedUrl.protocol + "//" + parsedUrl.hostname + port + parsedUrl.pathname;
|
||||
}
|
||||
|
||||
// Is the parameter considered an OAuth parameter
|
||||
exports.OAuth.prototype._isParameterNameAnOAuthParameter= function(parameter) {
|
||||
var m = parameter.match('^oauth_');
|
||||
if( m && ( m[0] === "oauth_" ) ) {
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
// build the OAuth request authorization header
|
||||
exports.OAuth.prototype._buildAuthorizationHeaders= function(orderedParameters) {
|
||||
var authHeader="OAuth ";
|
||||
if( this._isEcho ) {
|
||||
authHeader += 'realm="' + this._realm + '",';
|
||||
}
|
||||
|
||||
for( var i= 0 ; i < orderedParameters.length; i++) {
|
||||
// Whilst the all the parameters should be included within the signature, only the oauth_ arguments
|
||||
// should appear within the authorization header.
|
||||
if( this._isParameterNameAnOAuthParameter(orderedParameters[i][0]) ) {
|
||||
authHeader+= "" + this._encodeData(orderedParameters[i][0])+"=\""+ this._encodeData(orderedParameters[i][1])+"\""+ this._oauthParameterSeperator;
|
||||
}
|
||||
}
|
||||
|
||||
authHeader= authHeader.substring(0, authHeader.length-this._oauthParameterSeperator.length);
|
||||
return authHeader;
|
||||
}
|
||||
|
||||
// Takes an object literal that represents the arguments, and returns an array
|
||||
// of argument/value pairs.
|
||||
exports.OAuth.prototype._makeArrayOfArgumentsHash= function(argumentsHash) {
|
||||
var argument_pairs= [];
|
||||
for(var key in argumentsHash ) {
|
||||
if (argumentsHash.hasOwnProperty(key)) {
|
||||
var value= argumentsHash[key];
|
||||
if( Array.isArray(value) ) {
|
||||
for(var i=0;i<value.length;i++) {
|
||||
argument_pairs[argument_pairs.length]= [key, value[i]];
|
||||
}
|
||||
}
|
||||
else {
|
||||
argument_pairs[argument_pairs.length]= [key, value];
|
||||
}
|
||||
}
|
||||
}
|
||||
return argument_pairs;
|
||||
}
|
||||
|
||||
// Sorts the encoded key value pairs by encoded name, then encoded value
|
||||
exports.OAuth.prototype._sortRequestParams= function(argument_pairs) {
|
||||
// Sort by name, then value.
|
||||
argument_pairs.sort(function(a,b) {
|
||||
if ( a[0]== b[0] ) {
|
||||
return a[1] < b[1] ? -1 : 1;
|
||||
}
|
||||
else return a[0] < b[0] ? -1 : 1;
|
||||
});
|
||||
|
||||
return argument_pairs;
|
||||
}
|
||||
|
||||
exports.OAuth.prototype._normaliseRequestParams= function(args) {
|
||||
var argument_pairs= this._makeArrayOfArgumentsHash(args);
|
||||
// First encode them #3.4.1.3.2 .1
|
||||
for(var i=0;i<argument_pairs.length;i++) {
|
||||
argument_pairs[i][0]= this._encodeData( argument_pairs[i][0] );
|
||||
argument_pairs[i][1]= this._encodeData( argument_pairs[i][1] );
|
||||
}
|
||||
|
||||
// Then sort them #3.4.1.3.2 .2
|
||||
argument_pairs= this._sortRequestParams( argument_pairs );
|
||||
|
||||
// Then concatenate together #3.4.1.3.2 .3 & .4
|
||||
var args= "";
|
||||
for(var i=0;i<argument_pairs.length;i++) {
|
||||
args+= argument_pairs[i][0];
|
||||
args+= "="
|
||||
args+= argument_pairs[i][1];
|
||||
if( i < argument_pairs.length-1 ) args+= "&";
|
||||
}
|
||||
return args;
|
||||
}
|
||||
|
||||
exports.OAuth.prototype._createSignatureBase= function(method, url, parameters) {
|
||||
url= this._encodeData( this._normalizeUrl(url) );
|
||||
parameters= this._encodeData( parameters );
|
||||
return method.toUpperCase() + "&" + url + "&" + parameters;
|
||||
}
|
||||
|
||||
exports.OAuth.prototype._createSignature= function(signatureBase, tokenSecret) {
|
||||
if( tokenSecret === undefined ) var tokenSecret= "";
|
||||
else tokenSecret= this._encodeData( tokenSecret );
|
||||
// consumerSecret is already encoded
|
||||
var key= this._consumerSecret + "&" + tokenSecret;
|
||||
|
||||
var hash= ""
|
||||
if( this._signatureMethod == "PLAINTEXT" ) {
|
||||
hash= key;
|
||||
}
|
||||
else if (this._signatureMethod == "RSA-SHA1") {
|
||||
key = this._privateKey || "";
|
||||
hash= crypto.createSign("RSA-SHA1").update(signatureBase).sign(key, 'base64');
|
||||
}
|
||||
else {
|
||||
if( crypto.Hmac ) {
|
||||
hash = crypto.createHmac("sha1", key).update(signatureBase).digest("base64");
|
||||
}
|
||||
else {
|
||||
hash= sha1.HMACSHA1(key, signatureBase);
|
||||
}
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
exports.OAuth.prototype.NONCE_CHARS= ['a','b','c','d','e','f','g','h','i','j','k','l','m','n',
|
||||
'o','p','q','r','s','t','u','v','w','x','y','z','A','B',
|
||||
'C','D','E','F','G','H','I','J','K','L','M','N','O','P',
|
||||
'Q','R','S','T','U','V','W','X','Y','Z','0','1','2','3',
|
||||
'4','5','6','7','8','9'];
|
||||
|
||||
exports.OAuth.prototype._getNonce= function(nonceSize) {
|
||||
var result = [];
|
||||
var chars= this.NONCE_CHARS;
|
||||
var char_pos;
|
||||
var nonce_chars_length= chars.length;
|
||||
|
||||
for (var i = 0; i < nonceSize; i++) {
|
||||
char_pos= Math.floor(Math.random() * nonce_chars_length);
|
||||
result[i]= chars[char_pos];
|
||||
}
|
||||
return result.join('');
|
||||
}
|
||||
|
||||
exports.OAuth.prototype._createClient= function( port, hostname, method, path, headers, sslEnabled ) {
|
||||
var options = {
|
||||
host: hostname,
|
||||
port: port,
|
||||
path: path,
|
||||
method: method,
|
||||
headers: headers
|
||||
};
|
||||
var httpModel;
|
||||
if( sslEnabled ) {
|
||||
httpModel= https;
|
||||
} else {
|
||||
httpModel= http;
|
||||
}
|
||||
return httpModel.request(options);
|
||||
}
|
||||
|
||||
exports.OAuth.prototype._prepareParameters= function( oauth_token, oauth_token_secret, method, url, extra_params ) {
|
||||
var oauthParameters= {
|
||||
"oauth_timestamp": this._getTimestamp(),
|
||||
"oauth_nonce": this._getNonce(this._nonceSize),
|
||||
"oauth_version": this._version,
|
||||
"oauth_signature_method": this._signatureMethod,
|
||||
"oauth_consumer_key": this._consumerKey
|
||||
};
|
||||
|
||||
if( oauth_token ) {
|
||||
oauthParameters["oauth_token"]= oauth_token;
|
||||
}
|
||||
|
||||
var sig;
|
||||
if( this._isEcho ) {
|
||||
sig = this._getSignature( "GET", this._verifyCredentials, this._normaliseRequestParams(oauthParameters), oauth_token_secret);
|
||||
}
|
||||
else {
|
||||
if( extra_params ) {
|
||||
for( var key in extra_params ) {
|
||||
if (extra_params.hasOwnProperty(key)) oauthParameters[key]= extra_params[key];
|
||||
}
|
||||
}
|
||||
var parsedUrl= URL.parse( url, false );
|
||||
|
||||
if( parsedUrl.query ) {
|
||||
var key2;
|
||||
var extraParameters= querystring.parse(parsedUrl.query);
|
||||
for(var key in extraParameters ) {
|
||||
var value= extraParameters[key];
|
||||
if( typeof value == "object" ){
|
||||
// TODO: This probably should be recursive
|
||||
for(key2 in value){
|
||||
oauthParameters[key + "[" + key2 + "]"] = value[key2];
|
||||
}
|
||||
} else {
|
||||
oauthParameters[key]= value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sig = this._getSignature( method, url, this._normaliseRequestParams(oauthParameters), oauth_token_secret);
|
||||
}
|
||||
|
||||
var orderedParameters= this._sortRequestParams( this._makeArrayOfArgumentsHash(oauthParameters) );
|
||||
orderedParameters[orderedParameters.length]= ["oauth_signature", sig];
|
||||
return orderedParameters;
|
||||
}
|
||||
|
||||
exports.OAuth.prototype._performSecureRequest= function( oauth_token, oauth_token_secret, method, url, extra_params, post_body, post_content_type, callback ) {
|
||||
var orderedParameters= this._prepareParameters(oauth_token, oauth_token_secret, method, url, extra_params);
|
||||
|
||||
if( !post_content_type ) {
|
||||
post_content_type= "application/x-www-form-urlencoded";
|
||||
}
|
||||
var parsedUrl= URL.parse( url, false );
|
||||
if( parsedUrl.protocol == "http:" && !parsedUrl.port ) parsedUrl.port= 80;
|
||||
if( parsedUrl.protocol == "https:" && !parsedUrl.port ) parsedUrl.port= 443;
|
||||
|
||||
var headers= {};
|
||||
var authorization = this._buildAuthorizationHeaders(orderedParameters);
|
||||
if ( this._isEcho ) {
|
||||
headers["X-Verify-Credentials-Authorization"]= authorization;
|
||||
}
|
||||
else {
|
||||
headers["Authorization"]= authorization;
|
||||
}
|
||||
|
||||
headers["Host"] = parsedUrl.host
|
||||
|
||||
for( var key in this._headers ) {
|
||||
if (this._headers.hasOwnProperty(key)) {
|
||||
headers[key]= this._headers[key];
|
||||
}
|
||||
}
|
||||
|
||||
// Filter out any passed extra_params that are really to do with OAuth
|
||||
for(var key in extra_params) {
|
||||
if( this._isParameterNameAnOAuthParameter( key ) ) {
|
||||
delete extra_params[key];
|
||||
}
|
||||
}
|
||||
|
||||
if( (method == "POST" || method == "PUT") && ( post_body == null && extra_params != null) ) {
|
||||
// Fix the mismatch between the output of querystring.stringify() and this._encodeData()
|
||||
post_body= querystring.stringify(extra_params)
|
||||
.replace(/\!/g, "%21")
|
||||
.replace(/\'/g, "%27")
|
||||
.replace(/\(/g, "%28")
|
||||
.replace(/\)/g, "%29")
|
||||
.replace(/\*/g, "%2A");
|
||||
}
|
||||
|
||||
if( post_body ) {
|
||||
if ( Buffer.isBuffer(post_body) ) {
|
||||
headers["Content-length"]= post_body.length;
|
||||
} else {
|
||||
headers["Content-length"]= Buffer.byteLength(post_body);
|
||||
}
|
||||
} else {
|
||||
headers["Content-length"]= 0;
|
||||
}
|
||||
|
||||
headers["Content-Type"]= post_content_type;
|
||||
|
||||
var path;
|
||||
if( !parsedUrl.pathname || parsedUrl.pathname == "" ) parsedUrl.pathname ="/";
|
||||
if( parsedUrl.query ) path= parsedUrl.pathname + "?"+ parsedUrl.query ;
|
||||
else path= parsedUrl.pathname;
|
||||
|
||||
var request;
|
||||
if( parsedUrl.protocol == "https:" ) {
|
||||
request= this._createClient(parsedUrl.port, parsedUrl.hostname, method, path, headers, true);
|
||||
}
|
||||
else {
|
||||
request= this._createClient(parsedUrl.port, parsedUrl.hostname, method, path, headers);
|
||||
}
|
||||
|
||||
var clientOptions = this._clientOptions;
|
||||
if( callback ) {
|
||||
var data="";
|
||||
var self= this;
|
||||
|
||||
// Some hosts *cough* google appear to close the connection early / send no content-length header
|
||||
// allow this behaviour.
|
||||
var allowEarlyClose= OAuthUtils.isAnEarlyCloseHost( parsedUrl.hostname );
|
||||
var callbackCalled= false;
|
||||
var passBackControl = function( response ) {
|
||||
if(!callbackCalled) {
|
||||
callbackCalled= true;
|
||||
if ( response.statusCode >= 200 && response.statusCode <= 299 ) {
|
||||
callback(null, data, response);
|
||||
} else {
|
||||
// Follow 301 or 302 redirects with Location HTTP header
|
||||
if((response.statusCode == 301 || response.statusCode == 302) && clientOptions.followRedirects && response.headers && response.headers.location) {
|
||||
self._performSecureRequest( oauth_token, oauth_token_secret, method, response.headers.location, extra_params, post_body, post_content_type, callback);
|
||||
}
|
||||
else {
|
||||
callback({ statusCode: response.statusCode, data: data }, data, response);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
request.on('response', function (response) {
|
||||
response.setEncoding('utf8');
|
||||
response.on('data', function (chunk) {
|
||||
data+=chunk;
|
||||
});
|
||||
response.on('end', function () {
|
||||
passBackControl( response );
|
||||
});
|
||||
response.on('close', function () {
|
||||
if( allowEarlyClose ) {
|
||||
passBackControl( response );
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
request.on("error", function(err) {
|
||||
if(!callbackCalled) {
|
||||
callbackCalled= true;
|
||||
callback( err )
|
||||
}
|
||||
});
|
||||
|
||||
if( (method == "POST" || method =="PUT") && post_body != null && post_body != "" ) {
|
||||
request.write(post_body);
|
||||
}
|
||||
request.end();
|
||||
}
|
||||
else {
|
||||
if( (method == "POST" || method =="PUT") && post_body != null && post_body != "" ) {
|
||||
request.write(post_body);
|
||||
}
|
||||
return request;
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
exports.OAuth.prototype.setClientOptions= function(options) {
|
||||
var key,
|
||||
mergedOptions= {},
|
||||
hasOwnProperty= Object.prototype.hasOwnProperty;
|
||||
|
||||
for( key in this._defaultClientOptions ) {
|
||||
if( !hasOwnProperty.call(options, key) ) {
|
||||
mergedOptions[key]= this._defaultClientOptions[key];
|
||||
} else {
|
||||
mergedOptions[key]= options[key];
|
||||
}
|
||||
}
|
||||
|
||||
this._clientOptions= mergedOptions;
|
||||
};
|
||||
|
||||
exports.OAuth.prototype.getOAuthAccessToken= function(oauth_token, oauth_token_secret, oauth_verifier, callback) {
|
||||
var extraParams= {};
|
||||
if( typeof oauth_verifier == "function" ) {
|
||||
callback= oauth_verifier;
|
||||
} else {
|
||||
extraParams.oauth_verifier= oauth_verifier;
|
||||
}
|
||||
|
||||
this._performSecureRequest( oauth_token, oauth_token_secret, this._clientOptions.accessTokenHttpMethod, this._accessUrl, extraParams, null, null, function(error, data, response) {
|
||||
if( error ) callback(error);
|
||||
else {
|
||||
var results= querystring.parse( data );
|
||||
var oauth_access_token= results["oauth_token"];
|
||||
delete results["oauth_token"];
|
||||
var oauth_access_token_secret= results["oauth_token_secret"];
|
||||
delete results["oauth_token_secret"];
|
||||
callback(null, oauth_access_token, oauth_access_token_secret, results );
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// Deprecated
|
||||
exports.OAuth.prototype.getProtectedResource= function(url, method, oauth_token, oauth_token_secret, callback) {
|
||||
this._performSecureRequest( oauth_token, oauth_token_secret, method, url, null, "", null, callback );
|
||||
}
|
||||
|
||||
exports.OAuth.prototype.delete= function(url, oauth_token, oauth_token_secret, callback) {
|
||||
return this._performSecureRequest( oauth_token, oauth_token_secret, "DELETE", url, null, "", null, callback );
|
||||
}
|
||||
|
||||
exports.OAuth.prototype.get= function(url, oauth_token, oauth_token_secret, callback) {
|
||||
return this._performSecureRequest( oauth_token, oauth_token_secret, "GET", url, null, "", null, callback );
|
||||
}
|
||||
|
||||
exports.OAuth.prototype._putOrPost= function(method, url, oauth_token, oauth_token_secret, post_body, post_content_type, callback) {
|
||||
var extra_params= null;
|
||||
if( typeof post_content_type == "function" ) {
|
||||
callback= post_content_type;
|
||||
post_content_type= null;
|
||||
}
|
||||
if ( typeof post_body != "string" && !Buffer.isBuffer(post_body) ) {
|
||||
post_content_type= "application/x-www-form-urlencoded"
|
||||
extra_params= post_body;
|
||||
post_body= null;
|
||||
}
|
||||
return this._performSecureRequest( oauth_token, oauth_token_secret, method, url, extra_params, post_body, post_content_type, callback );
|
||||
}
|
||||
|
||||
|
||||
exports.OAuth.prototype.put= function(url, oauth_token, oauth_token_secret, post_body, post_content_type, callback) {
|
||||
return this._putOrPost("PUT", url, oauth_token, oauth_token_secret, post_body, post_content_type, callback);
|
||||
}
|
||||
|
||||
exports.OAuth.prototype.post= function(url, oauth_token, oauth_token_secret, post_body, post_content_type, callback) {
|
||||
return this._putOrPost("POST", url, oauth_token, oauth_token_secret, post_body, post_content_type, callback);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a request token from the OAuth provider and passes that information back
|
||||
* to the calling code.
|
||||
*
|
||||
* The callback should expect a function of the following form:
|
||||
*
|
||||
* function(err, token, token_secret, parsedQueryString) {}
|
||||
*
|
||||
* This method has optional parameters so can be called in the following 2 ways:
|
||||
*
|
||||
* 1) Primary use case: Does a basic request with no extra parameters
|
||||
* getOAuthRequestToken( callbackFunction )
|
||||
*
|
||||
* 2) As above but allows for provision of extra parameters to be sent as part of the query to the server.
|
||||
* getOAuthRequestToken( extraParams, callbackFunction )
|
||||
*
|
||||
* N.B. This method will HTTP POST verbs by default, if you wish to override this behaviour you will
|
||||
* need to provide a requestTokenHttpMethod option when creating the client.
|
||||
*
|
||||
**/
|
||||
exports.OAuth.prototype.getOAuthRequestToken= function( extraParams, callback ) {
|
||||
if( typeof extraParams == "function" ){
|
||||
callback = extraParams;
|
||||
extraParams = {};
|
||||
}
|
||||
// Callbacks are 1.0A related
|
||||
if( this._authorize_callback ) {
|
||||
extraParams["oauth_callback"]= this._authorize_callback;
|
||||
}
|
||||
this._performSecureRequest( null, null, this._clientOptions.requestTokenHttpMethod, this._requestUrl, extraParams, null, null, function(error, data, response) {
|
||||
if( error ) callback(error);
|
||||
else {
|
||||
var results= querystring.parse(data);
|
||||
|
||||
var oauth_token= results["oauth_token"];
|
||||
var oauth_token_secret= results["oauth_token_secret"];
|
||||
delete results["oauth_token"];
|
||||
delete results["oauth_token_secret"];
|
||||
callback(null, oauth_token, oauth_token_secret, results );
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
exports.OAuth.prototype.signUrl= function(url, oauth_token, oauth_token_secret, method) {
|
||||
|
||||
if( method === undefined ) {
|
||||
var method= "GET";
|
||||
}
|
||||
|
||||
var orderedParameters= this._prepareParameters(oauth_token, oauth_token_secret, method, url, {});
|
||||
var parsedUrl= URL.parse( url, false );
|
||||
|
||||
var query="";
|
||||
for( var i= 0 ; i < orderedParameters.length; i++) {
|
||||
query+= orderedParameters[i][0]+"="+ this._encodeData(orderedParameters[i][1]) + "&";
|
||||
}
|
||||
query= query.substring(0, query.length-1);
|
||||
|
||||
return parsedUrl.protocol + "//"+ parsedUrl.host + parsedUrl.pathname + "?" + query;
|
||||
};
|
||||
|
||||
exports.OAuth.prototype.authHeader= function(url, oauth_token, oauth_token_secret, method) {
|
||||
if( method === undefined ) {
|
||||
var method= "GET";
|
||||
}
|
||||
|
||||
var orderedParameters= this._prepareParameters(oauth_token, oauth_token_secret, method, url, {});
|
||||
return this._buildAuthorizationHeaders(orderedParameters);
|
||||
};
|
228
express-server/node_modules/oauth/lib/oauth2.js
generated
vendored
Normal file
228
express-server/node_modules/oauth/lib/oauth2.js
generated
vendored
Normal file
@ -0,0 +1,228 @@
|
||||
var querystring= require('querystring'),
|
||||
crypto= require('crypto'),
|
||||
https= require('https'),
|
||||
http= require('http'),
|
||||
URL= require('url'),
|
||||
OAuthUtils= require('./_utils');
|
||||
|
||||
exports.OAuth2= function(clientId, clientSecret, baseSite, authorizePath, accessTokenPath, customHeaders) {
|
||||
this._clientId= clientId;
|
||||
this._clientSecret= clientSecret;
|
||||
this._baseSite= baseSite;
|
||||
this._authorizeUrl= authorizePath || "/oauth/authorize";
|
||||
this._accessTokenUrl= accessTokenPath || "/oauth/access_token";
|
||||
this._accessTokenName= "access_token";
|
||||
this._authMethod= "Bearer";
|
||||
this._customHeaders = customHeaders || {};
|
||||
this._useAuthorizationHeaderForGET= false;
|
||||
|
||||
//our agent
|
||||
this._agent = undefined;
|
||||
};
|
||||
|
||||
// Allows you to set an agent to use instead of the default HTTP or
|
||||
// HTTPS agents. Useful when dealing with your own certificates.
|
||||
exports.OAuth2.prototype.setAgent = function(agent) {
|
||||
this._agent = agent;
|
||||
};
|
||||
|
||||
// This 'hack' method is required for sites that don't use
|
||||
// 'access_token' as the name of the access token (for requests).
|
||||
// ( http://tools.ietf.org/html/draft-ietf-oauth-v2-16#section-7 )
|
||||
// it isn't clear what the correct value should be atm, so allowing
|
||||
// for specific (temporary?) override for now.
|
||||
exports.OAuth2.prototype.setAccessTokenName= function ( name ) {
|
||||
this._accessTokenName= name;
|
||||
}
|
||||
|
||||
// Sets the authorization method for Authorization header.
|
||||
// e.g. Authorization: Bearer <token> # "Bearer" is the authorization method.
|
||||
exports.OAuth2.prototype.setAuthMethod = function ( authMethod ) {
|
||||
this._authMethod = authMethod;
|
||||
};
|
||||
|
||||
|
||||
// If you use the OAuth2 exposed 'get' method (and don't construct your own _request call )
|
||||
// this will specify whether to use an 'Authorize' header instead of passing the access_token as a query parameter
|
||||
exports.OAuth2.prototype.useAuthorizationHeaderforGET = function(useIt) {
|
||||
this._useAuthorizationHeaderForGET= useIt;
|
||||
}
|
||||
|
||||
exports.OAuth2.prototype._getAccessTokenUrl= function() {
|
||||
return this._baseSite + this._accessTokenUrl; /* + "?" + querystring.stringify(params); */
|
||||
}
|
||||
|
||||
// Build the authorization header. In particular, build the part after the colon.
|
||||
// e.g. Authorization: Bearer <token> # Build "Bearer <token>"
|
||||
exports.OAuth2.prototype.buildAuthHeader= function(token) {
|
||||
return this._authMethod + ' ' + token;
|
||||
};
|
||||
|
||||
exports.OAuth2.prototype._chooseHttpLibrary= function( parsedUrl ) {
|
||||
var http_library= https;
|
||||
// As this is OAUth2, we *assume* https unless told explicitly otherwise.
|
||||
if( parsedUrl.protocol != "https:" ) {
|
||||
http_library= http;
|
||||
}
|
||||
return http_library;
|
||||
};
|
||||
|
||||
exports.OAuth2.prototype._request= function(method, url, headers, post_body, access_token, callback) {
|
||||
|
||||
var parsedUrl= URL.parse( url, true );
|
||||
if( parsedUrl.protocol == "https:" && !parsedUrl.port ) {
|
||||
parsedUrl.port= 443;
|
||||
}
|
||||
|
||||
var http_library= this._chooseHttpLibrary( parsedUrl );
|
||||
|
||||
|
||||
var realHeaders= {};
|
||||
for( var key in this._customHeaders ) {
|
||||
realHeaders[key]= this._customHeaders[key];
|
||||
}
|
||||
if( headers ) {
|
||||
for(var key in headers) {
|
||||
realHeaders[key] = headers[key];
|
||||
}
|
||||
}
|
||||
realHeaders['Host']= parsedUrl.host;
|
||||
|
||||
if (!realHeaders['User-Agent']) {
|
||||
realHeaders['User-Agent'] = 'Node-oauth';
|
||||
}
|
||||
|
||||
if( post_body ) {
|
||||
if ( Buffer.isBuffer(post_body) ) {
|
||||
realHeaders["Content-Length"]= post_body.length;
|
||||
} else {
|
||||
realHeaders["Content-Length"]= Buffer.byteLength(post_body);
|
||||
}
|
||||
} else {
|
||||
realHeaders["Content-length"]= 0;
|
||||
}
|
||||
|
||||
if( access_token && !('Authorization' in realHeaders)) {
|
||||
if( ! parsedUrl.query ) parsedUrl.query= {};
|
||||
parsedUrl.query[this._accessTokenName]= access_token;
|
||||
}
|
||||
|
||||
var queryStr= querystring.stringify(parsedUrl.query);
|
||||
if( queryStr ) queryStr= "?" + queryStr;
|
||||
var options = {
|
||||
host:parsedUrl.hostname,
|
||||
port: parsedUrl.port,
|
||||
path: parsedUrl.pathname + queryStr,
|
||||
method: method,
|
||||
headers: realHeaders
|
||||
};
|
||||
|
||||
this._executeRequest( http_library, options, post_body, callback );
|
||||
}
|
||||
|
||||
exports.OAuth2.prototype._executeRequest= function( http_library, options, post_body, callback ) {
|
||||
// Some hosts *cough* google appear to close the connection early / send no content-length header
|
||||
// allow this behaviour.
|
||||
var allowEarlyClose= OAuthUtils.isAnEarlyCloseHost(options.host);
|
||||
var callbackCalled= false;
|
||||
function passBackControl( response, result ) {
|
||||
if(!callbackCalled) {
|
||||
callbackCalled=true;
|
||||
if( !(response.statusCode >= 200 && response.statusCode <= 299) && (response.statusCode != 301) && (response.statusCode != 302) ) {
|
||||
callback({ statusCode: response.statusCode, data: result });
|
||||
} else {
|
||||
callback(null, result, response);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var result= "";
|
||||
|
||||
//set the agent on the request options
|
||||
if (this._agent) {
|
||||
options.agent = this._agent;
|
||||
}
|
||||
|
||||
var request = http_library.request(options);
|
||||
request.on('response', function (response) {
|
||||
response.on("data", function (chunk) {
|
||||
result+= chunk
|
||||
});
|
||||
response.on("close", function (err) {
|
||||
if( allowEarlyClose ) {
|
||||
passBackControl( response, result );
|
||||
}
|
||||
});
|
||||
response.addListener("end", function () {
|
||||
passBackControl( response, result );
|
||||
});
|
||||
});
|
||||
request.on('error', function(e) {
|
||||
callbackCalled= true;
|
||||
callback(e);
|
||||
});
|
||||
|
||||
if( (options.method == 'POST' || options.method == 'PUT') && post_body ) {
|
||||
request.write(post_body);
|
||||
}
|
||||
request.end();
|
||||
}
|
||||
|
||||
exports.OAuth2.prototype.getAuthorizeUrl= function( params ) {
|
||||
var params= params || {};
|
||||
params['client_id'] = this._clientId;
|
||||
return this._baseSite + this._authorizeUrl + "?" + querystring.stringify(params);
|
||||
}
|
||||
|
||||
exports.OAuth2.prototype.getOAuthAccessToken= function(code, params, callback) {
|
||||
var params= params || {};
|
||||
params['client_id'] = this._clientId;
|
||||
params['client_secret'] = this._clientSecret;
|
||||
var codeParam = (params.grant_type === 'refresh_token') ? 'refresh_token' : 'code';
|
||||
params[codeParam]= code;
|
||||
|
||||
var post_data= querystring.stringify( params );
|
||||
var post_headers= {
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
};
|
||||
|
||||
|
||||
this._request("POST", this._getAccessTokenUrl(), post_headers, post_data, null, function(error, data, response) {
|
||||
if( error ) callback(error);
|
||||
else {
|
||||
var results;
|
||||
try {
|
||||
// As of http://tools.ietf.org/html/draft-ietf-oauth-v2-07
|
||||
// responses should be in JSON
|
||||
results= JSON.parse( data );
|
||||
}
|
||||
catch(e) {
|
||||
// .... However both Facebook + Github currently use rev05 of the spec
|
||||
// and neither seem to specify a content-type correctly in their response headers :(
|
||||
// clients of these services will suffer a *minor* performance cost of the exception
|
||||
// being thrown
|
||||
results= querystring.parse( data );
|
||||
}
|
||||
var access_token= results["access_token"];
|
||||
var refresh_token= results["refresh_token"];
|
||||
delete results["refresh_token"];
|
||||
callback(null, access_token, refresh_token, results); // callback results =-=
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Deprecated
|
||||
exports.OAuth2.prototype.getProtectedResource= function(url, access_token, callback) {
|
||||
this._request("GET", url, {}, "", access_token, callback );
|
||||
}
|
||||
|
||||
exports.OAuth2.prototype.get= function(url, access_token, callback) {
|
||||
if( this._useAuthorizationHeaderForGET ) {
|
||||
var headers= {'Authorization': this.buildAuthHeader(access_token) }
|
||||
access_token= null;
|
||||
}
|
||||
else {
|
||||
headers= {};
|
||||
}
|
||||
this._request("GET", url, headers, "", access_token, callback );
|
||||
}
|
334
express-server/node_modules/oauth/lib/sha1.js
generated
vendored
Normal file
334
express-server/node_modules/oauth/lib/sha1.js
generated
vendored
Normal file
@ -0,0 +1,334 @@
|
||||
/*
|
||||
* A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined
|
||||
* in FIPS 180-1
|
||||
* Version 2.2 Copyright Paul Johnston 2000 - 2009.
|
||||
* Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
|
||||
* Distributed under the BSD License
|
||||
* See http://pajhome.org.uk/crypt/md5 for details.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Configurable variables. You may need to tweak these to be compatible with
|
||||
* the server-side, but the defaults work in most cases.
|
||||
*/
|
||||
var hexcase = 1; /* hex output format. 0 - lowercase; 1 - uppercase */
|
||||
var b64pad = "="; /* base-64 pad character. "=" for strict RFC compliance */
|
||||
|
||||
/*
|
||||
* These are the functions you'll usually want to call
|
||||
* They take string arguments and return either hex or base-64 encoded strings
|
||||
*/
|
||||
function hex_sha1(s) { return rstr2hex(rstr_sha1(str2rstr_utf8(s))); }
|
||||
function b64_sha1(s) { return rstr2b64(rstr_sha1(str2rstr_utf8(s))); }
|
||||
function any_sha1(s, e) { return rstr2any(rstr_sha1(str2rstr_utf8(s)), e); }
|
||||
function hex_hmac_sha1(k, d)
|
||||
{ return rstr2hex(rstr_hmac_sha1(str2rstr_utf8(k), str2rstr_utf8(d))); }
|
||||
function b64_hmac_sha1(k, d)
|
||||
{ return rstr2b64(rstr_hmac_sha1(str2rstr_utf8(k), str2rstr_utf8(d))); }
|
||||
function any_hmac_sha1(k, d, e)
|
||||
{ return rstr2any(rstr_hmac_sha1(str2rstr_utf8(k), str2rstr_utf8(d)), e); }
|
||||
|
||||
/*
|
||||
* Perform a simple self-test to see if the VM is working
|
||||
*/
|
||||
function sha1_vm_test()
|
||||
{
|
||||
return hex_sha1("abc").toLowerCase() == "a9993e364706816aba3e25717850c26c9cd0d89d";
|
||||
}
|
||||
|
||||
/*
|
||||
* Calculate the SHA1 of a raw string
|
||||
*/
|
||||
function rstr_sha1(s)
|
||||
{
|
||||
return binb2rstr(binb_sha1(rstr2binb(s), s.length * 8));
|
||||
}
|
||||
|
||||
/*
|
||||
* Calculate the HMAC-SHA1 of a key and some data (raw strings)
|
||||
*/
|
||||
function rstr_hmac_sha1(key, data)
|
||||
{
|
||||
var bkey = rstr2binb(key);
|
||||
if(bkey.length > 16) bkey = binb_sha1(bkey, key.length * 8);
|
||||
|
||||
var ipad = Array(16), opad = Array(16);
|
||||
for(var i = 0; i < 16; i++)
|
||||
{
|
||||
ipad[i] = bkey[i] ^ 0x36363636;
|
||||
opad[i] = bkey[i] ^ 0x5C5C5C5C;
|
||||
}
|
||||
|
||||
var hash = binb_sha1(ipad.concat(rstr2binb(data)), 512 + data.length * 8);
|
||||
return binb2rstr(binb_sha1(opad.concat(hash), 512 + 160));
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert a raw string to a hex string
|
||||
*/
|
||||
function rstr2hex(input)
|
||||
{
|
||||
try { hexcase } catch(e) { hexcase=0; }
|
||||
var hex_tab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef";
|
||||
var output = "";
|
||||
var x;
|
||||
for(var i = 0; i < input.length; i++)
|
||||
{
|
||||
x = input.charCodeAt(i);
|
||||
output += hex_tab.charAt((x >>> 4) & 0x0F)
|
||||
+ hex_tab.charAt( x & 0x0F);
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert a raw string to a base-64 string
|
||||
*/
|
||||
function rstr2b64(input)
|
||||
{
|
||||
try { b64pad } catch(e) { b64pad=''; }
|
||||
var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
||||
var output = "";
|
||||
var len = input.length;
|
||||
for(var i = 0; i < len; i += 3)
|
||||
{
|
||||
var triplet = (input.charCodeAt(i) << 16)
|
||||
| (i + 1 < len ? input.charCodeAt(i+1) << 8 : 0)
|
||||
| (i + 2 < len ? input.charCodeAt(i+2) : 0);
|
||||
for(var j = 0; j < 4; j++)
|
||||
{
|
||||
if(i * 8 + j * 6 > input.length * 8) output += b64pad;
|
||||
else output += tab.charAt((triplet >>> 6*(3-j)) & 0x3F);
|
||||
}
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert a raw string to an arbitrary string encoding
|
||||
*/
|
||||
function rstr2any(input, encoding)
|
||||
{
|
||||
var divisor = encoding.length;
|
||||
var remainders = Array();
|
||||
var i, q, x, quotient;
|
||||
|
||||
/* Convert to an array of 16-bit big-endian values, forming the dividend */
|
||||
var dividend = Array(Math.ceil(input.length / 2));
|
||||
for(i = 0; i < dividend.length; i++)
|
||||
{
|
||||
dividend[i] = (input.charCodeAt(i * 2) << 8) | input.charCodeAt(i * 2 + 1);
|
||||
}
|
||||
|
||||
/*
|
||||
* Repeatedly perform a long division. The binary array forms the dividend,
|
||||
* the length of the encoding is the divisor. Once computed, the quotient
|
||||
* forms the dividend for the next step. We stop when the dividend is zero.
|
||||
* All remainders are stored for later use.
|
||||
*/
|
||||
while(dividend.length > 0)
|
||||
{
|
||||
quotient = Array();
|
||||
x = 0;
|
||||
for(i = 0; i < dividend.length; i++)
|
||||
{
|
||||
x = (x << 16) + dividend[i];
|
||||
q = Math.floor(x / divisor);
|
||||
x -= q * divisor;
|
||||
if(quotient.length > 0 || q > 0)
|
||||
quotient[quotient.length] = q;
|
||||
}
|
||||
remainders[remainders.length] = x;
|
||||
dividend = quotient;
|
||||
}
|
||||
|
||||
/* Convert the remainders to the output string */
|
||||
var output = "";
|
||||
for(i = remainders.length - 1; i >= 0; i--)
|
||||
output += encoding.charAt(remainders[i]);
|
||||
|
||||
/* Append leading zero equivalents */
|
||||
var full_length = Math.ceil(input.length * 8 /
|
||||
(Math.log(encoding.length) / Math.log(2)))
|
||||
for(i = output.length; i < full_length; i++)
|
||||
output = encoding[0] + output;
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
/*
|
||||
* Encode a string as utf-8.
|
||||
* For efficiency, this assumes the input is valid utf-16.
|
||||
*/
|
||||
function str2rstr_utf8(input)
|
||||
{
|
||||
var output = "";
|
||||
var i = -1;
|
||||
var x, y;
|
||||
|
||||
while(++i < input.length)
|
||||
{
|
||||
/* Decode utf-16 surrogate pairs */
|
||||
x = input.charCodeAt(i);
|
||||
y = i + 1 < input.length ? input.charCodeAt(i + 1) : 0;
|
||||
if(0xD800 <= x && x <= 0xDBFF && 0xDC00 <= y && y <= 0xDFFF)
|
||||
{
|
||||
x = 0x10000 + ((x & 0x03FF) << 10) + (y & 0x03FF);
|
||||
i++;
|
||||
}
|
||||
|
||||
/* Encode output as utf-8 */
|
||||
if(x <= 0x7F)
|
||||
output += String.fromCharCode(x);
|
||||
else if(x <= 0x7FF)
|
||||
output += String.fromCharCode(0xC0 | ((x >>> 6 ) & 0x1F),
|
||||
0x80 | ( x & 0x3F));
|
||||
else if(x <= 0xFFFF)
|
||||
output += String.fromCharCode(0xE0 | ((x >>> 12) & 0x0F),
|
||||
0x80 | ((x >>> 6 ) & 0x3F),
|
||||
0x80 | ( x & 0x3F));
|
||||
else if(x <= 0x1FFFFF)
|
||||
output += String.fromCharCode(0xF0 | ((x >>> 18) & 0x07),
|
||||
0x80 | ((x >>> 12) & 0x3F),
|
||||
0x80 | ((x >>> 6 ) & 0x3F),
|
||||
0x80 | ( x & 0x3F));
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
/*
|
||||
* Encode a string as utf-16
|
||||
*/
|
||||
function str2rstr_utf16le(input)
|
||||
{
|
||||
var output = "";
|
||||
for(var i = 0; i < input.length; i++)
|
||||
output += String.fromCharCode( input.charCodeAt(i) & 0xFF,
|
||||
(input.charCodeAt(i) >>> 8) & 0xFF);
|
||||
return output;
|
||||
}
|
||||
|
||||
function str2rstr_utf16be(input)
|
||||
{
|
||||
var output = "";
|
||||
for(var i = 0; i < input.length; i++)
|
||||
output += String.fromCharCode((input.charCodeAt(i) >>> 8) & 0xFF,
|
||||
input.charCodeAt(i) & 0xFF);
|
||||
return output;
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert a raw string to an array of big-endian words
|
||||
* Characters >255 have their high-byte silently ignored.
|
||||
*/
|
||||
function rstr2binb(input)
|
||||
{
|
||||
var output = Array(input.length >> 2);
|
||||
for(var i = 0; i < output.length; i++)
|
||||
output[i] = 0;
|
||||
for(var i = 0; i < input.length * 8; i += 8)
|
||||
output[i>>5] |= (input.charCodeAt(i / 8) & 0xFF) << (24 - i % 32);
|
||||
return output;
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert an array of big-endian words to a string
|
||||
*/
|
||||
function binb2rstr(input)
|
||||
{
|
||||
var output = "";
|
||||
for(var i = 0; i < input.length * 32; i += 8)
|
||||
output += String.fromCharCode((input[i>>5] >>> (24 - i % 32)) & 0xFF);
|
||||
return output;
|
||||
}
|
||||
|
||||
/*
|
||||
* Calculate the SHA-1 of an array of big-endian words, and a bit length
|
||||
*/
|
||||
function binb_sha1(x, len)
|
||||
{
|
||||
/* append padding */
|
||||
x[len >> 5] |= 0x80 << (24 - len % 32);
|
||||
x[((len + 64 >> 9) << 4) + 15] = len;
|
||||
|
||||
var w = Array(80);
|
||||
var a = 1732584193;
|
||||
var b = -271733879;
|
||||
var c = -1732584194;
|
||||
var d = 271733878;
|
||||
var e = -1009589776;
|
||||
|
||||
for(var i = 0; i < x.length; i += 16)
|
||||
{
|
||||
var olda = a;
|
||||
var oldb = b;
|
||||
var oldc = c;
|
||||
var oldd = d;
|
||||
var olde = e;
|
||||
|
||||
for(var j = 0; j < 80; j++)
|
||||
{
|
||||
if(j < 16) w[j] = x[i + j];
|
||||
else w[j] = bit_rol(w[j-3] ^ w[j-8] ^ w[j-14] ^ w[j-16], 1);
|
||||
var t = safe_add(safe_add(bit_rol(a, 5), sha1_ft(j, b, c, d)),
|
||||
safe_add(safe_add(e, w[j]), sha1_kt(j)));
|
||||
e = d;
|
||||
d = c;
|
||||
c = bit_rol(b, 30);
|
||||
b = a;
|
||||
a = t;
|
||||
}
|
||||
|
||||
a = safe_add(a, olda);
|
||||
b = safe_add(b, oldb);
|
||||
c = safe_add(c, oldc);
|
||||
d = safe_add(d, oldd);
|
||||
e = safe_add(e, olde);
|
||||
}
|
||||
return Array(a, b, c, d, e);
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* Perform the appropriate triplet combination function for the current
|
||||
* iteration
|
||||
*/
|
||||
function sha1_ft(t, b, c, d)
|
||||
{
|
||||
if(t < 20) return (b & c) | ((~b) & d);
|
||||
if(t < 40) return b ^ c ^ d;
|
||||
if(t < 60) return (b & c) | (b & d) | (c & d);
|
||||
return b ^ c ^ d;
|
||||
}
|
||||
|
||||
/*
|
||||
* Determine the appropriate additive constant for the current iteration
|
||||
*/
|
||||
function sha1_kt(t)
|
||||
{
|
||||
return (t < 20) ? 1518500249 : (t < 40) ? 1859775393 :
|
||||
(t < 60) ? -1894007588 : -899497514;
|
||||
}
|
||||
|
||||
/*
|
||||
* Add integers, wrapping at 2^32. This uses 16-bit operations internally
|
||||
* to work around bugs in some JS interpreters.
|
||||
*/
|
||||
function safe_add(x, y)
|
||||
{
|
||||
var lsw = (x & 0xFFFF) + (y & 0xFFFF);
|
||||
var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
|
||||
return (msw << 16) | (lsw & 0xFFFF);
|
||||
}
|
||||
|
||||
/*
|
||||
* Bitwise rotate a 32-bit number to the left.
|
||||
*/
|
||||
function bit_rol(num, cnt)
|
||||
{
|
||||
return (num << cnt) | (num >>> (32 - cnt));
|
||||
}
|
||||
|
||||
exports.HMACSHA1= function(key, data) {
|
||||
return b64_hmac_sha1(key, data);
|
||||
}
|
54
express-server/node_modules/oauth/package.json
generated
vendored
Normal file
54
express-server/node_modules/oauth/package.json
generated
vendored
Normal file
@ -0,0 +1,54 @@
|
||||
{
|
||||
"_from": "oauth@0.9.x",
|
||||
"_id": "oauth@0.9.15",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-vR/vr2hslrdUda7VGWQS/2DPucE=",
|
||||
"_location": "/oauth",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "oauth@0.9.x",
|
||||
"name": "oauth",
|
||||
"escapedName": "oauth",
|
||||
"rawSpec": "0.9.x",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.9.x"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/passport-oauth1",
|
||||
"/passport-oauth2"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/oauth/-/oauth-0.9.15.tgz",
|
||||
"_shasum": "bd1fefaf686c96b75475aed5196412ff60cfb9c1",
|
||||
"_spec": "oauth@0.9.x",
|
||||
"_where": "C:\\Users\\Georg\\GitHub\\SmartShopper\\express-server\\node_modules\\passport-oauth1",
|
||||
"author": {
|
||||
"name": "Ciaran Jessup",
|
||||
"email": "ciaranj@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ciaranj/node-oauth/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "Library for interacting with OAuth 1.0, 1.0A, 2 and Echo. Provides simplified client access and allows for construction of more complex apis and OAuth providers.",
|
||||
"devDependencies": {
|
||||
"vows": "0.5.x"
|
||||
},
|
||||
"directories": {
|
||||
"lib": "./lib"
|
||||
},
|
||||
"homepage": "https://github.com/ciaranj/node-oauth#readme",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "oauth",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/ciaranj/node-oauth.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "make test"
|
||||
},
|
||||
"version": "0.9.15"
|
||||
}
|
304
express-server/node_modules/oauth/tests/oauth2tests.js
generated
vendored
Normal file
304
express-server/node_modules/oauth/tests/oauth2tests.js
generated
vendored
Normal file
@ -0,0 +1,304 @@
|
||||
var vows = require('vows'),
|
||||
assert = require('assert'),
|
||||
DummyResponse= require('./shared').DummyResponse,
|
||||
DummyRequest= require('./shared').DummyRequest,
|
||||
https = require('https'),
|
||||
OAuth2= require('../lib/oauth2').OAuth2,
|
||||
url = require('url');
|
||||
|
||||
vows.describe('OAuth2').addBatch({
|
||||
'Given an OAuth2 instance with clientId and clientSecret, ': {
|
||||
topic: new OAuth2("clientId", "clientSecret"),
|
||||
'When dealing with the response from the OP': {
|
||||
'we should treat a 201 response as a success': function(oa) {
|
||||
var callbackCalled= false;
|
||||
var http_library= {
|
||||
request: function() {
|
||||
return new DummyRequest(new DummyResponse(201));
|
||||
}
|
||||
};
|
||||
oa._executeRequest( http_library, {}, null, function(err, result, response) {
|
||||
callbackCalled= true;
|
||||
assert.equal(err, null);
|
||||
});
|
||||
assert.ok(callbackCalled);
|
||||
},
|
||||
'we should treat a 200 response as a success': function(oa) {
|
||||
var callbackCalled= false;
|
||||
var http_library= {
|
||||
request: function() {
|
||||
return new DummyRequest(new DummyResponse(200));
|
||||
}
|
||||
};
|
||||
oa._executeRequest( http_library, {}, null, function(err, result, response) {
|
||||
callbackCalled= true;
|
||||
assert.equal(err, null);
|
||||
});
|
||||
assert.ok(callbackCalled);
|
||||
}
|
||||
},
|
||||
'When handling the access token response': {
|
||||
'we should correctly extract the token if received as form-data': function (oa) {
|
||||
oa._request= function( method, url, fo, bar, bleh, callback) {
|
||||
callback(null, "access_token=access&refresh_token=refresh");
|
||||
};
|
||||
oa.getOAuthAccessToken("", {}, function(error, access_token, refresh_token) {
|
||||
assert.equal( access_token, "access");
|
||||
assert.equal( refresh_token, "refresh");
|
||||
});
|
||||
},
|
||||
'we should not include access token in both querystring and headers (favours headers if specified)': function (oa) {
|
||||
oa._request = new OAuth2("clientId", "clientSecret")._request.bind(oa);
|
||||
oa._executeRequest= function( http_library, options, post_body, callback) {
|
||||
callback(null, url.parse(options.path, true).query, options.headers);
|
||||
};
|
||||
|
||||
oa._request("GET", "http://foo/", {"Authorization":"Bearer BadNews"}, null, "accessx", function(error, query, headers) {
|
||||
assert.ok( !('access_token' in query), "access_token also in query");
|
||||
assert.ok( 'Authorization' in headers, "Authorization not in headers");
|
||||
});
|
||||
},
|
||||
'we should include access token in the querystring if no Authorization header present to override it': function (oa) {
|
||||
oa._request = new OAuth2("clientId", "clientSecret")._request.bind(oa);
|
||||
oa._executeRequest= function( http_library, options, post_body, callback) {
|
||||
callback(null, url.parse(options.path, true).query, options.headers);
|
||||
};
|
||||
oa._request("GET", "http://foo/", {}, null, "access", function(error, query, headers) {
|
||||
assert.ok( 'access_token' in query, "access_token not present in query");
|
||||
assert.ok( !('Authorization' in headers), "Authorization in headers");
|
||||
});
|
||||
},
|
||||
'we should correctly extract the token if received as a JSON literal': function (oa) {
|
||||
oa._request= function(method, url, headers, post_body, access_token, callback) {
|
||||
callback(null, '{"access_token":"access","refresh_token":"refresh"}');
|
||||
};
|
||||
oa.getOAuthAccessToken("", {}, function(error, access_token, refresh_token) {
|
||||
assert.equal( access_token, "access");
|
||||
assert.equal( refresh_token, "refresh");
|
||||
});
|
||||
},
|
||||
'we should return the received data to the calling method': function (oa) {
|
||||
oa._request= function(method, url, headers, post_body, access_token, callback) {
|
||||
callback(null, '{"access_token":"access","refresh_token":"refresh","extra_1":1, "extra_2":"foo"}');
|
||||
};
|
||||
oa.getOAuthAccessToken("", {}, function(error, access_token, refresh_token, results) {
|
||||
assert.equal( access_token, "access");
|
||||
assert.equal( refresh_token, "refresh");
|
||||
assert.isNotNull( results );
|
||||
assert.equal( results.extra_1, 1);
|
||||
assert.equal( results.extra_2, "foo");
|
||||
});
|
||||
}
|
||||
},
|
||||
'When no grant_type parameter is specified': {
|
||||
'we should pass the value of the code argument as the code parameter': function(oa) {
|
||||
oa._request= function(method, url, headers, post_body, access_token, callback) {
|
||||
assert.isTrue( post_body.indexOf("code=xsds23") != -1 );
|
||||
};
|
||||
oa.getOAuthAccessToken("xsds23", {} );
|
||||
}
|
||||
},
|
||||
'When an invalid grant_type parameter is specified': {
|
||||
'we should pass the value of the code argument as the code parameter': function(oa) {
|
||||
oa._request= function(method, url, headers, post_body, access_token, callback) {
|
||||
assert.isTrue( post_body.indexOf("code=xsds23") != -1 );
|
||||
};
|
||||
oa.getOAuthAccessToken("xsds23", {grant_type:"refresh_toucan"} );
|
||||
}
|
||||
},
|
||||
'When a grant_type parameter of value "refresh_token" is specified': {
|
||||
'we should pass the value of the code argument as the refresh_token parameter, should pass a grant_type parameter, but shouldn\'t pass a code parameter' : function(oa) {
|
||||
oa._request= function(method, url, headers, post_body, access_token, callback) {
|
||||
assert.isTrue( post_body.indexOf("refresh_token=sdsds2") != -1 );
|
||||
assert.isTrue( post_body.indexOf("grant_type=refresh_token") != -1 );
|
||||
assert.isTrue( post_body.indexOf("code=") == -1 );
|
||||
};
|
||||
oa.getOAuthAccessToken("sdsds2", {grant_type:"refresh_token"} );
|
||||
}
|
||||
},
|
||||
'When we use the authorization header': {
|
||||
'and call get with the default authorization method': {
|
||||
'we should pass the authorization header with Bearer method and value of the access_token, _request should be passed a null access_token' : function(oa) {
|
||||
oa._request= function(method, url, headers, post_body, access_token, callback) {
|
||||
assert.equal(headers["Authorization"], "Bearer abcd5");
|
||||
assert.isNull( access_token );
|
||||
};
|
||||
oa.useAuthorizationHeaderforGET(true);
|
||||
oa.get("", "abcd5");
|
||||
}
|
||||
},
|
||||
'and call get with the authorization method set to Basic': {
|
||||
'we should pass the authorization header with Basic method and value of the access_token, _request should be passed a null access_token' : function(oa) {
|
||||
oa._request= function(method, url, headers, post_body, access_token, callback) {
|
||||
assert.equal(headers["Authorization"], "Basic cdg2");
|
||||
assert.isNull( access_token );
|
||||
};
|
||||
oa.useAuthorizationHeaderforGET(true);
|
||||
oa.setAuthMethod("Basic");
|
||||
oa.get("", "cdg2");
|
||||
}
|
||||
}
|
||||
},
|
||||
'When we do not use the authorization header': {
|
||||
'and call get': {
|
||||
'we should pass NOT provide an authorization header and the access_token should be being passed to _request' : function(oa) {
|
||||
oa._request= function(method, url, headers, post_body, access_token, callback) {
|
||||
assert.isUndefined(headers["Authorization"]);
|
||||
assert.equal( access_token, "abcd5" );
|
||||
};
|
||||
oa.useAuthorizationHeaderforGET(false);
|
||||
oa.get("", "abcd5");
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
'Given an OAuth2 instance with clientId, clientSecret and customHeaders': {
|
||||
topic: new OAuth2("clientId", "clientSecret", undefined, undefined, undefined,
|
||||
{ 'SomeHeader': '123' }),
|
||||
'When GETing': {
|
||||
'we should see the custom headers mixed into headers property in options passed to http-library' : function(oa) {
|
||||
oa._executeRequest= function( http_library, options, callback ) {
|
||||
assert.equal(options.headers["SomeHeader"], "123");
|
||||
};
|
||||
oa.get("", {});
|
||||
},
|
||||
}
|
||||
},
|
||||
'Given an OAuth2 instance with a clientId and clientSecret': {
|
||||
topic: new OAuth2("clientId", "clientSecret"),
|
||||
'When POSTing': {
|
||||
'we should see a given string being sent to the request' : function(oa) {
|
||||
var bodyWritten= false;
|
||||
oa._chooseHttpLibrary= function() {
|
||||
return {
|
||||
request: function(options) {
|
||||
assert.equal(options.headers["Content-Type"], "text/plain");
|
||||
assert.equal(options.headers["Content-Length"], 26);
|
||||
assert.equal(options.method, "POST");
|
||||
return {
|
||||
end: function() {},
|
||||
on: function() {},
|
||||
write: function(body) {
|
||||
bodyWritten= true;
|
||||
assert.isNotNull(body);
|
||||
assert.equal(body, "THIS_IS_A_POST_BODY_STRING")
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
oa._request("POST", "", {"Content-Type":"text/plain"}, "THIS_IS_A_POST_BODY_STRING");
|
||||
assert.ok( bodyWritten );
|
||||
},
|
||||
'we should see a given buffer being sent to the request' : function(oa) {
|
||||
var bodyWritten= false;
|
||||
oa._chooseHttpLibrary= function() {
|
||||
return {
|
||||
request: function(options) {
|
||||
assert.equal(options.headers["Content-Type"], "application/octet-stream");
|
||||
assert.equal(options.headers["Content-Length"], 4);
|
||||
assert.equal(options.method, "POST");
|
||||
return {
|
||||
end: function() {},
|
||||
on: function() {},
|
||||
write: function(body) {
|
||||
bodyWritten= true;
|
||||
assert.isNotNull(body);
|
||||
assert.equal(4, body.length)
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
oa._request("POST", "", {"Content-Type":"application/octet-stream"}, new Buffer([1,2,3,4]));
|
||||
assert.ok( bodyWritten );
|
||||
}
|
||||
},
|
||||
'When PUTing': {
|
||||
'we should see a given string being sent to the request' : function(oa) {
|
||||
var bodyWritten= false;
|
||||
oa._chooseHttpLibrary= function() {
|
||||
return {
|
||||
request: function(options) {
|
||||
assert.equal(options.headers["Content-Type"], "text/plain");
|
||||
assert.equal(options.headers["Content-Length"], 25);
|
||||
assert.equal(options.method, "PUT");
|
||||
return {
|
||||
end: function() {},
|
||||
on: function() {},
|
||||
write: function(body) {
|
||||
bodyWritten= true;
|
||||
assert.isNotNull(body);
|
||||
assert.equal(body, "THIS_IS_A_PUT_BODY_STRING")
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
oa._request("PUT", "", {"Content-Type":"text/plain"}, "THIS_IS_A_PUT_BODY_STRING");
|
||||
assert.ok( bodyWritten );
|
||||
},
|
||||
'we should see a given buffer being sent to the request' : function(oa) {
|
||||
var bodyWritten= false;
|
||||
oa._chooseHttpLibrary= function() {
|
||||
return {
|
||||
request: function(options) {
|
||||
assert.equal(options.headers["Content-Type"], "application/octet-stream");
|
||||
assert.equal(options.headers["Content-Length"], 4);
|
||||
assert.equal(options.method, "PUT");
|
||||
return {
|
||||
end: function() {},
|
||||
on: function() {},
|
||||
write: function(body) {
|
||||
bodyWritten= true;
|
||||
assert.isNotNull(body);
|
||||
assert.equal(4, body.length)
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
oa._request("PUT", "", {"Content-Type":"application/octet-stream"}, new Buffer([1,2,3,4]));
|
||||
assert.ok( bodyWritten );
|
||||
}
|
||||
}
|
||||
},
|
||||
'When the user passes in the User-Agent in customHeaders': {
|
||||
topic: new OAuth2("clientId", "clientSecret", undefined, undefined, undefined,
|
||||
{ 'User-Agent': '123Agent' }),
|
||||
'When calling get': {
|
||||
'we should see the User-Agent mixed into headers property in options passed to http-library' : function(oa) {
|
||||
oa._executeRequest= function( http_library, options, callback ) {
|
||||
assert.equal(options.headers["User-Agent"], "123Agent");
|
||||
};
|
||||
oa.get("", {});
|
||||
}
|
||||
}
|
||||
},
|
||||
'When the user does not pass in a User-Agent in customHeaders': {
|
||||
topic: new OAuth2("clientId", "clientSecret", undefined, undefined, undefined,
|
||||
undefined),
|
||||
'When calling get': {
|
||||
'we should see the default User-Agent mixed into headers property in options passed to http-library' : function(oa) {
|
||||
oa._executeRequest= function( http_library, options, callback ) {
|
||||
assert.equal(options.headers["User-Agent"], "Node-oauth");
|
||||
};
|
||||
oa.get("", {});
|
||||
}
|
||||
}
|
||||
},
|
||||
'When specifying an agent, that agent is passed to the HTTP request method' : {
|
||||
topic : new OAuth2('clientId', 'clientSecret', undefined, undefined, undefined, undefined),
|
||||
'When calling _executeRequest': {
|
||||
'we whould see the agent being put into the options' : function(oa) {
|
||||
oa.setAgent('awesome agent');
|
||||
oa._executeRequest({
|
||||
request : function(options, cb) {
|
||||
assert.equal(options.agent, 'awesome agent');
|
||||
return new DummyRequest(new DummyResponse(200));
|
||||
}
|
||||
}, {}, null, function() {});
|
||||
}
|
||||
}
|
||||
}
|
||||
}).export(module);
|
1064
express-server/node_modules/oauth/tests/oauthtests.js
generated
vendored
Normal file
1064
express-server/node_modules/oauth/tests/oauthtests.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
13
express-server/node_modules/oauth/tests/sha1tests.js
generated
vendored
Normal file
13
express-server/node_modules/oauth/tests/sha1tests.js
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
var vows = require('vows'),
|
||||
assert = require('assert');
|
||||
|
||||
vows.describe('SHA1 Hashing').addBatch({
|
||||
'When using the SHA1 Hashing function': {
|
||||
topic: require('../lib/sha1'),
|
||||
'we get the specified digest as described in http://oauth.net/core/1.0/#sig_base_example (A.5.2)': function (sha1) {
|
||||
assert.equal (sha1.HMACSHA1( "kd94hf93k423kf44&pfkkdhi9sl3r4s00",
|
||||
"GET&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacation.jpg%26oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3Dkllo9940pd9333jh%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1191242096%26oauth_token%3Dnnch734d00sl2jdk%26oauth_version%3D1.0%26size%3Doriginal"),
|
||||
"tR3+Ty81lMeYAr/Fid0kMTYa/WM=");
|
||||
}
|
||||
}
|
||||
}).export(module);
|
26
express-server/node_modules/oauth/tests/shared.js
generated
vendored
Normal file
26
express-server/node_modules/oauth/tests/shared.js
generated
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
var events = require('events');
|
||||
|
||||
exports.DummyResponse = function( statusCode ) {
|
||||
this.statusCode= statusCode;
|
||||
this.headers= {};
|
||||
}
|
||||
exports.DummyResponse.prototype= events.EventEmitter.prototype;
|
||||
exports.DummyResponse.prototype.setEncoding= function() {}
|
||||
|
||||
exports.DummyRequest =function( response ) {
|
||||
this.response= response;
|
||||
this.responseSent= false;
|
||||
}
|
||||
exports.DummyRequest.prototype= events.EventEmitter.prototype;
|
||||
exports.DummyRequest.prototype.write= function(post_body){}
|
||||
exports.DummyRequest.prototype.write= function(post_body){
|
||||
this.responseSent= true;
|
||||
this.emit('response',this.response);
|
||||
}
|
||||
exports.DummyRequest.prototype.end= function(){
|
||||
if(!this.responseSent) {
|
||||
this.responseSent= true;
|
||||
this.emit('response',this.response);
|
||||
}
|
||||
this.response.emit('end');
|
||||
}
|
Reference in New Issue
Block a user