forked from bnjjj/node-request-digest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
request-digest.es5.js
executable file
·246 lines (197 loc) · 8.12 KB
/
request-digest.es5.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
'use strict';
Object.defineProperty(exports, '__esModule', {
value: true
});
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
var _request = require('request');
var _request2 = _interopRequireDefault(_request);
var _crypto = require('crypto');
var _lodash = require('lodash');
var _lodash2 = _interopRequireDefault(_lodash);
var _bluebird = require('bluebird');
var _bluebird2 = _interopRequireDefault(_bluebird);
var HTTPDigest = (function () {
function HTTPDigest(username, password) {
_classCallCheck(this, HTTPDigest);
this.nc = 0;
this.username = username;
this.password = password;
}
_createClass(HTTPDigest, [{
key: 'requestAsync',
value: function requestAsync(options) {
var _this = this;
return new _bluebird2['default'](function (resolve, reject) {
_this.request(options, function (error, response, body) {
if (error) {
return reject(error);
}
return resolve({ response: response, body: body });
});
});
}
}, {
key: 'request',
value: function request(options, callback) {
var _this2 = this;
var port = options.port ? options.port : 80;
options.url = options.host + ':' + port + options.path;
return (0, _request2['default'])(options, function (error, res) {
return _this2._handleResponse(options, res, callback);
});
}
}, {
key: '_handleResponse',
value: function _handleResponse(options, res, callback) {
if (!res) {
return callback(new Error('Bad request, answer is empty'));
}
if (res.statusCode === 200) {
return callback(null, res, res.body);
}
if (typeof res.caseless.dict['www-authenticate'] !== 'string' || res.caseless.dict['www-authenticate'] === '') {
return callback(new Error('Bad request, www-authenticate field is malformed'));
}
var challenge = this._parseDigestResponse(res.caseless.dict['www-authenticate']);
var ha1 = (0, _crypto.createHash)('md5');
ha1.update([this.username, challenge.realm, this.password].join(':'));
var ha2 = (0, _crypto.createHash)('md5');
ha2.update([options.method, options.path].join(':'));
var _generateCNONCE2 = this._generateCNONCE(challenge.qop);
var nc = _generateCNONCE2.nc;
var cnonce = _generateCNONCE2.cnonce;
// Generate response hash
var response = (0, _crypto.createHash)('md5');
var responseParams = [ha1.digest('hex'), challenge.nonce];
if (cnonce) {
responseParams.push(nc);
responseParams.push(cnonce);
}
responseParams.push(challenge.qop);
responseParams.push(ha2.digest('hex'));
response.update(responseParams.join(':'));
// Setup response parameters
var authParams = {
username: this.username,
realm: challenge.realm,
nonce: challenge.nonce,
uri: options.path,
qop: challenge.qop,
opaque: challenge.opaque,
response: response.digest('hex')
};
authParams = this._omitNull(authParams);
if (cnonce) {
authParams.nc = nc;
authParams.cnonce = cnonce;
}
var headers = options.headers || {};
headers.Authorization = this._compileParams(authParams);
options.headers = headers;
return (0, _request2['default'])(options, function (error, response, body) {
if (response.statusCode >= 400) {
var errorMessage = {
statusCode: response.statusCode,
response: response,
body: body
};
return callback(errorMessage);
}
callback(error, response, body);
});
}
}, {
key: '_omitNull',
value: function _omitNull(data) {
// _.omit(data, (elt) => {
// console.log('elt ' + elt + ' et condition : ' + elt === null);
// return elt == null;
// });
var newObject = {};
_lodash2['default'].forEach(data, function (elt, key) {
if (elt != null) {
newObject[key] = elt;
}
});
return newObject;
}
}, {
key: '_parseDigestResponse',
value: function _parseDigestResponse(digestHeader) {
var prefix = 'Digest ';
var challenge = digestHeader.substr(digestHeader.indexOf(prefix) + prefix.length);
var parts = challenge.split(',');
var length = parts.length;
var params = {};
for (var i = 0; i < length; i++) {
var paramSplitted = this._splitParams(parts[i]);
if (paramSplitted.length > 2) {
params[paramSplitted[1]] = paramSplitted[2].replace(/\"/g, '');
}
}
return params;
}
}, {
key: '_splitParams',
value: function _splitParams(paramString) {
return paramString.match(/^\s*?([a-zA-Z0-0]+)=("(.*)"|MD5|MD5-sess|token|TRUE|FALSE)\s*?$/);
}
//
// ## Parse challenge digest
//
}, {
key: '_generateCNONCE',
value: function _generateCNONCE(qop) {
var cnonce = false;
var nc = false;
if (typeof qop === 'string') {
var cnonceHash = (0, _crypto.createHash)('md5');
cnonceHash.update(Math.random().toString(36));
cnonce = cnonceHash.digest('hex').substr(0, 8);
nc = this._updateNC();
}
return { cnonce: cnonce, nc: nc };
}
//
// ## Compose authorization header
//
}, {
key: '_compileParams',
value: function _compileParams(params) {
var parts = [];
for (var i in params) {
var param = i + '=' + (this._putDoubleQuotes(i) ? '"' : '') + params[i] + (this._putDoubleQuotes(i) ? '"' : '');
parts.push(param);
}
return 'Digest ' + parts.join(',');
}
//
// ## Define if we have to put double quotes or not
//
}, {
key: '_putDoubleQuotes',
value: function _putDoubleQuotes(i) {
var excludeList = ['qop', 'nc'];
return !_lodash2['default'].includes(excludeList, i);
}
//
// ## Update and zero pad nc
//
}, {
key: '_updateNC',
value: function _updateNC() {
var max = 99999999;
var padding = new Array(8).join('0') + '';
this.nc = this.nc > max ? 1 : this.nc + 1;
var nc = this.nc + '';
return padding.substr(0, 8 - nc.length) + nc;
}
}]);
return HTTPDigest;
})();
exports['default'] = function (username, password) {
return new HTTPDigest(username, password);
};
module.exports = exports['default'];