2015-05-29 18:49:19 +02:00
|
|
|
|
|
|
|
module.exports = function(RED) {
|
|
|
|
"use strict";
|
|
|
|
var What3Words = require('geo.what3words');
|
|
|
|
|
2015-06-01 10:07:28 +02:00
|
|
|
var what3wordsNode = function(n) {
|
2015-05-29 18:49:19 +02:00
|
|
|
RED.nodes.createNode(this, n);
|
|
|
|
this.lang = n.lang || "en";
|
|
|
|
var node = this;
|
2017-03-10 00:17:40 +01:00
|
|
|
//if ( !node.credentials.apikey ) { this.error("No what3words API key set"); }
|
|
|
|
this.w3w = new What3Words(node.credentials.apikey);
|
2015-05-29 18:49:19 +02:00
|
|
|
var w1 = /^\*\w{6,31}$/;
|
|
|
|
var w3 = /^\w+\.\w+\.\w+$/;
|
|
|
|
this.on("input", function(msg) {
|
|
|
|
if (msg.hasOwnProperty("location")) {
|
|
|
|
var lat = msg.location.lat;
|
|
|
|
var lon = msg.location.lon;
|
|
|
|
node.w3w.positionToWords({ position:lat + "," + lon, lang:node.lang })
|
|
|
|
.then(function(response) {
|
|
|
|
msg.payload = response; // prom.cape.pump
|
|
|
|
if (!msg.hasOwnProperty("topic") || (msg.topic === "")) { msg.topic = "what3words"; }
|
|
|
|
node.send(msg);
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
node.warn(err)
|
|
|
|
});
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else if (typeof (msg.payload) === "string") {
|
2015-05-29 18:49:19 +02:00
|
|
|
if (msg.payload.split(",").length === 2) { // see if it's 2 comma separated words
|
|
|
|
node.w3w.positionToWords({ position:msg.payload, lang:node.lang })
|
|
|
|
.then(function(response) {
|
|
|
|
msg.payload = response; // prom.cape.pump
|
|
|
|
if (!msg.hasOwnProperty("topic") || (msg.topic === "")) { msg.topic = "what3words"; }
|
|
|
|
node.send(msg);
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
node.warn(err);
|
|
|
|
});
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else if (msg.payload.match(w3)) { // see if it's 3 dot separated words
|
2015-05-29 18:49:19 +02:00
|
|
|
node.w3w.wordsToPosition({ words:msg.payload })
|
|
|
|
.then(function(response) {
|
|
|
|
if (!msg.hasOwnProperty("location")) { msg.location = {}; }
|
|
|
|
msg.location.lat = Number(response.split(",")[0]);
|
|
|
|
msg.location.lon = Number(response.split(",")[1]);
|
|
|
|
node.send(msg);
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
node.warn(err)
|
|
|
|
});
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else if (msg.payload.match(w1)) { // see if it's a *Oneword
|
2015-05-29 18:49:19 +02:00
|
|
|
node.w3w.wordsToPosition({ words:msg.payload })
|
|
|
|
.then(function(response) {
|
|
|
|
if (!msg.hasOwnProperty("location")) { msg.location = {}; }
|
|
|
|
msg.location.lat = Number(response.split(",")[0]);
|
|
|
|
msg.location.lon = Number(response.split(",")[1]);
|
|
|
|
msg.payload = response;
|
|
|
|
node.send(msg);
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
node.warn(err);
|
|
|
|
});
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else { node.warn("No useable data found. See info."); }
|
|
|
|
}
|
|
|
|
else { node.warn("No useable data found. See info."); }
|
2015-05-29 18:49:19 +02:00
|
|
|
});
|
|
|
|
}
|
2017-03-10 00:17:40 +01:00
|
|
|
RED.nodes.registerType("what3words", what3wordsNode, {
|
|
|
|
credentials: { apikey: {type: "password"} }
|
2015-05-29 18:49:19 +02:00
|
|
|
});
|
|
|
|
}
|