Backup senica-RVO25 on 16.10.2025
This commit is contained in:
parent
b2adef622d
commit
cf772fe147
96 changed files with 31029 additions and 0 deletions
137
RVO25/flow/httprequest.js
Executable file
137
RVO25/flow/httprequest.js
Executable file
|
|
@ -0,0 +1,137 @@
|
|||
exports.id = 'httprequest';
|
||||
exports.title = 'HTTP Request';
|
||||
exports.group = 'HTTP';
|
||||
exports.color = '#5D9CEC';
|
||||
exports.input = true;
|
||||
exports.version = '2.0.1';
|
||||
exports.output = 1;
|
||||
exports.author = 'Peter Širka';
|
||||
exports.icon = 'cloud-upload';
|
||||
|
||||
exports.html = `<div class="padding">
|
||||
<div data-jc="textbox" data-jc-path="url" class="m" data-jc-config="required:true;maxlength:500;placeholder:@(E.g. https\\://www.totaljs.com)">@(URL address)</div>
|
||||
<div class="row">
|
||||
<div class="col-md-6 m">
|
||||
<div data-jc="dropdown" data-jc-path="method" data-jc-config="required:true;items:,GET,POST,PUT,DELETE">@(HTTP method)</div>
|
||||
</div>
|
||||
<div class="col-md-6 m">
|
||||
<div data-jc="dropdown" data-jc-path="stringify" data-jc-config="required:true;items:,URL encoded|encoded,JSON|json,RAW|raw,None|none">@(Serialization)</div>
|
||||
</div>
|
||||
</div>
|
||||
<div data-jc="checkbox" data-jc-path="chunks">@(Download the content <b>in chunks</b>)</div>
|
||||
<div data-jc="checkbox" data-jc-path="persistentcookies">@(Keep persistent cookies)</div>
|
||||
<div data-jc="checkbox" data-jc-path="nodns">@(Disable DNS cache)</div>
|
||||
<div data-jc="checkbox" data-jc-path="keepalive">@(Keep alive connection)</div>
|
||||
</div>
|
||||
<hr class="nmt nmb" />
|
||||
<div class="padding">
|
||||
<div data-jc="keyvalue" data-jc-path="headers" data-jc-config="placeholderkey:@(Header name);placeholdervalue:@(Header value and press enter)" class="m">@(Custom headers)</div>
|
||||
<div data-jc="keyvalue" data-jc-path="cookies" data-jc-config="placeholderkey:@(Cookie name);placeholdervalue:@(Cookie value and press enter)">@(Cookies)</div>
|
||||
</div>
|
||||
<div class="padding bg-smoke">
|
||||
<section>
|
||||
<label><i class="fa fa-lock"></i>@(HTTP basic access authentication)</label>
|
||||
<div class="padding npb">
|
||||
<div class="row">
|
||||
<div class="col-md-6 m">
|
||||
<div data-jc="textbox" data-jc-path="username">@(User)</div>
|
||||
</div>
|
||||
<div class="col-md-6 m">
|
||||
<div data-jc="textbox" data-jc-path="userpassword">@(Password)</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>`;
|
||||
|
||||
exports.readme = `# Request
|
||||
|
||||
This component creates a request with received data.
|
||||
|
||||
__Response:__
|
||||
\`\`\`javascript
|
||||
{
|
||||
data: String,
|
||||
headers: Object,
|
||||
status: Number,
|
||||
host: String
|
||||
}
|
||||
\`\`\`
|
||||
|
||||
__Dynamic arguments__:
|
||||
Are performed via FlowData repository and can be used for URL address or for custom headers/cookies/auth. Use \`repository\` component for creating of dynamic arguments. Dynamic values are replaced in the form \`{key}\`:
|
||||
|
||||
- url address e.g. \`https://.../{key}/\`
|
||||
- headers values e.g. \`{token}\`
|
||||
- cookies values e.g. \`{token}\``;
|
||||
|
||||
exports.install = function(instance) {
|
||||
|
||||
var can = false;
|
||||
var flags = null;
|
||||
var cookies2 = null;
|
||||
|
||||
instance.on('data', function(response) {
|
||||
can && instance.custom.send(response);
|
||||
});
|
||||
|
||||
instance.custom.send = function(response) {
|
||||
var options = instance.options;
|
||||
|
||||
var headers = null;
|
||||
var cookies = null;
|
||||
|
||||
options.headers && Object.keys(options.headers).forEach(function(key) {
|
||||
!headers && (headers = {});
|
||||
headers[key] = response.arg(options.headers[key]);
|
||||
});
|
||||
|
||||
if (options.username && options.userpassword) {
|
||||
!headers && (headers = {});
|
||||
headers['Authorization'] = 'Basic ' + U.createBuffer(response.arg(options.username + ':' + options.userpassword)).toString('base64');
|
||||
}
|
||||
|
||||
options.cookies && Object.keys(options.cookies).forEach(function(key) {
|
||||
!cookies && (cookies = {});
|
||||
cookies[key] = response.arg(options.cookies[key]);
|
||||
});
|
||||
|
||||
if (options.chunks) {
|
||||
U.download(response.arg(options.url), flags, options.stringify === 'none' ? null : response.data, function(err, response) {
|
||||
response.on('data', (chunks) => instance.send2(chunks));
|
||||
}, cookies || cookies2, headers);
|
||||
} else {
|
||||
U.request(response.arg(options.url), flags, options.stringify === 'none' ? null : response.data, function(err, data, status, headers, host) {
|
||||
if (response && !err) {
|
||||
response.data = { data: data, status: status, headers: headers, host: host };
|
||||
instance.send2(response);
|
||||
} else if (err)
|
||||
instance.error(err, response);
|
||||
}, cookies || cookies2, headers);
|
||||
}
|
||||
};
|
||||
|
||||
instance.reconfigure = function() {
|
||||
var options = instance.options;
|
||||
can = options.url && options.url && options.method && options.stringify ? true : false;
|
||||
instance.status(can ? '' : 'Not configured', can ? undefined : 'red');
|
||||
|
||||
if (!can)
|
||||
return;
|
||||
|
||||
flags = [];
|
||||
flags.push(options.method.toLowerCase());
|
||||
options.stringify === 'json' && flags.push('json');
|
||||
options.stringify === 'raw' && flags.push('raw');
|
||||
options.keepalive && flags.push('keepalive');
|
||||
!options.nodns && flags.push('dnscache');
|
||||
if (options.persistentcookies) {
|
||||
flags.push('cookies');
|
||||
cookies2 = {};
|
||||
} else
|
||||
cookies2 = null;
|
||||
};
|
||||
|
||||
instance.on('options', instance.reconfigure);
|
||||
instance.reconfigure();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue