thelounge/lib/plugins/quit.js

30 lines
649 B
JavaScript
Raw Normal View History

2014-06-19 17:28:53 +02:00
var _ = require("lodash");
var Chan = require("../models/chan");
var Msg = require("../models/msg");
2014-06-23 19:28:36 +02:00
module.exports = function(slate, network) {
var client = this;
slate.on("quit", function(data) {
2014-06-19 17:28:53 +02:00
network.channels.forEach(function(chan) {
var user = _.findWhere(chan.users, {name: data.nick});
if (!user) {
return;
}
chan.users = _.without(chan.users, user);
2014-06-23 19:28:36 +02:00
client.emit("users", {
2014-06-19 17:28:53 +02:00
id: chan.id,
users: chan.users,
});
var msg = new Msg({
type: "quit",
from: data.nick,
});
chan.addMsg(msg);
2014-06-23 19:28:36 +02:00
client.emit("msg", {
2014-06-19 17:28:53 +02:00
id: chan.id,
msg: msg,
});
});
});
};