2014-06-24 14:22:16 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2014-06-24 14:22:16 +02: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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
module.exports = function(RED) {
|
2014-06-30 21:44:01 +02:00
|
|
|
"use strict";
|
2014-06-24 14:22:16 +02:00
|
|
|
var cheerio = require('cheerio');
|
|
|
|
|
|
|
|
function CheerioNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
2018-01-30 17:09:01 +01:00
|
|
|
this.property = n.property||"payload";
|
2018-05-01 13:42:27 +02:00
|
|
|
this.outproperty = n.outproperty||this.property||"payload";
|
2016-07-20 21:08:40 +02:00
|
|
|
this.tag = n.tag;
|
2014-06-24 14:22:16 +02:00
|
|
|
this.ret = n.ret || "html";
|
|
|
|
this.as = n.as || "single";
|
|
|
|
var node = this;
|
|
|
|
this.on("input", function(msg) {
|
2018-01-30 17:09:01 +01:00
|
|
|
var value = RED.util.getMessageProperty(msg,node.property);
|
|
|
|
if (value !== undefined) {
|
2016-07-20 21:08:40 +02:00
|
|
|
var tag = node.tag;
|
|
|
|
if (msg.hasOwnProperty("select")) { tag = node.tag || msg.select; }
|
2015-03-24 18:43:47 +01:00
|
|
|
try {
|
2018-01-30 17:09:01 +01:00
|
|
|
var $ = cheerio.load(value);
|
2015-03-24 18:43:47 +01:00
|
|
|
var pay = [];
|
2018-01-26 15:26:49 +01:00
|
|
|
var count = 0;
|
2017-12-01 14:09:05 +01:00
|
|
|
$(tag).each(function() {
|
2018-01-26 15:26:49 +01:00
|
|
|
count++;
|
|
|
|
});
|
|
|
|
var index = 0;
|
2016-07-20 21:08:40 +02:00
|
|
|
$(tag).each(function() {
|
2015-03-24 18:43:47 +01:00
|
|
|
if (node.as === "multi") {
|
|
|
|
var pay2 = null;
|
2015-12-19 13:44:11 +01:00
|
|
|
if (node.ret === "html") { pay2 = cheerio.load($(this).html().trim()).xml(); }
|
2015-03-24 18:43:47 +01:00
|
|
|
if (node.ret === "text") { pay2 = $(this).text(); }
|
2015-12-19 13:44:11 +01:00
|
|
|
if (node.ret === "attr") { pay2 = this.attribs; }
|
2015-03-24 18:43:47 +01:00
|
|
|
//if (node.ret === "val") { pay2 = $(this).val(); }
|
|
|
|
/* istanbul ignore else */
|
|
|
|
if (pay2) {
|
2018-01-28 06:37:34 +01:00
|
|
|
var new_msg = RED.util.cloneMessage(msg);
|
2018-05-01 13:42:27 +02:00
|
|
|
RED.util.setMessageProperty(new_msg,node.outproperty,pay2);
|
2018-01-28 06:37:34 +01:00
|
|
|
new_msg.parts = {
|
2018-01-26 15:26:49 +01:00
|
|
|
id: msg._msgid,
|
|
|
|
index: index,
|
|
|
|
count: count,
|
2017-12-01 14:09:05 +01:00
|
|
|
type: "string",
|
|
|
|
ch: ""
|
2018-01-26 15:26:49 +01:00
|
|
|
};
|
2018-01-28 06:37:34 +01:00
|
|
|
node.send(new_msg);
|
2015-03-24 18:43:47 +01:00
|
|
|
}
|
2014-06-24 14:22:16 +02:00
|
|
|
}
|
2015-03-24 18:43:47 +01:00
|
|
|
if (node.as === "single") {
|
2015-12-19 13:44:11 +01:00
|
|
|
if (node.ret === "html") { pay.push( cheerio.load($(this).html().trim()).xml() ); }
|
2015-03-24 18:43:47 +01:00
|
|
|
if (node.ret === "text") { pay.push( $(this).text() ); }
|
2015-12-19 13:44:11 +01:00
|
|
|
if (node.ret === "attr") { pay.push( this.attribs ); }
|
2015-03-24 18:43:47 +01:00
|
|
|
//if (node.ret === "val") { pay.push( $(this).val() ); }
|
|
|
|
}
|
2018-01-26 15:26:49 +01:00
|
|
|
index++;
|
2015-03-24 18:43:47 +01:00
|
|
|
});
|
2018-01-26 15:26:49 +01:00
|
|
|
if (node.as === "single") { // Always return an array - even if blank
|
2018-05-01 13:42:27 +02:00
|
|
|
RED.util.setMessageProperty(msg,node.outproperty,pay);
|
2015-03-24 18:43:47 +01:00
|
|
|
node.send(msg);
|
2014-06-24 14:22:16 +02:00
|
|
|
}
|
2018-01-26 15:26:49 +01:00
|
|
|
}
|
|
|
|
catch (error) {
|
2015-03-24 18:43:47 +01:00
|
|
|
node.error(error.message,msg);
|
2014-06-24 14:22:16 +02:00
|
|
|
}
|
|
|
|
}
|
2015-03-24 18:43:47 +01:00
|
|
|
else { node.send(msg); } // If no payload - just pass it on.
|
2014-06-24 14:22:16 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("html",CheerioNode);
|
|
|
|
}
|