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

39 lines
875 B
JavaScript
Raw Normal View History

"use strict";
2014-09-13 23:29:45 +02:00
var _ = require("lodash");
var Msg = require("../../models/msg");
module.exports = function(irc, network) {
var client = this;
irc.on("part", function(data) {
2016-03-20 15:28:47 +01:00
var chan = network.getChannel(data.channel);
2014-09-13 23:29:45 +02:00
if (typeof chan === "undefined") {
return;
}
2014-10-04 14:31:45 +02:00
var from = data.nick;
if (from === irc.user.nick) {
2014-09-13 23:29:45 +02:00
network.channels = _.without(network.channels, chan);
chan.destroy();
2014-10-12 01:59:01 +02:00
client.save();
2014-09-13 23:29:45 +02:00
client.emit("part", {
chan: chan.id,
2014-09-13 23:29:45 +02:00
});
} else {
2017-07-11 16:30:47 +02:00
const user = chan.findUser(from);
2014-09-13 23:29:45 +02:00
chan.users = _.without(chan.users, user);
client.emit("users", {
chan: chan.id,
2014-09-13 23:29:45 +02:00
});
var msg = new Msg({
type: Msg.Type.PART,
2016-03-12 10:36:55 +01:00
time: data.time,
2016-03-08 14:36:25 +01:00
mode: (user && user.mode) || "",
2016-02-23 17:22:41 +01:00
text: data.message || "",
hostmask: data.ident + "@" + data.hostname,
from: from,
2014-09-13 23:29:45 +02:00
});
chan.pushMessage(client, msg);
2014-09-13 23:29:45 +02:00
}
});
};