2023-10-02 02:11:25 +00:00
|
|
|
|
var config = require('./config/default.json');
|
2023-10-02 02:11:23 +00:00
|
|
|
|
var irc = require("irc");
|
|
|
|
|
var fs = require("fs");
|
|
|
|
|
var readline = require('readline');
|
|
|
|
|
const { Worker } = require('worker_threads');
|
|
|
|
|
//var randomWords = require('better-random-words');
|
|
|
|
|
|
2023-10-02 02:11:25 +00:00
|
|
|
|
warningMsg = '['+config.colours.warning+'WARNING]'
|
|
|
|
|
errorMsg = '['+config.colours.error+'ERROR]'
|
|
|
|
|
|
2023-10-02 02:11:25 +00:00
|
|
|
|
var bot = new irc.Client(config.irc.server, config.irc.nickname, {
|
|
|
|
|
channels: config.irc.channels,
|
|
|
|
|
secure: config.irc.ssl,
|
|
|
|
|
port: config.irc.port,
|
|
|
|
|
autoRejoin: config.irc.autorejoin,
|
|
|
|
|
userName: config.irc.username,
|
|
|
|
|
realName: config.irc.realname,
|
|
|
|
|
floodProtection: config.irc.floodprotection,
|
|
|
|
|
floodProtectionDelay: config.irc.floodprotectiondelay
|
2023-10-02 02:11:23 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const timer = ms => new Promise(res => setTimeout(res, ms))
|
|
|
|
|
|
|
|
|
|
async function help(chan, sub) {
|
|
|
|
|
if (sub === undefined) {
|
|
|
|
|
var sub = "default"
|
|
|
|
|
}
|
|
|
|
|
if (sub === "default") {
|
2023-10-02 02:11:24 +00:00
|
|
|
|
bot.say(chan, ' ____ ___ ___ ____________ _________ __')
|
|
|
|
|
bot.say(chan, ' / __ `__ \\/ _ \\/ ___/ ___/ / / / ___/ / / /')
|
|
|
|
|
bot.say(chan, ' / / / / / / __/ / / /__/ /_/ / / / /_/ / ')
|
|
|
|
|
bot.say(chan, '/_/ /_/ /_/\\___/_/ \\___/\\__,_/_/ \\__, / ')
|
|
|
|
|
bot.say(chan, ' /____/ ')
|
2023-10-02 02:11:23 +00:00
|
|
|
|
bot.say(chan, 'Mercury - https://git.supernets.org/hogwart7/mercury')
|
2023-10-02 02:11:24 +00:00
|
|
|
|
bot.say(chan, 'm!feed [FEED] [ENTRIES] - Return the last x amount of entries from any RSS feed')
|
2023-10-02 02:11:24 +00:00
|
|
|
|
bot.say(chan, "m!twitter [USER] [ENTRIES] - Return the last x amount of tweets from a particular user")
|
2023-10-02 02:11:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-02 02:11:24 +00:00
|
|
|
|
async function feed(chan, provfeed, n) {
|
|
|
|
|
if (provfeed === undefined) {
|
2023-10-02 02:11:25 +00:00
|
|
|
|
bot.say(chan, errorMsg+" No feed has been provided.")
|
|
|
|
|
return;
|
2023-10-02 02:11:23 +00:00
|
|
|
|
}
|
2023-10-02 02:11:24 +00:00
|
|
|
|
if (n === undefined) {
|
2023-10-02 02:11:25 +00:00
|
|
|
|
var n = config.feed.default_amount;
|
2023-10-02 02:11:23 +00:00
|
|
|
|
}
|
2023-10-02 02:11:24 +00:00
|
|
|
|
const worker = new Worker('./commands/feed.js', {
|
|
|
|
|
workerData: {
|
|
|
|
|
provfeed,
|
|
|
|
|
n
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
worker.once('message', (string) => {
|
|
|
|
|
console.log('Received output from last5 worker, posting.');
|
|
|
|
|
bot.say(chan, string);
|
|
|
|
|
});
|
2023-10-02 02:11:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-02 02:11:24 +00:00
|
|
|
|
async function twitter(chan, provfeed, n) {
|
|
|
|
|
if (provfeed === undefined) {
|
2023-10-02 02:11:25 +00:00
|
|
|
|
bot.say(chan, errorMsg+" No account has been provided.")
|
|
|
|
|
return;
|
2023-10-02 02:11:24 +00:00
|
|
|
|
}
|
|
|
|
|
if (n === undefined) {
|
2023-10-02 02:11:25 +00:00
|
|
|
|
var n = config.twitter.default_amount;
|
2023-10-02 02:11:24 +00:00
|
|
|
|
}
|
|
|
|
|
const worker = new Worker('./commands/twitter.js', {
|
|
|
|
|
workerData: {
|
|
|
|
|
provfeed,
|
|
|
|
|
n
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
worker.once('message', (string) => {
|
|
|
|
|
console.log('Received output from twitter worker, posting.');
|
|
|
|
|
bot.say(chan, string);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-02 02:11:23 +00:00
|
|
|
|
bot.addListener('message', function(nick, to, text, from) {
|
|
|
|
|
var args = text.split(' ');
|
2023-10-02 02:11:25 +00:00
|
|
|
|
if (args[0] === config.irc.prefix+'help') {
|
2023-10-02 02:11:23 +00:00
|
|
|
|
help(to, args[1]);
|
2023-10-02 02:11:25 +00:00
|
|
|
|
} else if (args[0] === config.irc.prefix+'feed') {
|
2023-10-02 02:11:24 +00:00
|
|
|
|
feed(to, args[1], args[2]);
|
2023-10-02 02:11:25 +00:00
|
|
|
|
} else if (args[0] === config.irc.prefix+'twitter') {
|
2023-10-02 02:11:24 +00:00
|
|
|
|
twitter(to, args[1], args[2])
|
2023-10-02 02:11:25 +00:00
|
|
|
|
} else if (args[0] === config.irc.prefix+'set') {
|
|
|
|
|
|
2023-10-02 02:11:23 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
bot.addListener('error', function(message) {
|
|
|
|
|
console.log('error: ', message);
|
|
|
|
|
});
|
|
|
|
|
|
2023-10-02 02:11:24 +00:00
|
|
|
|
console.log('Starting Mercury');
|