-
Notifications
You must be signed in to change notification settings - Fork 360
/
Copy pathindex.js
298 lines (280 loc) · 10.1 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
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
const {
sanitize,
sanitizeOptions,
getUrlStringfromUrlObject,
getNtlmAuthInfo,
addFormParam,
form,
shouldAddHttpMethod
} = require('./util'),
_ = require('./lodash');
var self;
self = module.exports = {
convert: function (request, options, callback) {
if (!_.isFunction(callback)) {
throw new Error('Curl-Converter: callback is not valid function');
}
options = sanitizeOptions(options, self.getOptions());
var indent, trim, headersData, body, redirect, timeout, multiLine,
format, snippet, silent, url, quoteType, ntlmAuth;
redirect = options.followRedirect;
timeout = options.requestTimeoutInSeconds;
multiLine = options.multiLine;
format = options.longFormat;
trim = options.trimRequestBody;
silent = options.silent;
quoteType = options.quoteType === 'single' ? '\'' : '"';
url = getUrlStringfromUrlObject(request.url, quoteType);
ntlmAuth = getNtlmAuthInfo(request.auth, quoteType, format);
snippet = 'curl';
if (ntlmAuth) {
snippet += ntlmAuth;
}
if (silent) {
snippet += ` ${form('-s', format)}`;
}
if (redirect) {
snippet += ` ${form('-L', format)}`;
}
if (timeout > 0) {
snippet += ` ${form('-m', format)} ${timeout}`;
}
if ((url.match(/[{[}\]]/g) || []).length > 0) {
snippet += ` ${form('-g', format)}`;
}
if (multiLine) {
indent = options.indentType === 'Tab' ? '\t' : ' ';
indent = ' ' + options.lineContinuationCharacter + '\n' + indent.repeat(options.indentCount); // eslint-disable-line max-len
}
else {
indent = ' ';
}
if (request.method === 'HEAD') {
snippet += ` ${form('-I', format)}`;
}
if (shouldAddHttpMethod(request, options)) {
snippet += ` ${form('-X', format)} ${request.method}`;
}
snippet += ` ${quoteType + url + quoteType}`;
if (request.body && !request.headers.has('Content-Type')) {
if (request.body.mode === 'file') {
request.addHeader({
key: 'Content-Type',
value: 'text/plain'
});
}
else if (request.body.mode === 'graphql') {
request.addHeader({
key: 'Content-Type',
value: 'application/json'
});
}
}
headersData = request.toJSON().header;
if (headersData) {
headersData = _.reject(headersData, 'disabled');
_.forEach(headersData, (header) => {
if (!header.key) {
return;
}
snippet += indent + `${form('-H', format)} ${quoteType}${sanitize(header.key, true, quoteType)}`;
// If the header value is an empty string then add a semicolon after key
// otherwise the header would be ignored by curl
if (header.value) {
snippet += `: ${sanitize(header.value, false, quoteType)}${quoteType}`;
}
else {
snippet += ';' + quoteType;
}
});
}
// The following code handles multiple files in the same formdata param.
// It removes the form data params where the src property is an array of filepath strings
// Splits that array into different form data params with src set as a single filepath string
if (request.body && request.body.mode === 'formdata') {
let formdata = request.body.formdata,
formdataArray = [];
formdata.members.forEach((param) => {
let key = param.key,
type = param.type,
disabled = param.disabled,
contentType = param.contentType;
if (type === 'file') {
if (typeof param.src !== 'string') {
if (Array.isArray(param.src) && param.src.length) {
param.src.forEach((filePath) => {
addFormParam(formdataArray, key, param.type, filePath, disabled, contentType);
});
}
else {
addFormParam(formdataArray, key, param.type, '/path/to/file', disabled, contentType);
}
}
else {
addFormParam(formdataArray, key, param.type, param.src, disabled, contentType);
}
}
else {
addFormParam(formdataArray, key, param.type, param.value, disabled, contentType);
}
});
request.body.update({
mode: 'formdata',
formdata: formdataArray
});
}
if (request.body) {
body = request.body.toJSON();
if (!_.isEmpty(body)) {
switch (body.mode) {
case 'urlencoded':
_.forEach(body.urlencoded, function (data) {
if (!data.disabled) {
snippet += indent + (format ? '--data-urlencode' : '-d');
snippet += ` ${quoteType}${sanitize(data.key, trim, quoteType, false, true)}=` +
`${sanitize(data.value, trim, quoteType, false, !format)}${quoteType}`;
}
});
break;
case 'raw': {
let rawBody = body.raw.toString(),
isAsperandPresent = _.includes(rawBody, '@'),
// Use the long option if `@` is present in the request body otherwise follow user setting
optionName = isAsperandPresent ? '--data-raw' : form('-d', format),
sanitizedBody = sanitize(rawBody, trim, quoteType);
if (!multiLine) {
try {
sanitizedBody = JSON.stringify(JSON.parse(sanitizedBody));
}
catch (e) {
// Do nothing
}
}
snippet += indent + `${optionName} ${quoteType}${sanitizedBody}${quoteType}`;
break;
}
case 'graphql': {
// eslint-disable-next-line no-case-declarations
let query = body.graphql ? body.graphql.query : '',
graphqlVariables, requestBody, isAsperandPresent, optionName;
try {
graphqlVariables = JSON.parse(body.graphql.variables);
}
catch (e) {
graphqlVariables = {};
}
requestBody = JSON.stringify({
query: query,
variables: graphqlVariables
});
isAsperandPresent = _.includes(requestBody, '@');
// Use the long option if `@` is present in the request body otherwise follow user setting
optionName = isAsperandPresent ? '--data-raw' : form('-d', format);
snippet += indent + `${optionName} ${quoteType}${sanitize(requestBody, trim, quoteType)}${quoteType}`;
break;
}
case 'formdata':
_.forEach(body.formdata, function (data) {
if (!(data.disabled)) {
if (data.type === 'file') {
snippet += indent + `${form('-F', format)}`;
snippet += ` ${quoteType}${sanitize(data.key, trim, quoteType)}=` +
`${sanitize(`@"${sanitize(data.src, trim, '"', true)}"`, trim, quoteType, quoteType === '"')}`;
snippet += quoteType;
}
else {
snippet += indent + `${form('-F', format)}`;
snippet += ` ${quoteType}${sanitize(data.key, trim, quoteType)}=` +
sanitize(`"${sanitize(data.value, trim, '"', true)}"`, trim, quoteType, quoteType === '"');
if (data.contentType) {
snippet += `;type=${data.contentType}`;
}
snippet += quoteType;
}
}
});
break;
case 'file':
snippet += indent + (format ? '--data-binary' : '-d');
snippet += ` ${quoteType}@${sanitize(body[body.mode].src, trim)}${quoteType}`;
break;
default:
snippet += `${form('-d', format)} ${quoteType}${quoteType}`;
}
}
}
callback(null, snippet);
},
getOptions: function () {
return [
{
name: 'Generate multiline snippet',
id: 'multiLine',
type: 'boolean',
default: true,
description: 'Split cURL command across multiple lines'
},
{
name: 'Use long form options',
id: 'longFormat',
type: 'boolean',
default: true,
description: 'Use the long form for cURL options (--header instead of -H)'
},
{
name: 'Line continuation character',
id: 'lineContinuationCharacter',
availableOptions: ['\\', '^', '`'],
type: 'enum',
default: '\\',
description: 'Set a character used to mark the continuation of a statement on the next line ' +
'(generally, \\ for OSX/Linux, ^ for Windows cmd and ` for Powershell)'
},
{
name: 'Quote Type',
id: 'quoteType',
availableOptions: ['single', 'double'],
type: 'enum',
default: 'single',
description: 'String denoting the quote type to use (single or double) for URL ' +
'(Use double quotes when running curl in cmd.exe and single quotes for the rest)'
},
{
name: 'Set request timeout (in seconds)',
id: 'requestTimeoutInSeconds',
type: 'positiveInteger',
default: 0,
description: 'Set number of seconds the request should wait for a response before ' +
'timing out (use 0 for infinity)'
},
{
name: 'Follow redirects',
id: 'followRedirect',
type: 'boolean',
default: true,
description: 'Automatically follow HTTP redirects'
},
{
name: 'Follow original HTTP method',
id: 'followOriginalHttpMethod',
type: 'boolean',
default: false,
description: 'Redirect with the original HTTP method instead of the default behavior of redirecting with GET'
},
{
name: 'Trim request body fields',
id: 'trimRequestBody',
type: 'boolean',
default: false,
description: 'Remove white space and additional lines that may affect the server\'s response'
},
{
name: 'Use Silent Mode',
id: 'silent',
type: 'boolean',
default: false,
description: 'Display the requested data without showing the cURL progress meter or error messages'
}
];
}
};