2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2017-11-10 20:44:14 +00:00
|
|
|
const _ = require("lodash");
|
|
|
|
const Msg = require("../../models/msg");
|
2014-09-13 21:29:45 +00:00
|
|
|
|
|
|
|
module.exports = function(irc, network) {
|
2017-11-10 20:44:14 +00:00
|
|
|
const client = this;
|
|
|
|
|
2014-09-13 21:29:45 +00:00
|
|
|
irc.on("part", function(data) {
|
2017-11-10 20:44:14 +00:00
|
|
|
const chan = network.getChannel(data.channel);
|
|
|
|
|
2014-09-13 21:29:45 +00:00
|
|
|
if (typeof chan === "undefined") {
|
|
|
|
return;
|
|
|
|
}
|
2017-11-10 20:44:14 +00:00
|
|
|
|
|
|
|
if (data.nick === irc.user.nick) {
|
2014-09-13 21:29:45 +00:00
|
|
|
network.channels = _.without(network.channels, chan);
|
2017-08-11 12:02:58 +00:00
|
|
|
chan.destroy();
|
2014-10-11 23:59:01 +00:00
|
|
|
client.save();
|
2014-09-13 21:29:45 +00:00
|
|
|
client.emit("part", {
|
2017-11-15 06:35:15 +00:00
|
|
|
chan: chan.id,
|
2014-09-13 21:29:45 +00:00
|
|
|
});
|
|
|
|
} else {
|
2017-11-10 20:44:14 +00:00
|
|
|
const user = chan.getUser(data.nick);
|
|
|
|
|
|
|
|
const msg = new Msg({
|
2014-09-13 21:29:45 +00:00
|
|
|
type: Msg.Type.PART,
|
2016-03-12 09:36:55 +00:00
|
|
|
time: data.time,
|
2016-02-23 16:22:41 +00:00
|
|
|
text: data.message || "",
|
2016-03-08 09:26:43 +00:00
|
|
|
hostmask: data.ident + "@" + data.hostname,
|
2017-11-10 20:44:14 +00:00
|
|
|
from: user,
|
2014-09-13 21:29:45 +00:00
|
|
|
});
|
2016-04-19 10:20:18 +00:00
|
|
|
chan.pushMessage(client, msg);
|
2017-11-10 20:44:14 +00:00
|
|
|
|
2017-11-16 20:32:03 +00:00
|
|
|
chan.removeUser(user);
|
2017-11-10 20:44:14 +00:00
|
|
|
client.emit("users", {
|
|
|
|
chan: chan.id,
|
|
|
|
});
|
2014-09-13 21:29:45 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|