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

66 lines
1.4 KiB
JavaScript
Raw Normal View History

2014-09-13 17:29:45 -04: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-09-30 18:39:57 -04:00
if (data.message.indexOf("\u0001") === 0 && data.message.substring(0, 7) !== "\u0001ACTION") {
2014-09-27 11:46:32 -04:00
// Hide ctcp messages.
return;
}
2014-09-13 17:29:45 -04:00
var target = data.to;
2015-09-30 18:39:57 -04:00
if (target.toLowerCase() === irc.me.toLowerCase()) {
2014-09-13 17:29:45 -04:00
target = data.from;
}
2016-02-14 12:09:51 -05:00
var chan = _.find(network.channels, {name: target});
2014-09-13 17:29:45 -04: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
});
}
2014-09-13 17:29:45 -04:00
var type = "";
var text = data.message;
if (text.split(" ")[0] === "\u0001ACTION") {
type = Msg.Type.ACTION;
text = text.replace(/^\u0001ACTION|\u0001$/g, "");
2014-09-13 17:29:45 -04:00
}
2014-09-13 17:29:45 -04:00
text.split(" ").forEach(function(w) {
2014-12-31 09:02:12 -05:00
if (w.replace(/^@/, "").toLowerCase().indexOf(irc.me.toLowerCase()) === 0) type += " highlight";
2014-09-13 17:29:45 -04:00
});
2014-09-14 14:49:42 -04:00
var self = false;
2015-09-30 18:39:57 -04:00
if (data.from.toLowerCase() === irc.me.toLowerCase()) {
2014-09-14 14:49:42 -04:00
self = true;
}
2015-09-30 18:39:57 -04:00
if (chan.id !== client.activeChannel) {
chan.unread++;
}
2014-10-04 08:31:45 -04:00
var name = data.from;
2014-09-13 17:29:45 -04:00
var msg = new Msg({
type: type || Msg.Type.MESSAGE,
2014-10-04 08:31:45 -04:00
mode: chan.getMode(name),
from: name,
text: text,
2014-09-14 14:49:42 -04:00
self: self
2014-09-13 17:29:45 -04:00
});
chan.messages.push(msg);
client.emit("msg", {
chan: chan.id,
msg: msg
});
});
};