thelounge/src/plugins/irc-events/whois.js

42 lines
840 B
JavaScript
Raw Normal View History

"use strict";
2014-09-13 23:29:45 +02:00
var Chan = require("../../models/chan");
var Msg = require("../../models/msg");
module.exports = function(irc, network) {
var client = this;
2016-03-09 09:27:01 +01:00
irc.on("whois", function(data) {
2016-03-20 15:28:47 +01:00
var chan = network.getChannel(data.nick);
2014-09-13 23:29:45 +02:00
if (typeof chan === "undefined") {
chan = new Chan({
type: Chan.Type.QUERY,
name: data.nick,
2014-09-13 23:29:45 +02:00
});
network.channels.push(chan);
client.emit("join", {
shouldOpen: true,
2014-09-13 23:29:45 +02:00
network: network.id,
chan: chan,
2014-09-13 23:29:45 +02:00
});
}
2016-03-09 09:27:01 +01:00
var msg;
if (data.error) {
msg = new Msg({
type: Msg.Type.ERROR,
text: "No such nick: " + data.nick,
2016-03-09 09:27:01 +01:00
});
} else {
// Absolute datetime in milliseconds since nick is idle
data.idleTime = Date.now() - data.idle * 1000;
2016-03-09 09:27:01 +01:00
msg = new Msg({
type: Msg.Type.WHOIS,
whois: data,
2016-03-09 09:27:01 +01:00
});
}
chan.pushMessage(client, msg);
2014-09-13 23:29:45 +02:00
});
};