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

71 lines
1.6 KiB
JavaScript
Raw Normal View History

2014-09-13 23:29:45 +02:00
var _ = require("lodash");
var Chan = require("../../models/chan");
var Msg = require("../../models/msg");
module.exports = function(irc, network) {
var client = this;
irc.on("message", function(data) {
2015-10-01 00:39:57 +02:00
if (data.message.indexOf("\u0001") === 0 && data.message.substring(0, 7) !== "\u0001ACTION") {
2014-09-27 17:46:32 +02:00
// Hide ctcp messages.
return;
}
2014-09-13 23:29:45 +02:00
var target = data.to;
2015-10-01 00:39:57 +02:00
if (target.toLowerCase() === irc.me.toLowerCase()) {
2014-09-13 23:29:45 +02:00
target = data.from;
}
2016-02-14 18:09:51 +01:00
var chan = _.find(network.channels, {name: target});
2014-09-13 23:29:45 +02:00
if (typeof chan === "undefined") {
chan = new Chan({
type: Chan.Type.QUERY,
name: data.from
});
network.channels.push(chan);
client.emit("join", {
network: network.id,
chan: chan
});
}
2016-02-23 11:38:51 +01:00
var type = Msg.Type.MESSAGE;
2014-09-13 23:29:45 +02:00
var text = data.message;
2016-02-23 11:38:51 +01:00
var textSplit = text.split(" ");
if (textSplit[0] === "\u0001ACTION") {
2014-09-13 23:29:45 +02:00
type = Msg.Type.ACTION;
text = text.replace(/^\u0001ACTION|\u0001$/g, "");
2014-09-13 23:29:45 +02:00
}
var self = (data.from.toLowerCase() === irc.me.toLowerCase());
// Self messages are never highlighted
// Non-self messages are highlighted as soon as the nick is detected
var highlight = !self && textSplit.some(function(w) {
return (w.replace(/^@/, "").toLowerCase().indexOf(irc.me.toLowerCase()) === 0);
});
2015-10-01 00:39:57 +02:00
if (chan.id !== client.activeChannel) {
chan.unread++;
if (highlight) {
chan.highlight = true;
}
}
2014-10-04 14:31:45 +02:00
var name = data.from;
2014-09-13 23:29:45 +02:00
var msg = new Msg({
2016-02-23 11:38:51 +01:00
type: type,
2014-10-04 14:31:45 +02:00
mode: chan.getMode(name),
from: name,
text: text,
2016-02-23 11:38:51 +01:00
self: self,
highlight: highlight
2014-09-13 23:29:45 +02:00
});
chan.messages.push(msg);
client.emit("msg", {
chan: chan.id,
msg: msg
});
});
};