forked from node-modules/urllib-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.js
63 lines (53 loc) · 1.34 KB
/
request.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
/*!
* urllib-sync - request.js
* Copyright(c) Alibaba Group Holding Limited.
* Author: busi.hyy <[email protected]>
*/
'use strict';
/**
* Module dependencies.
*/
var utility = require('utility');
var urllib = require('urllib');
var path = require('path');
var util = require('util');
var fs = require('fs');
var os = require('os');
!os.tmpDir && (os.tmpDir = os.tmpdir);
var input = {};
try {
input = utility.base64decode(process.argv[2] || '');
input = JSON.parse(input);
} catch (err) {
console.error(err.message);
process.exit(1);
}
urllib.request(input.url, input.args, function (err, data, res) {
if (err) {
console.error(err.message);
process.exit(1);
}
var name = util.format('%s:%s', process.pid, Date.now());
var type = 'buffer';
if (data && typeof data === 'object' && !Buffer.isBuffer(data)) {
type = 'json';
data = JSON.stringify(data);
} else if (typeof data === 'string') {
type = 'string';
}
var filepath = path.join(os.tmpDir(), name);
// if need to writeFile
if ((res.statusCode / 100 | 0) === 2 && input.args.writeFile) {
type = 'file';
filepath = input.args.writeFile;
}
fs.writeFileSync(filepath, data);
var res = {
path: filepath,
type: type,
status: res.statusCode,
headers: res.headers
};
console.log(JSON.stringify(res));
process.exit(0);
});