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

40 lines
742 B
JavaScript
Raw Normal View History

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,
2016-03-09 09:27:01 +01:00
name: data.nick
2014-09-13 23:29:45 +02:00
});
network.channels.push(chan);
client.emit("join", {
network: network.id,
chan: chan
});
}
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
});
} else {
msg = new Msg({
type: Msg.Type.WHOIS,
whois: data
});
}
2016-03-07 16:10:46 +01:00
chan.messages.push(msg);
client.emit("msg", {
chan: chan.id,
msg: msg
});
2014-09-13 23:29:45 +02:00
});
};