-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.js
128 lines (115 loc) · 3.66 KB
/
app.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
'use strict';
// Dependencies
const request = require('request');
const OAuth = require('oauth-1.0a');
const crypto = require('crypto');
module.exports = NetSuiteOAuth;
/**
* Constructor
*
* @param url
* @param method
* @param consumerKey
* @param consumerSecret
* @param tokenId
* @param tokenSecret
* @param account
* @param signatureMethod
* @returns {PromiseLike<ArrayBuffer>}
* @constructor
*/
function NetSuiteOAuth(url, method, consumerKey, consumerSecret, tokenId, tokenSecret, account, signatureMethod = 'HMAC-SHA256') {
if (!['HMAC-SHA256', 'HMAC-SHA1'].includes(signatureMethod))
throw `Invalid signature method: ${signatureMethod}. Use HMAC-SHA1 or HMAC-SHA256`
this.oauth = OAuth({
consumer: {
key: consumerKey,
secret: consumerSecret
},
realm: account,
signature_method: signatureMethod,
hash_function(base_string, key) {
return crypto.createHmac(signatureMethod.toLowerCase().replace('hmac-', ''), key).update(base_string).digest('base64');
}
});
this.request_data = {
url: url,
method: method
};
this.token = {
key: tokenId,
secret: tokenSecret
};
this.headers = this.oauth.toHeader(this.oauth.authorize(this.request_data, this.token));
this.headers['Content-Type'] = 'application/json';
}
NetSuiteOAuth.prototype.get = function() {
return new Promise((resolve, reject) => {
request({
url: this.request_data.url,
method: this.request_data.method,
headers: this.headers
}, function(error, response, body) {
if (error || response.statusCode.toString()[0] != 2) {
console.log('Body data:', body);
reject(body || error);
}
else {
if (typeof body == 'string') body = JSON.parse(body);
resolve(body || error);
}
});
});
};
NetSuiteOAuth.prototype.post = function(data) {
return new Promise((resolve, reject) => {
request({
url: this.request_data.url,
method: this.request_data.method,
json: data,
headers: this.headers
}, function(error, response, body) {
if (error || response.statusCode.toString()[0] != 2) {
console.log('Body data:', body);
reject(body || error);
}
else {
if (typeof body == 'string') {
try {
body = JSON.parse(body);
} catch (error){
console.log('unable to parse response body');
reject(error);
}
}
resolve(body || error);
}
});
});
};
NetSuiteOAuth.prototype.put = function(data) {
return new Promise((resolve, reject) => {
request({
url: this.request_data.url,
method: this.request_data.method,
json: data,
headers: this.headers
}, function(error, response, body) {
if (error || response.statusCode.toString()[0] != 2) {
console.log('Body data:', body);
reject(body || error);
}
else {
if (typeof body == 'string') {
try {
body = JSON.parse(body);
} catch (error){
console.log('unable to parse response body');
reject(error);
}
}
resolve(body || error);
}
});
});
};