diff options
author | lassulus <lassulus@lassul.us> | 2017-09-06 11:07:59 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-09-06 11:07:59 +0200 |
commit | 428a5f037ef8a5d6b0ef5bc0ea74dcd458fd5b16 (patch) | |
tree | 0bcc67e7d0f4ff22ca7e4840608f72015a49fbdd /makefu/2configs/deployment/wiki-irc-bot/wiki-output.patch | |
parent | 6218a259a9880368c71ecacddcf1e7c641bd5278 (diff) | |
parent | a46564bf986829cd7372020ed4962af15a5c5983 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/deployment/wiki-irc-bot/wiki-output.patch')
-rw-r--r-- | makefu/2configs/deployment/wiki-irc-bot/wiki-output.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/makefu/2configs/deployment/wiki-irc-bot/wiki-output.patch b/makefu/2configs/deployment/wiki-irc-bot/wiki-output.patch new file mode 100644 index 000000000..6e1e27853 --- /dev/null +++ b/makefu/2configs/deployment/wiki-irc-bot/wiki-output.patch @@ -0,0 +1,45 @@ +diff --git a/newsbot.js b/newsbot.js +index 42d0666..a284011 100644 +--- a/newsbot.js ++++ b/newsbot.js +@@ -92,8 +92,9 @@ function create_feedbot (nick, uri, channels) { + } + + function broadcast_new_item (item) { ++ console.log('Broadcasting item ',item.link) + return getShortLink(item.link, function (error, shortlink) { +- return broadcast(item.title + ' ' + shortlink) ++ return broadcast('"'+ item.title + '" edited by ' + item.author + ' ' + shortlink) + }) + } + +@@ -152,15 +153,18 @@ function create_feedbot (nick, uri, channels) { + + if (client.lastItems) { + items.forEach(function (item) { +- if (!client.lastItems.hasOwnProperty(item.title)) { ++ ++ if (!client.lastItems.hasOwnProperty(item.guid)) { + broadcast_new_item(item) ++ }else { ++ console.log("Item already seen:",item.guid) + } + }) + } + + client.lastItems = {} + items.forEach(function (item) { +- client.lastItems[item.title] = true ++ client.lastItems[item.guid] = true + }) + + return continue_loop() +@@ -199,6 +203,8 @@ function run_command (methodname, params, callback) { + } + + function getShortLink (link, callback) { ++ callback(null,link) ++ return + var form = new FormData() + try { + form.append('uri', link) |