Initial commit
This commit is contained in:
158
node_modules/node-red-contrib-browser-utils/fileinject/fileinject.html
generated
vendored
Normal file
158
node_modules/node-red-contrib-browser-utils/fileinject/fileinject.html
generated
vendored
Normal file
@@ -0,0 +1,158 @@
|
||||
<!--
|
||||
Copyright 2013, 2016, 2018, 2021 IBM Corp.
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<script type="text/x-red" data-template-name="fileinject">
|
||||
<div class="form-row">
|
||||
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
|
||||
<input type="text" id="node-input-name" placeholder="File Inject">
|
||||
</div>
|
||||
</script>
|
||||
|
||||
<script type="text/x-red" data-help-name="fileinject">
|
||||
<p>Simple file inject node</p>
|
||||
<p>Press the button to inject a file directly to the flow.</p>
|
||||
<p>File will be sent as part of the <code>msg.payload</code> object.</p>
|
||||
</script>
|
||||
|
||||
<script type="text/javascript">
|
||||
(function() {
|
||||
|
||||
var id
|
||||
var inputElement = document.createElement('input')
|
||||
inputElement.setAttribute('type', 'file')
|
||||
inputElement.addEventListener('change', injectFile)
|
||||
document.body.appendChild(inputElement)
|
||||
|
||||
function simulate(element, eventName){
|
||||
var options = extend(defaultOptions, arguments[2] || {});
|
||||
var oEvent, eventType = null;
|
||||
|
||||
for (var name in eventMatchers){
|
||||
if (eventMatchers[name].test(eventName)) { eventType = name; break; }
|
||||
}
|
||||
|
||||
if (!eventType)
|
||||
throw new SyntaxError('Only HTMLEvents and MouseEvents interfaces are supported');
|
||||
|
||||
if (document.createEvent){
|
||||
oEvent = document.createEvent(eventType);
|
||||
if (eventType == 'HTMLEvents'){
|
||||
oEvent.initEvent(eventName, options.bubbles, options.cancelable);
|
||||
}
|
||||
else{
|
||||
oEvent.initMouseEvent(eventName, options.bubbles, options.cancelable, document.defaultView,
|
||||
options.button, options.pointerX, options.pointerY, options.pointerX, options.pointerY,
|
||||
options.ctrlKey, options.altKey, options.shiftKey, options.metaKey, options.button, element);
|
||||
}
|
||||
element.dispatchEvent(oEvent);
|
||||
}
|
||||
else{
|
||||
options.clientX = options.pointerX;
|
||||
options.clientY = options.pointerY;
|
||||
var evt = document.createEventObject();
|
||||
oEvent = extend(evt, options);
|
||||
element.fireEvent('on' + eventName, oEvent);
|
||||
}
|
||||
return element;
|
||||
}
|
||||
|
||||
function extend(destination, source) {
|
||||
for (var property in source)
|
||||
destination[property] = source[property];
|
||||
return destination;
|
||||
}
|
||||
|
||||
var eventMatchers = {
|
||||
'HTMLEvents': /^(?:load|unload|abort|error|select|change|submit|reset|focus|blur|resize|scroll)$/,
|
||||
'MouseEvents': /^(?:click|dblclick|mouse(?:down|up|over|move|out))$/
|
||||
}
|
||||
var defaultOptions = {
|
||||
pointerX: 0,
|
||||
pointerY: 0,
|
||||
button: 0,
|
||||
ctrlKey: false,
|
||||
altKey: false,
|
||||
shiftKey: false,
|
||||
metaKey: false,
|
||||
bubbles: true,
|
||||
cancelable: true
|
||||
}
|
||||
|
||||
function triggerClick(event) {
|
||||
simulate(inputElement, 'click')
|
||||
}
|
||||
|
||||
function setNodeStatus(uploading, id) {
|
||||
$.getJSON('node-red-fileinject/status', {status: uploading, id: id})
|
||||
.done(function () {})
|
||||
.fail(function (err) {
|
||||
console.log(err);
|
||||
})
|
||||
.always(function () {});
|
||||
}
|
||||
|
||||
function injectFile() {
|
||||
var blob;
|
||||
var currentInput = this
|
||||
|
||||
if(currentInput.files.length !== 0) {
|
||||
var file = currentInput.files[0]
|
||||
var reader = new FileReader()
|
||||
|
||||
setNodeStatus(true, id)
|
||||
|
||||
reader.addEventListener('load', function(onLoadEvent) {
|
||||
var filename = file.name
|
||||
blob = new Blob([onLoadEvent.target.result], {
|
||||
type: (file.type=='')?'application/octet-stream':file.type
|
||||
});
|
||||
|
||||
currentInput.value = ''
|
||||
|
||||
var xhr = new XMLHttpRequest()
|
||||
xhr.open('POST', 'node-red-fileinject/' + id, true)
|
||||
xhr.setRequestHeader('x-filename', filename);
|
||||
xhr.send(blob)
|
||||
})
|
||||
|
||||
reader.readAsArrayBuffer(file)
|
||||
} else {
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
RED.nodes.registerType('fileinject', {
|
||||
category: 'input',
|
||||
defaults: {
|
||||
name: {value: ''}
|
||||
},
|
||||
color: 'rgb(254, 245, 136)',
|
||||
inputs: 0,
|
||||
outputs: 1,
|
||||
icon: 'fileinject.png',
|
||||
paletteLabel: 'file inject',
|
||||
label: function() {
|
||||
return this.name || 'file inject';
|
||||
},
|
||||
labelStyle: function() {
|
||||
return this.name ? 'node_label_italic' : '';
|
||||
},
|
||||
button: {
|
||||
onclick: function(evt){
|
||||
id = this.id
|
||||
triggerClick(evt)
|
||||
}
|
||||
}
|
||||
});
|
||||
})();
|
||||
</script>
|
||||
64
node_modules/node-red-contrib-browser-utils/fileinject/fileinject.js
generated
vendored
Normal file
64
node_modules/node-red-contrib-browser-utils/fileinject/fileinject.js
generated
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
/**
|
||||
* Copyright 2013, 2016, 2018, 2021 IBM Corp.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the 'License');
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an 'AS IS' BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
**/
|
||||
|
||||
var bodyParser = require('body-parser')
|
||||
|
||||
module.exports = function (RED) {
|
||||
var requestSize = '50mb'
|
||||
|
||||
function Node (config) {
|
||||
RED.nodes.createNode(this, config);
|
||||
var node = this;
|
||||
|
||||
RED.httpAdmin.get('/node-red-fileinject/status', function (req, res) {
|
||||
var n = RED.nodes.getNode(req.query.id)
|
||||
var status = {};
|
||||
if ('true' == req.query.status) {
|
||||
status = {fill:'red', shape:'dot', text:'sending file...'}
|
||||
}
|
||||
if (n) {
|
||||
n.status(status);
|
||||
}
|
||||
res.json({});
|
||||
});
|
||||
|
||||
|
||||
RED.httpAdmin.post('/node-red-fileinject/:id', bodyParser.raw({ type: '*/*', limit: requestSize }), function(req,res) {
|
||||
|
||||
var node = RED.nodes.getNode(req.params.id)
|
||||
|
||||
if (node != null) {
|
||||
try {
|
||||
node.receive({payload: req.body, filename: req.headers["x-filename"], mimetype: req.headers["content-type"]})
|
||||
node.status({})
|
||||
res.sendStatus(200)
|
||||
} catch(err) {
|
||||
res.sendStatus(500)
|
||||
node.error(RED._("inject-file.failed", { error: err.toString() }))
|
||||
}
|
||||
} else {
|
||||
res.status(404).send("no node found")
|
||||
}
|
||||
})
|
||||
|
||||
this.on('input', function (msg) {
|
||||
if(msg.payload !== '') {
|
||||
node.send(msg)
|
||||
}
|
||||
})
|
||||
}
|
||||
RED.nodes.registerType('fileinject', Node)
|
||||
};
|
||||
BIN
node_modules/node-red-contrib-browser-utils/fileinject/icons/fileinject.png
generated
vendored
Executable file
BIN
node_modules/node-red-contrib-browser-utils/fileinject/icons/fileinject.png
generated
vendored
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
Reference in New Issue
Block a user