This commit is contained in:
Flummi
2017-11-09 15:34:21 +01:00
parent e10c453716
commit 2973e3178f
6 changed files with 58 additions and 122 deletions

View File

@ -12,6 +12,7 @@ class irc {
this.options.port = this.options.port || 6667;
this.options.ssl = this.options.ssl || false;
this.options.selfSigned = this.options.selfSigned || false;
this.options.sasl = this.options.sasl || false;
this.network = this.options.network || "test";
this.nickname = this.options.nickname || "test";
this.username = this.options.username || "test";
@ -36,7 +37,7 @@ class irc {
case "001": // welcome
this.server.me = msg.params[0];
this.join(this.options.channels);
this.emit('connected', msg.params[1]);
this.emit('data', ['connected', msg.params[1]]);
break;
case "372": // motd
this.server.motd += `${msg.params[1]}\n`;
@ -46,7 +47,7 @@ class irc {
break;
case "376": // motd_end
this.server.motd += `${msg.params[1]}\n`;
this.emit('motd', this.server.motd);
this.emit('data', ['motd', this.server.motd]);
break;
case "464": // Password required
if (this.options.password.length > 0)
@ -56,10 +57,13 @@ class irc {
this.send("PONG ", msg.params.join``);
break;
case "PRIVMSG":
this.emit('message', this.reply(msg));
if (msg.params[1] === "\u0001VERSION\u0001")
this.emit('data', ['ctcp:version', this.reply(msg)]);
else
this.emit('data', ['message', this.reply(msg)]);
break;
case "NOTICE":
this.emit('notice', msg.params[1]);
this.emit('data', ['notice', msg.params[1]]);
break;
default:
console.log(msg);
@ -130,16 +134,10 @@ class irc {
};
}
join(channel) {
if(typeof channel === "object")
this.send(`JOIN ${channel.join(',')}`);
else
this.send(`JOIN ${channel}`);
this.send(`JOIN ${(typeof channel === "object") ? channel.join(',') : channel}`);
}
part(channel, msg=false) {
if (typeof channel === "object")
this.send(`PART ${channel.join(',')}${msg ? " " + msg : ""}`);
else
this.send(`PART ${channel}${msg ? " " + msg : ""}`);
this.send(`PART ${(typeof channel === "object") ? channel.join(',') : channel}${msg ? " " + msg : "part"}`);
}
}

View File

@ -10,17 +10,17 @@ class tg {
this.options.polling = options.polling || true;
this.client = new tgapi(this.options.token, this.options);
this.client.on('message', msg => {
let time = ~~(Date.now() / 1000);
if (msg.date >= (time - 10))
this.emit('message', this.reply(msg));
this.client.onText(/.*/, msg => {
if (msg.date >= (~~(Date.now() / 1000) - 10)) {
msg.text = msg.text.replace(/^\//g, "\.");
this.emit('data', ['message', this.reply(msg)]);
}
});
}
send(id, msg) {
this.client.sendMessage(id, msg);
}
reply(tmp) {
console.log("Telegram", tmp);
return {
type: "tg",
network: "Telegram",
@ -34,13 +34,13 @@ class tg {
message: tmp.text,
time: tmp.date,
raw: tmp,
reply: function (msg) {
reply: msg => {
this.send(tmp.chat.id, msg);
},
replyAction: function (msg) {
this.send(tmp.chat.id, msg);
replyAction: msg => {
this.send(tmp.chat.id, `Uwe ${msg}`);
},
replyNotice: function (msg) {
replyNotice: msg => {
this.send(tmp.chat.id, msg);
}
};

View File

@ -1,13 +0,0 @@
import { cfg } from './cfg.js';
const loadEvents = () => {
var files = fs.readdirSync(__dirname+'/events/');
files.forEach(file => {
if(file.substr(-3, 3) === '.js') {
console.log('Loading event', file);
require(__dirname+'/events/' + file)(self);
}
});
};
export { loadEvents };

View File

@ -1,61 +1,4 @@
import mysql from 'nodejs-mysql';
const sql = mysql.getInstance( require(`${__dirname}/../../cfg/mysql.json`) );
export default sql;
/*var mysql = require('mysql');
var self = Cfg.prototype;
module.exports = Cfg;
var haDC = () => {
self.sql = mysql.createConnection(require(__dirname+'/../cfg/mysql.json'));
self.sql.connect(err => {
if(err) setTimeout(haDC, 2000);
});
self.sql.on('error', (err) => {
if(err.code === 'PROTOCOL_CONNECTION_LOST') haDC();
});
};
haDC();
function Cfg() {
self.cfg = {};
}
self.read = (kat, key) => {
return new Promise((resolve, reject) => {
var out = {
irc: {},
main: {},
websrv: {},
trigger: {}
};
self.sql.query("select * from `cfg`" + (kat?" where `class` = '"+kat+"'"+(key?" && `key` = '"+key+"'":""):""), (err, rows) => {
if(err || rows.length < 1)
reject( err );
else {
rows.forEach(e => {
out[e.class][e.key] = ((type, value) => {
switch(type) {
case 'string':
return value;
break;
case 'int':
return parseInt(value);
break;
case 'bool':
return (value === 'true')?true:false;
break;
case 'json':
return JSON.parse(value);
break;
}
})(e.type, e.value);
});
resolve(key?out[kat][key]:out);
}
});
});
};*/
export default sql;

View File

@ -1,16 +1,12 @@
import { cfg, read } from './cfg.js';
import { loadEvents } from './lib.js';
let irclib = require('./clients/irc.js');
let tglib = require('./clients/tg.js')
//let tglib = require('node-telegram-bot-api');
//const safeEval = require('safe-eval');
const irclib = require('./clients/irc.js');
const tglib = require('./clients/tg.js')
const util = require('util');
//const fs = require('fs');
//const ytdl = util.promisify(require('youtube-dl').getInfo);
var EventEmitter = require('events').EventEmitter;
let clients = [];
const EventEmitter = require('events').EventEmitter;
const clients = [];
const wrapper = function () {
for (let srv in cfg.client) {
@ -33,8 +29,8 @@ const wrapper = function () {
}
clients.forEach(client => {
client.client.on("message", e => {
this.emit('message', e);
client.client.on("data", e => {
this.emit(e[0], e[1]);
});
});
};