This repository has been archived by the owner on Jul 10, 2019. It is now read-only.
forked from andris9/xoauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
195 lines (167 loc) · 6.33 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
var Stream = require("stream").Stream,
utillib = require("util"),
querystring = require("querystring"),
http = require("http"),
https = require("https"),
urllib = require("url");
/**
* Wrapper for new XOAuth2Generator.
*
* Usage:
*
* var xoauthgen = createXOAuth2Generator({});
* xoauthgen.getToken(function(err, xoauthtoken){
* socket.send("AUTH XOAUTH2 " + xoauthtoken);
* });
*
* @param {Object} options See XOAuth2Generator for details
* @return {Object}
*/
module.exports.createXOAuth2Generator = function(options){
return new XOAuth2Generator(options);
};
/**
* XOAUTH2 access_token generator for Gmail.
* Create client ID for web applications in Google API console to use it.
* See Offline Access for receiving the needed refreshToken for an user
* https://developers.google.com/accounts/docs/OAuth2WebServer#offline
*
* @constructor
* @param {Object} options Client information for token generation
* @param {String} options.user (Required) User e-mail address
* @param {String} options.clientId (Required) Client ID value
* @param {String} options.clientSecret (Required) Client secret value
* @param {String} options.refreshToken (Required) Refresh token for an user
* @param {String} options.accessUrl (Optional) Endpoint for token generation, defaults to "https://accounts.google.com/o/oauth2/token"
* @param {String} options.accessToken (Optional) An existing valid accessToken
* @param {int} options.timeout (Optional) A timestamp in milliseconds after 1.1.1970 when the given accessToken expires
*/
function XOAuth2Generator(options){
Stream.call(this);
this.options = options || {};
this.options.accessUrl = this.options.accessUrl || "https://accounts.google.com/o/oauth2/token";
this.token = this.options.accessToken && this.buildXOAuth2Token(this.options.accessToken) || false;
this.accessToken = this.token && this.options.accessToken || false;
this.timeout = this.options.timeout && Date.now() + ((Number(this.options.timeout) || 0) - 1) * 1000 || 0;
}
utillib.inherits(XOAuth2Generator, Stream);
/**
* Returns or generates (if previous has expired) a XOAuth2 token
*
* @param {Function} callback Callback function with error object and token string
*/
XOAuth2Generator.prototype.getToken = function(callback){
if(this.token && (!this.timeout || this.timeout > Date.now())){
return callback(null, this.token, this.accessToken);
}
this.generateToken(callback);
};
/**
* Updates token values
*
* @param {String} accessToken New access token
* @param {Number} timeout Access token lifetime in seconds
*
* Emits 'token': { user: User email-address, accessToken: the new accessToken, timeout: Timestamp in seconds after 1.1.1970 }
*/
XOAuth2Generator.prototype.updateToken = function(accessToken, timeout){
this.token = this.buildXOAuth2Token(accessToken);
this.accessToken = accessToken;
this.timeout = timeout && Date.now() + ((Number(timeout) || 0) - 1) * 1000 || 0;
this.emit("token", {
user: this.options.user,
accessToken: accessToken || "",
timeout: Math.floor(this.timeout/1000)
});
};
/**
* Generates a new XOAuth2 token with the credentials provided at initialization
*
* @param {Function} callback Callback function with error object and token string
*/
XOAuth2Generator.prototype.generateToken = function(callback){
var urlOptions = {
client_id: this.options.clientId || "",
client_secret: this.options.clientSecret || "",
refresh_token: this.options.refreshToken,
grant_type: "refresh_token"
},
payload = querystring.stringify(urlOptions);
postRequest(this.options.accessUrl, payload, (function(error, response, body){
var data;
if(error){
return callback(error);
}
try{
data = JSON.parse(body.toString());
}catch(E){
return callback(E);
}
if(!data || typeof data != "object"){
return callback(new Error("Invalid authentication response"));
}
if(data.error){
return callback(new Error(data.error));
}
if(data.access_token){
this.updateToken(data.access_token, data.expires_in);
return callback(null, this.token, this.accessToken);
}
return callback(new Error("No access token"));
}).bind(this));
};
/**
* Converts an access_token and user id into a base64 encoded XOAuth2 token
*
* @param {String} accessToken Access token string
* @return {String} Base64 encoded token for IMAP or SMTP login
*/
XOAuth2Generator.prototype.buildXOAuth2Token = function(accessToken){
var authData = [
"user=" + (this.options.user || ""),
"auth=Bearer " + accessToken,
"",
""];
return new Buffer(authData.join("\x01"), "utf-8").toString("base64");
};
function postRequest(url, payload, callback){
var options = urllib.parse(url),
finished = false,
response = null;
options.method = "POST";
/**
* Cleanup all the event listeners registered on the request, and ensure that *callback* is only called one time
*
* @note passes all the arguments passed to this function to *callback*
*/
var cleanupAndCallback = function(){
if(finished === true){return;}
finished = true;
req.removeAllListeners();
if(response !== null){
response.removeAllListeners();
}
callback.apply(null, arguments);
};
var req = (options.protocol=="https:"?https:http).request(options, function(res) {
response = res;
var data = [];
res.on('data', function (chunk) {
data.push(chunk);
});
res.on("end", function(){
return cleanupAndCallback(null, res, Buffer.concat(data));
});
res.on("error", function(err) {
return cleanupAndCallback(err);
});
});
req.on("error", function(err) {
return cleanupAndCallback(err);
});
if(payload){
req.setHeader("Content-Type", "application/x-www-form-urlencoded");
req.setHeader("Content-Length", typeof payload == "string" ? Buffer.byteLength(payload) : payload.length);
}
req.end(payload);
}