UNPKG

passport-oauth-no-web-server

Version:

OAuth 1.0 and 2.0 authentication strategies for Passport.

47 lines (44 loc) 1.09 kB
/** * Reconstructs the original URL of the request. * * This function builds a URL that corresponds the original URL requested by the * client, including the protocol (http or https) and host. * * If the request passed through any proxies that terminate SSL, the * `X-Forwarded-Proto` header is used to detect if the request was encrypted to * the proxy. * * @return {String} * @api private */ exports.originalURL = function(req) { var headers = req.headers , protocol = (req.connection.encrypted || req.headers['x-forwarded-proto'] == 'https') ? 'https' : 'http' , host = headers.host , path = req.url || ''; return protocol + '://' + host + path; }; /** * Merge object b with object a. * * var a = { foo: 'bar' } * , b = { bar: 'baz' }; * * utils.merge(a, b); * // => { foo: 'bar', bar: 'baz' } * * @param {Object} a * @param {Object} b * @return {Object} * @api private */ exports.merge = function(a, b){ if (a && b) { for (var key in b) { a[key] = b[key]; } } return a; };