mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Avoid wasting time preparing the payload if operation is a delete.
This commit is contained in:
parent
995268c5df
commit
22b32b1684
@ -29,14 +29,6 @@ module.exports = function(RED) {
|
|||||||
if (filename === "") {
|
if (filename === "") {
|
||||||
node.warn('No filename specified');
|
node.warn('No filename specified');
|
||||||
} else if (typeof msg.payload != "undefined") {
|
} else if (typeof msg.payload != "undefined") {
|
||||||
var data = msg.payload;
|
|
||||||
if (typeof data == "object") {
|
|
||||||
if (!Buffer.isBuffer(data)) {
|
|
||||||
data = JSON.stringify(data);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (typeof data == "boolean") { data = data.toString(); }
|
|
||||||
if ((this.appendNewline)&&(!Buffer.isBuffer(data))) { data += "\n"; }
|
|
||||||
if (msg.hasOwnProperty('delete')) {
|
if (msg.hasOwnProperty('delete')) {
|
||||||
fs.unlink(filename, function (err) {
|
fs.unlink(filename, function (err) {
|
||||||
if (err) { node.warn('Failed to delete file : '+err); }
|
if (err) { node.warn('Failed to delete file : '+err); }
|
||||||
@ -44,6 +36,14 @@ module.exports = function(RED) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
var data = msg.payload;
|
||||||
|
if (typeof data == "object") {
|
||||||
|
if (!Buffer.isBuffer(data)) {
|
||||||
|
data = JSON.stringify(data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (typeof data == "boolean") { data = data.toString(); }
|
||||||
|
if ((this.appendNewline)&&(!Buffer.isBuffer(data))) { data += "\n"; }
|
||||||
if (this.overwriteFile) {
|
if (this.overwriteFile) {
|
||||||
fs.writeFile(filename, data, function (err) {
|
fs.writeFile(filename, data, function (err) {
|
||||||
if (err) { node.warn('Failed to write to file : '+err); }
|
if (err) { node.warn('Failed to write to file : '+err); }
|
||||||
|
Loading…
Reference in New Issue
Block a user