-
Notifications
You must be signed in to change notification settings - Fork 412
/
Copy pathurl-plugin.js
executable file
·174 lines (143 loc) · 4.91 KB
/
url-plugin.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
#!/usr/bin/env node
// URL Plugin for Cronicle
// Invoked via the 'HTTP Client' Plugin
// Copyright (c) 2017 Joseph Huckaby
// Released under the MIT License
// Job Params:
// method, url, headers, data, timeout, follow, ssl_cert_bypass, success_match, error_match
var fs = require('fs');
var os = require('os');
var cp = require('child_process');
var path = require('path');
var JSONStream = require('pixl-json-stream');
var Tools = require('pixl-tools');
var Request = require('pixl-request');
// setup stdin / stdout streams
process.stdin.setEncoding('utf8');
process.stdout.setEncoding('utf8');
var stream = new JSONStream( process.stdin, process.stdout );
stream.on('json', function(job) {
// got job from parent
var params = job.params;
var request = new Request();
var print = function(text) {
fs.appendFileSync( job.log_file, text );
};
// timeout
request.setTimeout( (params.timeout || 0) * 1000 );
if (!params.url || !params.url.match(/^https?\:\/\/\S+$/i)) {
stream.write({ complete: 1, code: 1, description: "Malformed URL: " + (params.url || '(n/a)') });
return;
}
// allow URL to be substituted using [placeholders]
params.url = Tools.sub( params.url, job );
print("Sending HTTP " + params.method + " to URL:\n" + params.url + "\n");
// headers
if (params.headers) {
// allow headers to be substituted using [placeholders]
params.headers = Tools.sub( params.headers, job );
print("\nRequest Headers:\n" + params.headers.trim() + "\n");
params.headers.replace(/\r\n/g, "\n").trim().split(/\n/).forEach( function(pair) {
if (pair.match(/^([^\:]+)\:\s*(.+)$/)) {
request.setHeader( RegExp.$1, RegExp.$2 );
}
} );
}
// follow redirects
if (params.follow) request.setFollow( 32 );
var opts = {
method: params.method
};
// ssl cert bypass
if (params.ssl_cert_bypass) {
opts.rejectUnauthorized = false;
}
// post data
if (opts.method == 'POST') {
// allow POST data to be substituted using [placeholders]
params.data = Tools.sub( params.data, job );
print("\nPOST Data:\n" + params.data.trim() + "\n");
opts.data = Buffer.from( params.data || '' );
}
// matching
var success_match = new RegExp( params.success_match || '.*' );
var error_match = new RegExp( params.error_match || '(?!)' );
// send request
request.request( params.url, opts, function(err, resp, data, perf) {
// HTTP code out of success range = error
if (!err && ((resp.statusCode < 200) || (resp.statusCode >= 400))) {
err = new Error("HTTP " + resp.statusCode + " " + resp.statusMessage);
err.code = resp.statusCode;
}
// successmatch? errormatch?
var text = data ? data.toString() : '';
if (!err) {
if (text.match(error_match)) {
err = new Error("Response contains error match: " + params.error_match);
}
else if (!text.match(success_match)) {
err = new Error("Response missing success match: " + params.success_match);
}
}
// start building cronicle JSON update
var update = {
complete: 1
};
if (err) {
update.code = err.code || 1;
update.description = err.message || err;
}
else {
update.code = 0;
update.description = "Success (HTTP " + resp.statusCode + " " + resp.statusMessage + ")";
}
print( "\n" + update.description + "\n" );
// add raw response headers into table
if (resp && resp.rawHeaders) {
var rows = [];
print("\nResponse Headers:\n");
for (var idx = 0, len = resp.rawHeaders.length; idx < len; idx += 2) {
rows.push([ resp.rawHeaders[idx], resp.rawHeaders[idx + 1] ]);
print( resp.rawHeaders[idx] + ": " + resp.rawHeaders[idx + 1] + "\n" );
}
update.table = {
title: "HTTP Response Headers",
header: ["Header Name", "Header Value"],
rows: rows.sort( function(a, b) {
return a[0].localeCompare(b[0]);
} )
};
}
// add response headers to chain_data if applicable
if (job.chain) {
update.chain_data = {
headers: resp.headers
};
}
// add raw response content, if text (and not too long)
if (text && resp.headers['content-type'] && resp.headers['content-type'].match(/(text|javascript|json|css|html)/i)) {
print("\nRaw Response Content:\n" + text.trim() + "\n");
if (text.length < 32768) {
update.html = {
title: "Raw Response Content",
content: "<pre>" + text.replace(/</g, '<').trim() + "</pre>"
};
}
// if response was JSON and chain mode is enabled, chain parsed data
if (job.chain && (text.length < 1024 * 1024) && resp.headers['content-type'].match(/(application|text)\/json/i)) {
var json = null;
try { json = JSON.parse(text); }
catch (e) {
print("\nWARNING: Failed to parse JSON response: " + e + " (could not include JSON in chain_data)\n");
}
if (json) update.chain_data.json = json;
}
}
if (perf) {
// passthru perf to cronicle
update.perf = perf.metrics();
print("\nPerformance Metrics: " + perf.summarize() + "\n");
}
stream.write(update);
} );
});