2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
<script type="text/x-red" data-template-name="file">
|
|
|
|
<div class="form-row node-input-filename">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-filename"><i class="fa fa-file"></i> <span data-i18n="file.label.filename"></span></label>
|
2016-10-28 09:37:33 +02:00
|
|
|
<input id="node-input-filename" type="text">
|
2013-09-05 16:02:48 +02:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-overwriteFile"><i class="fa fa-random"></i> <span data-i18n="file.label.action"></span></label>
|
2017-05-24 17:55:53 +02:00
|
|
|
<select type="text" id="node-input-overwriteFile" style="width: 250px;">
|
2015-05-28 16:29:01 +02:00
|
|
|
<option value="false" data-i18n="file.action.append"></option>
|
|
|
|
<option value="true" data-i18n="file.action.overwrite"></option>
|
|
|
|
<option value="delete" data-i18n="file.action.delete"></option>
|
2014-11-08 16:34:37 +01:00
|
|
|
</select>
|
2013-09-05 16:02:48 +02:00
|
|
|
</div>
|
2017-05-24 17:55:53 +02:00
|
|
|
<div class="form-row form-row-file-write-options">
|
2013-09-05 16:02:48 +02:00
|
|
|
<label> </label>
|
2015-07-10 15:59:23 +02:00
|
|
|
<input type="checkbox" id="node-input-appendNewline" style="display: inline-block; width: auto; vertical-align: top;">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-appendNewline" style="width: 70%;"><span data-i18n="file.label.addnewline"></span></label>
|
2013-09-05 16:02:48 +02:00
|
|
|
</div>
|
2017-05-24 17:55:53 +02:00
|
|
|
<div class="form-row form-row-file-write-options">
|
2015-07-10 15:59:23 +02:00
|
|
|
<label> </label>
|
|
|
|
<input type="checkbox" id="node-input-createDir" style="display: inline-block; width: auto; vertical-align: top;">
|
|
|
|
<label for="node-input-createDir" style="width: 70%;"><span data-i18n="file.label.createdir"></span></label>
|
|
|
|
</div>
|
2013-09-05 16:02:48 +02:00
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label>
|
2015-05-26 22:11:14 +02:00
|
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]common.label.name">
|
2013-09-05 16:02:48 +02:00
|
|
|
</div>
|
2016-09-24 00:37:56 +02:00
|
|
|
<div class="form-tips"><span data-i18n="file.tip"></span></div>
|
2013-09-05 16:02:48 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="file">
|
2017-05-24 17:55:53 +02:00
|
|
|
<p>Writes <code>msg.payload</code> to a file, either adding to the end or replacing the existing content.
|
|
|
|
Alternatively, it can delete the file.</p>
|
2017-04-25 22:47:58 +02:00
|
|
|
<h3>Inputs</h3>
|
|
|
|
<dl class="message-properties">
|
|
|
|
<dt class="optional">filename <span class="property-type">string</span></dt>
|
2017-05-24 17:55:53 +02:00
|
|
|
<dd>If not configured in the node, this optional property sets the name of the file to be updated.</dd>
|
2017-04-25 22:47:58 +02:00
|
|
|
</dl>
|
|
|
|
<h3>Details</h3>
|
2017-05-24 17:55:53 +02:00
|
|
|
<p>Each message payload will be added to the end of the file, optionally appending
|
|
|
|
a newline (\n) character between each one.</p>
|
2017-07-04 21:12:53 +02:00
|
|
|
<p>If <code>msg.filename</code> is used the file will be closed after every write.
|
2017-06-29 12:40:47 +02:00
|
|
|
For best performance use a fixed filename.</p>
|
2017-05-24 17:55:53 +02:00
|
|
|
<p>It can be configured to overwrite the entire file rather than append. For example,
|
|
|
|
when writing binary data to a file, such as an image, this option should be used
|
|
|
|
and the option to append a newline should be disabled.</p>
|
|
|
|
<p>Alternatively, this node can be configured to delete the file.</p>
|
2014-04-30 23:48:30 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-template-name="file in">
|
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-filename"><i class="fa fa-file"></i> <span data-i18n="file.label.filename"></span></label>
|
2016-10-28 09:37:33 +02:00
|
|
|
<input id="node-input-filename" type="text" data-i18n="[placeholder]file.label.filename">
|
2014-04-30 23:48:30 +02:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-format"><i class="fa fa-sign-out"></i> <span data-i18n="file.label.outputas"></span></label>
|
2014-04-30 23:48:30 +02:00
|
|
|
<select id="node-input-format">
|
2015-05-28 16:29:01 +02:00
|
|
|
<option value="utf8" data-i18n="file.output.utf8"></option>
|
2017-06-22 19:41:49 +02:00
|
|
|
<option value="lines" data-i18n="file.output.lines"></option>
|
2015-05-28 16:29:01 +02:00
|
|
|
<option value="" data-i18n="file.output.buffer"></option>
|
2017-06-22 19:41:49 +02:00
|
|
|
<option value="stream" data-i18n="file.output.stream"></option>
|
2014-04-30 23:48:30 +02:00
|
|
|
</select>
|
|
|
|
</div>
|
2017-07-04 21:12:53 +02:00
|
|
|
<div class="form-row">
|
|
|
|
<label></label>
|
|
|
|
<input type="checkbox" id="node-input-sendError" style="width:auto">
|
|
|
|
<label style="width:auto; margin-bottom:0; vertical-align: middle;" for="node-input-sendError" data-i18n="file.label.sendError"></label>
|
|
|
|
</div>
|
2014-06-08 23:54:21 +02:00
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label>
|
2015-05-26 22:11:14 +02:00
|
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]common.label.name">
|
2014-06-08 23:54:21 +02:00
|
|
|
</div>
|
2017-03-06 20:05:52 +01:00
|
|
|
<div class="form-tips"><span data-i18n="file.tip"></span></div>
|
2014-04-30 23:48:30 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="file in">
|
2017-05-24 17:55:53 +02:00
|
|
|
<p>Reads the contents of a file as either a string or binary buffer.</p>
|
2017-04-25 22:47:58 +02:00
|
|
|
<h3>Inputs</h3>
|
|
|
|
<dl class="message-properties">
|
|
|
|
<dt class="optional">filename <span class="property-type">string</span></dt>
|
2017-05-24 17:55:53 +02:00
|
|
|
<dd>if not set in the node configuration, this property sets the filename to read.</dd>
|
2017-04-25 22:47:58 +02:00
|
|
|
</dl>
|
|
|
|
<h3>Outputs</h3>
|
|
|
|
<dl class="message-properties">
|
|
|
|
<dt>payload <span class="property-type">string | buffer</span></dt>
|
2017-05-24 17:55:53 +02:00
|
|
|
<dd>The contents of the file as either a string or binary buffer.</dd>
|
|
|
|
<dt class="optional">filename <span class="property-type">string</span></dt>
|
|
|
|
<dd>If not configured in the node, this optional property sets the name of the file to be read.</dd>
|
2017-07-04 21:12:53 +02:00
|
|
|
<dt class="optional">error <span class="property-type">object</span></dt>
|
|
|
|
<dd><i>deprecated</i>: If enabled in the node, when the node hits an error
|
|
|
|
reading the file, it will send a message with no <code>payload</code>
|
|
|
|
and this <code>error</code> property set to the error details. This
|
|
|
|
mode of behaviour is deprecated and not enabled by default for new
|
|
|
|
instances of the node. See below for more information.</dd>
|
2017-04-25 22:47:58 +02:00
|
|
|
</dl>
|
|
|
|
<h3>Details</h3>
|
2017-05-24 17:55:53 +02:00
|
|
|
<p>The filename should be an absolute path, otherwise it will be relative to
|
|
|
|
the working directory of the Node-RED process.</p>
|
|
|
|
<p>On Windows, path separators may need to be escaped, for example: <code>\\Users\\myUser</code>.</p>
|
2017-06-22 19:41:49 +02:00
|
|
|
<p>Optionally, a text file can be split into lines, outputting one message per line, or a binary file
|
2018-01-30 21:23:06 +01:00
|
|
|
split into smaller buffer chunks - the chunk size being operating system dependant, but typically 64k (Linux/Mac) or 41k (Windows).</p>
|
|
|
|
<p>When split into multiple messages, each message will have a <code>parts</code>
|
|
|
|
property set, forming a complete message sequence.</p>
|
2017-07-04 21:12:53 +02:00
|
|
|
<h4>Legacy error handling</h4>
|
|
|
|
<p>Before Node-RED 0.17, if this node hit an error whilst reading the file, it would
|
|
|
|
send a message with no <code>msg.payload</code> and <code>msg.error</code> set to the
|
|
|
|
details of the error. This is a deprecated mode of behaviour for the node that new
|
|
|
|
instances will not do. If required, this mode can be re-enabled within the node
|
|
|
|
configuration.</p>
|
|
|
|
<p>Errors should be caught and handled using a Catch node.</p>
|
2013-09-05 16:02:48 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('file',{
|
|
|
|
category: 'storage-output',
|
|
|
|
defaults: {
|
|
|
|
name: {value:""},
|
2016-10-28 09:37:33 +02:00
|
|
|
filename: {value:""},
|
2013-09-05 16:02:48 +02:00
|
|
|
appendNewline: {value:true},
|
2015-07-10 15:59:23 +02:00
|
|
|
createDir: {value:false},
|
2014-11-08 16:34:37 +01:00
|
|
|
overwriteFile: {value:"false"}
|
2013-09-05 16:02:48 +02:00
|
|
|
},
|
|
|
|
color:"BurlyWood",
|
|
|
|
inputs:1,
|
|
|
|
outputs:0,
|
|
|
|
icon: "file.png",
|
|
|
|
align: "right",
|
|
|
|
label: function() {
|
2015-05-28 16:29:01 +02:00
|
|
|
if (this.overwriteFile === "delete") {
|
2017-03-06 20:05:52 +01:00
|
|
|
return this.name||this._("file.label.deletelabel",{file:this.filename});
|
2015-05-28 16:29:01 +02:00
|
|
|
} else {
|
|
|
|
return this.name||this.filename||this._("file.label.filelabel");
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
2014-11-08 16:34:37 +01:00
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
2017-03-06 20:05:52 +01:00
|
|
|
$("#node-input-overwriteFile").on("change",function() {
|
2017-05-24 17:55:53 +02:00
|
|
|
if (this.value === "delete") { $(".form-row-file-write-options").hide(); }
|
|
|
|
else { $(".form-row-file-write-options").show(); }
|
2017-03-06 20:05:52 +01:00
|
|
|
});
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
});
|
2014-06-07 09:41:04 +02:00
|
|
|
|
2014-04-30 23:48:30 +02:00
|
|
|
RED.nodes.registerType('file in',{
|
|
|
|
category: 'storage-input',
|
|
|
|
defaults: {
|
|
|
|
name: {value:""},
|
2016-10-28 09:37:33 +02:00
|
|
|
filename: {value:""},
|
2014-04-30 23:48:30 +02:00
|
|
|
format: {value:"utf8"},
|
2017-07-04 21:12:53 +02:00
|
|
|
chunk: {value:false},
|
|
|
|
sendError: {value: false}
|
2014-04-30 23:48:30 +02:00
|
|
|
},
|
|
|
|
color:"BurlyWood",
|
|
|
|
inputs:1,
|
|
|
|
outputs:1,
|
2017-03-06 20:05:52 +01:00
|
|
|
outputLabels: function(i) {
|
|
|
|
return (this.format === "utf8") ? "UTF8 string" : "binary buffer";
|
|
|
|
},
|
2014-04-30 23:48:30 +02:00
|
|
|
icon: "file.png",
|
|
|
|
label: function() {
|
2015-05-10 22:47:22 +02:00
|
|
|
return this.name||this.filename||this._("file.label.filelabel");
|
2014-04-30 23:48:30 +02:00
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
2017-06-22 19:41:49 +02:00
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
2017-07-04 21:12:53 +02:00
|
|
|
if (this.sendError === undefined) {
|
|
|
|
$("#node-input-sendError").prop("checked",true);
|
|
|
|
}
|
2017-06-22 19:41:49 +02:00
|
|
|
$("#node-input-format").on("change",function() {
|
|
|
|
if ($("#node-input-format").val() === "utf8") {
|
|
|
|
$("#buffer-input-type").hide();
|
|
|
|
$("#line-input-type").show();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#buffer-input-type").show();
|
|
|
|
$("#line-input-type").hide();
|
|
|
|
}
|
|
|
|
});
|
2014-04-30 23:48:30 +02:00
|
|
|
}
|
|
|
|
});
|
2013-09-05 16:02:48 +02:00
|
|
|
</script>
|