2013-11-24 23:25:35 +01:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2013-11-24 23:25:35 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
**/
|
|
|
|
|
2014-05-04 00:32:04 +02:00
|
|
|
module.exports = function(RED) {
|
2014-05-29 23:13:21 +02:00
|
|
|
"use strict";
|
2014-10-28 12:02:46 +01:00
|
|
|
|
2014-05-04 00:32:04 +02:00
|
|
|
function ChangeNode(n) {
|
|
|
|
RED.nodes.createNode(this, n);
|
2017-05-05 12:23:24 +02:00
|
|
|
var node = this;
|
2015-12-29 23:19:32 +01:00
|
|
|
|
2015-03-18 17:20:21 +01:00
|
|
|
this.rules = n.rules;
|
2016-10-10 00:14:52 +02:00
|
|
|
var rule;
|
2015-03-18 17:20:21 +01:00
|
|
|
if (!this.rules) {
|
2016-10-10 00:14:52 +02:00
|
|
|
rule = {
|
2015-03-18 17:20:21 +01:00
|
|
|
t:(n.action=="replace"?"set":n.action),
|
|
|
|
p:n.property||""
|
|
|
|
}
|
2015-12-29 23:19:32 +01:00
|
|
|
|
2016-04-10 13:20:46 +02:00
|
|
|
if ((rule.t === "set")||(rule.t === "move")) {
|
2015-03-18 17:20:21 +01:00
|
|
|
rule.to = n.to||"";
|
|
|
|
} else if (rule.t === "change") {
|
|
|
|
rule.from = n.from||"";
|
|
|
|
rule.to = n.to||"";
|
|
|
|
rule.re = (n.reg===null||n.reg);
|
|
|
|
}
|
|
|
|
this.rules = [rule];
|
2013-11-24 23:25:35 +01:00
|
|
|
}
|
2015-12-29 23:19:32 +01:00
|
|
|
|
2015-03-16 14:58:01 +01:00
|
|
|
var valid = true;
|
2015-03-18 17:20:21 +01:00
|
|
|
for (var i=0;i<this.rules.length;i++) {
|
2016-10-10 00:14:52 +02:00
|
|
|
rule = this.rules[i];
|
2015-12-29 23:19:32 +01:00
|
|
|
// Migrate to type-aware rules
|
|
|
|
if (!rule.pt) {
|
|
|
|
rule.pt = "msg";
|
|
|
|
}
|
|
|
|
if (rule.t === "change" && rule.re) {
|
|
|
|
rule.fromt = 're';
|
|
|
|
delete rule.re;
|
|
|
|
}
|
|
|
|
if (rule.t === "set" && !rule.tot) {
|
|
|
|
if (rule.to.indexOf("msg.") === 0 && !rule.tot) {
|
|
|
|
rule.to = rule.to.substring(4);
|
|
|
|
rule.tot = "msg";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!rule.tot) {
|
|
|
|
rule.tot = "str";
|
|
|
|
}
|
|
|
|
if (!rule.fromt) {
|
|
|
|
rule.fromt = "str";
|
|
|
|
}
|
2016-03-14 00:10:10 +01:00
|
|
|
if (rule.t === "change" && rule.fromt !== 'msg' && rule.fromt !== 'flow' && rule.fromt !== 'global') {
|
|
|
|
rule.fromRE = rule.from;
|
2015-12-29 23:19:32 +01:00
|
|
|
if (rule.fromt !== 're') {
|
2016-03-14 00:10:10 +01:00
|
|
|
rule.fromRE = rule.fromRE.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
|
2015-03-18 17:20:21 +01:00
|
|
|
}
|
|
|
|
try {
|
2016-03-14 00:10:10 +01:00
|
|
|
rule.fromRE = new RegExp(rule.fromRE, "g");
|
2015-03-18 17:20:21 +01:00
|
|
|
} catch (e) {
|
|
|
|
valid = false;
|
2015-05-28 00:07:31 +02:00
|
|
|
this.error(RED._("change.errors.invalid-from",{error:e.message}));
|
2015-03-18 17:20:21 +01:00
|
|
|
}
|
2015-03-16 14:58:01 +01:00
|
|
|
}
|
2015-12-29 23:19:32 +01:00
|
|
|
if (rule.tot === 'num') {
|
|
|
|
rule.to = Number(rule.to);
|
|
|
|
} else if (rule.tot === 'json') {
|
|
|
|
try {
|
2016-10-10 00:14:52 +02:00
|
|
|
// check this is parsable JSON
|
|
|
|
JSON.parse(rule.to);
|
2015-12-29 23:19:32 +01:00
|
|
|
} catch(e2) {
|
|
|
|
valid = false;
|
|
|
|
this.error(RED._("change.errors.invalid-json"));
|
|
|
|
}
|
2016-01-03 23:26:47 +01:00
|
|
|
} else if (rule.tot === 'bool') {
|
|
|
|
rule.to = /^true$/i.test(rule.to);
|
2016-11-11 00:58:34 +01:00
|
|
|
} else if (rule.tot === 'jsonata') {
|
|
|
|
try {
|
2017-05-03 16:48:30 +02:00
|
|
|
rule.to = RED.util.prepareJSONataExpression(rule.to,this);
|
2016-11-11 00:58:34 +01:00
|
|
|
} catch(e) {
|
|
|
|
valid = false;
|
2017-05-05 12:23:24 +02:00
|
|
|
this.error(RED._("change.errors.invalid-expr",{error:e.message}));
|
2016-11-11 00:58:34 +01:00
|
|
|
}
|
2015-12-29 23:19:32 +01:00
|
|
|
}
|
2015-03-16 14:58:01 +01:00
|
|
|
}
|
2015-03-18 17:20:21 +01:00
|
|
|
|
2015-12-29 23:19:32 +01:00
|
|
|
function applyRule(msg,rule) {
|
2015-03-18 17:20:21 +01:00
|
|
|
try {
|
2015-12-29 23:19:32 +01:00
|
|
|
var property = rule.p;
|
|
|
|
var value = rule.to;
|
2016-10-10 00:14:52 +02:00
|
|
|
if (rule.tot === 'json') {
|
|
|
|
value = JSON.parse(rule.to);
|
|
|
|
}
|
2016-03-14 00:10:10 +01:00
|
|
|
var current;
|
|
|
|
var fromValue;
|
|
|
|
var fromType;
|
|
|
|
var fromRE;
|
2015-12-29 23:19:32 +01:00
|
|
|
if (rule.tot === "msg") {
|
|
|
|
value = RED.util.getMessageProperty(msg,rule.to);
|
|
|
|
} else if (rule.tot === 'flow') {
|
|
|
|
value = node.context().flow.get(rule.to);
|
|
|
|
} else if (rule.tot === 'global') {
|
|
|
|
value = node.context().global.get(rule.to);
|
2016-04-18 15:38:32 +02:00
|
|
|
} else if (rule.tot === 'date') {
|
|
|
|
value = Date.now();
|
2016-11-11 00:58:34 +01:00
|
|
|
} else if (rule.tot === 'jsonata') {
|
2017-05-05 12:23:24 +02:00
|
|
|
try{
|
|
|
|
value = RED.util.evaluateJSONataExpression(rule.to,msg);
|
|
|
|
} catch(err) {
|
|
|
|
node.error(RED._("change.errors.invalid-expr",{error:err.message}));
|
|
|
|
return;
|
|
|
|
}
|
2015-12-29 23:19:32 +01:00
|
|
|
}
|
2016-03-14 00:10:10 +01:00
|
|
|
if (rule.t === 'change') {
|
|
|
|
if (rule.fromt === 'msg' || rule.fromt === 'flow' || rule.fromt === 'global') {
|
|
|
|
if (rule.fromt === "msg") {
|
|
|
|
fromValue = RED.util.getMessageProperty(msg,rule.from);
|
|
|
|
} else if (rule.tot === 'flow') {
|
|
|
|
fromValue = node.context().flow.get(rule.from);
|
|
|
|
} else if (rule.tot === 'global') {
|
|
|
|
fromValue = node.context().global.get(rule.from);
|
|
|
|
}
|
|
|
|
if (typeof fromValue === 'number' || fromValue instanceof Number) {
|
|
|
|
fromType = 'num';
|
|
|
|
} else if (typeof fromValue === 'boolean') {
|
|
|
|
fromType = 'bool'
|
|
|
|
} else if (fromValue instanceof RegExp) {
|
|
|
|
fromType = 're';
|
|
|
|
fromRE = fromValue;
|
|
|
|
} else if (typeof fromValue === 'string') {
|
|
|
|
fromType = 'str';
|
|
|
|
fromRE = fromValue.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
|
|
|
|
try {
|
|
|
|
fromRE = new RegExp(fromRE, "g");
|
|
|
|
} catch (e) {
|
|
|
|
valid = false;
|
|
|
|
node.error(RED._("change.errors.invalid-from",{error:e.message}));
|
2016-04-10 13:20:46 +02:00
|
|
|
return;
|
2016-03-14 00:10:10 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
node.error(RED._("change.errors.invalid-from",{error:"unsupported type: "+(typeof fromValue)}));
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fromType = rule.fromt;
|
|
|
|
fromValue = rule.from;
|
|
|
|
fromRE = rule.fromRE;
|
|
|
|
}
|
|
|
|
}
|
2015-12-29 23:19:32 +01:00
|
|
|
if (rule.pt === 'msg') {
|
|
|
|
if (rule.t === 'delete') {
|
|
|
|
RED.util.setMessageProperty(msg,property,undefined);
|
|
|
|
} else if (rule.t === 'set') {
|
|
|
|
RED.util.setMessageProperty(msg,property,value);
|
|
|
|
} else if (rule.t === 'change') {
|
2016-03-14 00:10:10 +01:00
|
|
|
current = RED.util.getMessageProperty(msg,property);
|
2015-12-29 23:19:32 +01:00
|
|
|
if (typeof current === 'string') {
|
2016-10-10 12:10:36 +02:00
|
|
|
if ((fromType === 'num' || fromType === 'bool' || fromType === 'str') && current === fromValue) {
|
2016-03-14 00:10:10 +01:00
|
|
|
// str representation of exact from number/boolean
|
|
|
|
// only replace if they match exactly
|
|
|
|
RED.util.setMessageProperty(msg,property,value);
|
|
|
|
} else {
|
|
|
|
current = current.replace(fromRE,value);
|
|
|
|
RED.util.setMessageProperty(msg,property,current);
|
|
|
|
}
|
|
|
|
} else if ((typeof current === 'number' || current instanceof Number) && fromType === 'num') {
|
|
|
|
if (current == Number(fromValue)) {
|
|
|
|
RED.util.setMessageProperty(msg,property,value);
|
|
|
|
}
|
|
|
|
} else if (typeof current === 'boolean' && fromType === 'bool') {
|
|
|
|
if (current.toString() === fromValue) {
|
|
|
|
RED.util.setMessageProperty(msg,property,value);
|
|
|
|
}
|
2015-12-29 23:19:32 +01:00
|
|
|
}
|
2015-03-18 17:20:21 +01:00
|
|
|
}
|
2016-10-10 12:10:36 +02:00
|
|
|
}
|
|
|
|
else {
|
2015-12-29 23:19:32 +01:00
|
|
|
var target;
|
|
|
|
if (rule.pt === 'flow') {
|
|
|
|
target = node.context().flow;
|
|
|
|
} else if (rule.pt === 'global') {
|
|
|
|
target = node.context().global;
|
|
|
|
}
|
|
|
|
if (target) {
|
|
|
|
if (rule.t === 'delete') {
|
|
|
|
target.set(property,undefined);
|
|
|
|
} else if (rule.t === 'set') {
|
|
|
|
target.set(property,value);
|
|
|
|
} else if (rule.t === 'change') {
|
2016-03-14 00:10:10 +01:00
|
|
|
current = target.get(msg,property);
|
2015-12-29 23:19:32 +01:00
|
|
|
if (typeof current === 'string') {
|
2016-10-10 12:10:36 +02:00
|
|
|
if ((fromType === 'num' || fromType === 'bool' || fromType === 'str') && current === fromValue) {
|
2016-03-14 00:10:10 +01:00
|
|
|
// str representation of exact from number/boolean
|
|
|
|
// only replace if they match exactly
|
|
|
|
target.set(property,value);
|
|
|
|
} else {
|
|
|
|
current = current.replace(fromRE,value);
|
|
|
|
target.set(property,current);
|
|
|
|
}
|
|
|
|
} else if ((typeof current === 'number' || current instanceof Number) && fromType === 'num') {
|
|
|
|
if (current == Number(fromValue)) {
|
|
|
|
target.set(property,value);
|
|
|
|
}
|
|
|
|
} else if (typeof current === 'boolean' && fromType === 'bool') {
|
|
|
|
if (current.toString() === fromValue) {
|
|
|
|
target.set(property,value);
|
|
|
|
}
|
2014-10-28 12:02:46 +01:00
|
|
|
}
|
2014-10-03 17:12:24 +02:00
|
|
|
}
|
2015-03-18 17:20:21 +01:00
|
|
|
}
|
2015-12-29 23:19:32 +01:00
|
|
|
}
|
2016-03-14 00:10:10 +01:00
|
|
|
} catch(err) {/*console.log(err.stack)*/}
|
2015-03-18 17:20:21 +01:00
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
if (valid) {
|
|
|
|
this.on('input', function(msg) {
|
2016-10-10 12:10:36 +02:00
|
|
|
for (var i=0; i<this.rules.length; i++) {
|
2016-04-10 13:20:46 +02:00
|
|
|
if (this.rules[i].t === "move") {
|
|
|
|
var r = this.rules[i];
|
2016-10-10 12:10:36 +02:00
|
|
|
if ((r.tot !== r.pt) || (r.p.indexOf(r.to) !== -1)) {
|
2016-08-28 13:01:12 +02:00
|
|
|
msg = applyRule(msg,{t:"set", p:r.to, pt:r.tot, to:r.p, tot:r.pt});
|
|
|
|
applyRule(msg,{t:"delete", p:r.p, pt:r.pt});
|
|
|
|
}
|
2016-10-10 12:10:36 +02:00
|
|
|
else { // 2 step move if we are moving from a child
|
2016-08-28 13:01:12 +02:00
|
|
|
msg = applyRule(msg,{t:"set", p:"_temp_move", pt:r.tot, to:r.p, tot:r.pt});
|
|
|
|
applyRule(msg,{t:"delete", p:r.p, pt:r.pt});
|
|
|
|
msg = applyRule(msg,{t:"set", p:r.to, pt:r.tot, to:"_temp_move", tot:r.pt});
|
|
|
|
applyRule(msg,{t:"delete", p:"_temp_move", pt:r.pt});
|
|
|
|
}
|
2016-04-10 13:20:46 +02:00
|
|
|
} else {
|
|
|
|
msg = applyRule(msg,this.rules[i]);
|
|
|
|
}
|
2016-03-14 00:10:10 +01:00
|
|
|
if (msg === null) {
|
|
|
|
return;
|
|
|
|
}
|
2015-03-18 17:20:21 +01:00
|
|
|
}
|
2015-03-16 14:58:01 +01:00
|
|
|
node.send(msg);
|
|
|
|
});
|
|
|
|
}
|
2014-05-04 00:32:04 +02:00
|
|
|
}
|
|
|
|
RED.nodes.registerType("change", ChangeNode);
|
2014-10-03 17:12:24 +02:00
|
|
|
};
|