mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
fix twitter node to have 1 input :-(
and tidy up statuses
This commit is contained in:
parent
2c49832bda
commit
c04ca47804
@ -124,7 +124,8 @@
|
||||
<li>all tweets by specific users</li>
|
||||
<li>direct messages received by the authenticated user</li>
|
||||
</ul></p>
|
||||
<p>Use space for <i>and</i> and comma , for <i>or</i> when searching for multiple terms. If you want to pass in the term(s) via the <code>msg.payload</code>, leave the field blank.</p>
|
||||
<p>Use space for <i>and</i> and comma , for <i>or</i> when searching for multiple terms.
|
||||
If you want to pass in the search term(s) via the <code>msg.payload</code>, leave the <b>for</b> field blank.</p>
|
||||
<p>Sets the <code>msg.topic</code> to <i>tweets/</i> and then appends the senders screen name.</p>
|
||||
<p>Sets <code>msg.location</code> to the tweeters location if known.</p>
|
||||
<p>Sets <code>msg.tweet</code> to the full tweet object as documented by <a href="https://dev.twitter.com/overview/api/tweets">Twitter</a>.
|
||||
@ -145,7 +146,7 @@
|
||||
name: {value:""},
|
||||
topic: {value:"tweets"}
|
||||
},
|
||||
inputs:0,
|
||||
inputs: 1,
|
||||
outputs: 1,
|
||||
icon: "twitter.png",
|
||||
label: function() {
|
||||
@ -158,7 +159,10 @@
|
||||
} else if (this.user == "user") {
|
||||
return this.tags+" "+this._("twitter.label.tweetslabel");
|
||||
}
|
||||
return this.tags;
|
||||
else if (this.user == "true") {
|
||||
return this._("twitter.label.followers");
|
||||
}
|
||||
return "twitter";
|
||||
},
|
||||
labelStyle: function() {
|
||||
return this.name?"node_label_italic":"";
|
||||
@ -181,19 +185,18 @@
|
||||
$("#node-input-tags-label").html(forlabel);
|
||||
$("#node-input-tags").attr("placeholder",forph);
|
||||
}
|
||||
|
||||
});
|
||||
$("#node-input-user").change();
|
||||
},
|
||||
oneditsave: function() {
|
||||
if ($('#node-input-tags').val() === '' && $("#node-input-user option:selected").val() != 'dm' && $("#node-input-user option:selected").val() != 'user') {
|
||||
this.inputs=1;
|
||||
}
|
||||
else {
|
||||
//set back the default state of 0 inputs
|
||||
this.inputs=0;
|
||||
}
|
||||
}
|
||||
}//,
|
||||
// oneditsave: function() {
|
||||
// if ($('#node-input-tags').val() === '' && $("#node-input-user option:selected").val() != 'dm' && $("#node-input-user option:selected").val() != 'user') {
|
||||
// this.inputs=1;
|
||||
// }
|
||||
// else {
|
||||
// //set back the default state of 0 inputs
|
||||
// this.inputs=0;
|
||||
// }
|
||||
// }
|
||||
});
|
||||
</script>
|
||||
|
||||
|
@ -88,9 +88,11 @@ module.exports = function(RED) {
|
||||
if (this.user === "user") {
|
||||
node.poll_ids = [];
|
||||
node.since_ids = {};
|
||||
node.status({});
|
||||
var users = node.tags.split(",");
|
||||
//if (users == '') node.warn("User option selected but no users specified");
|
||||
if (users.length === 0) { node.warn(RED._("twitter.warn.nousers")); }
|
||||
if (users === '') { node.warn(RED._("twitter.warn.nousers")); }
|
||||
//if (users.length === 0) { node.warn(RED._("twitter.warn.nousers")); }
|
||||
else {
|
||||
for (var i=0; i<users.length; i++) {
|
||||
var user = users[i].replace(" ","");
|
||||
twit.getUserTimeline({
|
||||
@ -139,8 +141,11 @@ module.exports = function(RED) {
|
||||
}
|
||||
}()));
|
||||
}
|
||||
} else if (this.user === "dm") {
|
||||
}
|
||||
}
|
||||
else if (this.user === "dm") {
|
||||
node.poll_ids = [];
|
||||
node.status({});
|
||||
twit.getDirectMessages({
|
||||
screen_name:node.twitterConfig.screen_name,
|
||||
trim_user:0,
|
||||
@ -183,8 +188,8 @@ module.exports = function(RED) {
|
||||
});
|
||||
},120000));
|
||||
});
|
||||
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
try {
|
||||
var thing = 'statuses/filter';
|
||||
if (this.user === "true") { thing = 'user'; }
|
||||
@ -218,11 +223,13 @@ module.exports = function(RED) {
|
||||
}
|
||||
});
|
||||
stream.on('limit', function(tweet) {
|
||||
node.status({fill:"grey", shape:"circle", text:"Rate limiting"});
|
||||
node.warn(RED._("twitter.errors.ratelimit"));
|
||||
});
|
||||
stream.on('error', function(tweet,rc) {
|
||||
if (rc == 420) {
|
||||
node.warn(RED._("twitter.errors.ratelimit"));
|
||||
node.status({fill:"grey", shape:"dot", text:"Rate limit hit"});
|
||||
//node.warn(RED._("twitter.errors.ratelimit"));
|
||||
} else {
|
||||
node.warn(RED._("twitter.errors.streamerror",{error:tweet.toString(),rc:rc}));
|
||||
}
|
||||
@ -241,12 +248,13 @@ module.exports = function(RED) {
|
||||
node.status({fill:"yellow", shape:"ring", text:RED._("twitter.warn.waiting")});
|
||||
}
|
||||
else {
|
||||
node.status({fill:"green", shape:"dot", text:node.tags});
|
||||
setupStream();
|
||||
}
|
||||
node.on("input", function(msg) {
|
||||
if (this.tags === '') {
|
||||
if (this.stream) { this.stream.destroy(); }
|
||||
if (msg.payload !== "") {
|
||||
if ((typeof msg.payload === "string") && (msg.payload !== "")) {
|
||||
st = { track:[msg.payload] };
|
||||
setupStream();
|
||||
node.status({fill:"green", shape:"dot", text:msg.payload});
|
||||
@ -257,7 +265,6 @@ module.exports = function(RED) {
|
||||
}
|
||||
//We shouldn't get into this state, but just incase, check for it
|
||||
else {
|
||||
// node.warn("msg.payload passed in, but tag config is not blank, defaulting to tag config");
|
||||
node.status({fill:"green", shape:"dot", text:node.tags});
|
||||
}
|
||||
});
|
||||
@ -266,7 +273,8 @@ module.exports = function(RED) {
|
||||
node.error(err);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
this.error(RED._("twitter.errors.missingcredentials"));
|
||||
}
|
||||
|
||||
|
@ -6,6 +6,7 @@
|
||||
"for": "for",
|
||||
"user": "User",
|
||||
"dmslabel": "DMs",
|
||||
"followers": "user stream tweets",
|
||||
"tweetslabel": "tweets",
|
||||
"clickhere": "Click here to authenticate with Twitter."
|
||||
},
|
||||
@ -15,11 +16,11 @@
|
||||
},
|
||||
"search": {
|
||||
"public": "all public tweets",
|
||||
"follow": "the tweets of who you follow",
|
||||
"follow": "the tweets of user stream",
|
||||
"user": "the tweets of specific users",
|
||||
"direct": "your direct messages"
|
||||
},
|
||||
"tip": "Tip: Use commas without spaces between multiple search terms. Comma = OR, Space = AND.<br/>The Twitter API WILL NOT deliver 100% of all tweets.<br/>Tweets of who you follow will include their retweets and favourites.",
|
||||
"tip": "Tip: Use commas without spaces between multiple search terms. Comma = OR, Space = AND.<br/>The Twitter API WILL NOT deliver 100% of all tweets.<br/>Tweets of who you follow will include their retweets and favourites.<br/><br/>Leave <b>for</b> blank to set using msg.payload.",
|
||||
"status": {
|
||||
"using-geo": "Using geo location: __location__",
|
||||
"tweeting": "tweeting",
|
||||
@ -27,7 +28,7 @@
|
||||
},
|
||||
"warn": {
|
||||
"nousers":"User option selected but no users specified",
|
||||
"waiting":"Waiting for search term"
|
||||
"waiting":"Waiting to search"
|
||||
},
|
||||
"errors": {
|
||||
"ratelimit":"tweet rate limit hit",
|
||||
@ -38,7 +39,6 @@
|
||||
"truncated":"truncated tweet greater than 140 characters",
|
||||
"sendfail":"send tweet failed: __error__",
|
||||
"nopayload":"no payload to tweet",
|
||||
|
||||
"oauthbroke":"something in twitter oauth broke.",
|
||||
"oautherror": "<html><head></head><body><p>Something went wrong with the authentication process. The following error was returned:</p><p><b>__statusCode__</b>: __errorData__</p><p>One known cause of this type of failure is if the clock is wrong on system running Node-RED</p></body></html>",
|
||||
"authorized": "<html><head></head><body><p>Authorised - you can close this window and return to Node-RED</p></body></html>"
|
||||
|
Loading…
Reference in New Issue
Block a user