2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2017-04-01 08:33:17 +00:00
|
|
|
const _ = require("lodash");
|
|
|
|
const Chan = require("../../models/chan");
|
|
|
|
const Msg = require("../../models/msg");
|
2014-09-13 21:29:45 +00:00
|
|
|
|
|
|
|
module.exports = function(irc, network) {
|
2017-04-01 08:33:17 +00:00
|
|
|
const client = this;
|
|
|
|
|
|
|
|
// The following saves the channel key based on channel mode instead of
|
|
|
|
// extracting it from `/join #channel key`. This lets us not have to
|
|
|
|
// temporarily store the key until successful join, but also saves the key
|
|
|
|
// if a key is set or changed while being on the channel.
|
|
|
|
irc.on("channel info", function(data) {
|
|
|
|
if (!data.modes) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const targetChan = network.getChannel(data.channel);
|
|
|
|
if (typeof targetChan === "undefined") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
data.modes.forEach(mode => {
|
|
|
|
const text = mode.mode;
|
|
|
|
const add = text[0] === "+";
|
|
|
|
const char = text[1];
|
|
|
|
|
|
|
|
if (char === "k") {
|
|
|
|
targetChan.key = add ? mode.param : "";
|
|
|
|
client.save();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-09-13 21:29:45 +00:00
|
|
|
irc.on("mode", function(data) {
|
2017-04-01 08:33:17 +00:00
|
|
|
let targetChan;
|
2016-03-08 09:42:38 +00:00
|
|
|
|
|
|
|
if (data.target === irc.user.nick) {
|
|
|
|
targetChan = network.channels[0];
|
|
|
|
} else {
|
2016-03-20 14:28:47 +00:00
|
|
|
targetChan = network.getChannel(data.target);
|
2016-03-08 09:42:38 +00:00
|
|
|
if (typeof targetChan === "undefined") {
|
|
|
|
return;
|
2014-09-13 21:29:45 +00:00
|
|
|
}
|
2016-03-08 09:42:38 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 08:33:17 +00:00
|
|
|
let usersUpdated;
|
|
|
|
let userModeSortPriority = {};
|
|
|
|
const supportsMultiPrefix = network.irc.network.cap.isEnabled("multi-prefix");
|
2016-09-24 16:34:35 +00:00
|
|
|
|
2016-10-12 07:55:40 +00:00
|
|
|
irc.network.options.PREFIX.forEach((prefix, index) => {
|
2016-09-24 16:34:35 +00:00
|
|
|
userModeSortPriority[prefix.symbol] = index;
|
|
|
|
});
|
2016-03-16 20:54:11 +00:00
|
|
|
|
2017-04-01 08:33:17 +00:00
|
|
|
data.modes.forEach(mode => {
|
|
|
|
let text = mode.mode;
|
|
|
|
const add = text[0] === "+";
|
|
|
|
const char = text[1];
|
|
|
|
|
|
|
|
if (char === "k") {
|
|
|
|
targetChan.key = add ? mode.param : "";
|
|
|
|
client.save();
|
|
|
|
}
|
2016-09-24 16:34:35 +00:00
|
|
|
|
2016-03-08 09:42:38 +00:00
|
|
|
if (mode.param) {
|
|
|
|
text += " " + mode.param;
|
|
|
|
}
|
|
|
|
|
2017-04-01 08:33:17 +00:00
|
|
|
const msg = new Msg({
|
2016-03-12 09:36:55 +00:00
|
|
|
time: data.time,
|
2014-09-13 21:29:45 +00:00
|
|
|
type: Msg.Type.MODE,
|
2016-03-08 09:42:38 +00:00
|
|
|
mode: (targetChan.type !== Chan.Type.LOBBY && targetChan.getMode(data.nick)) || "",
|
|
|
|
from: data.nick,
|
|
|
|
text: text,
|
|
|
|
self: data.nick === irc.user.nick
|
2014-09-13 21:29:45 +00:00
|
|
|
});
|
2016-04-19 10:20:18 +00:00
|
|
|
targetChan.pushMessage(client, msg);
|
2016-09-24 16:34:35 +00:00
|
|
|
|
|
|
|
if (!mode.param) {
|
2017-04-01 08:33:17 +00:00
|
|
|
return;
|
2016-09-24 16:34:35 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 08:33:17 +00:00
|
|
|
const user = _.find(targetChan.users, {name: mode.param});
|
2016-09-24 16:34:35 +00:00
|
|
|
if (!user) {
|
2017-04-01 08:33:17 +00:00
|
|
|
return;
|
2016-09-24 16:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
usersUpdated = true;
|
|
|
|
|
|
|
|
if (!supportsMultiPrefix) {
|
2017-04-01 08:33:17 +00:00
|
|
|
return;
|
2016-09-24 16:34:35 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 08:33:17 +00:00
|
|
|
const changedMode = network.prefixLookup[char];
|
2016-09-24 16:34:35 +00:00
|
|
|
|
|
|
|
if (!add) {
|
|
|
|
_.pull(user.modes, changedMode);
|
|
|
|
} else if (user.modes.indexOf(changedMode) === -1) {
|
|
|
|
user.modes.push(changedMode);
|
|
|
|
user.modes.sort(function(a, b) {
|
|
|
|
return userModeSortPriority[a] - userModeSortPriority[b];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: remove in future
|
|
|
|
user.mode = (user.modes && user.modes[0]) || "";
|
2017-04-01 08:33:17 +00:00
|
|
|
});
|
2016-03-16 20:54:11 +00:00
|
|
|
|
2016-09-24 16:34:35 +00:00
|
|
|
if (!usersUpdated) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!supportsMultiPrefix) {
|
2016-03-16 20:54:11 +00:00
|
|
|
// TODO: This is horrible
|
|
|
|
irc.raw("NAMES", data.target);
|
2016-09-24 16:34:35 +00:00
|
|
|
} else {
|
|
|
|
targetChan.sortUsers(irc);
|
|
|
|
|
|
|
|
client.emit("users", {
|
|
|
|
chan: targetChan.id
|
|
|
|
});
|
2016-03-16 20:54:11 +00:00
|
|
|
}
|
2014-09-13 21:29:45 +00:00
|
|
|
});
|
|
|
|
};
|