Shuo/lib/shout.js

71 lines
1.1 KiB
JavaScript
Raw Normal View History

2014-06-26 23:05:47 +00:00
var _ = require("lodash");
2014-06-29 01:07:38 +00:00
var Client = require("./models/client");
2014-06-26 23:05:47 +00:00
var config = require("../config") || {};
var http = require("connect");
var io = require("socket.io");
2014-06-26 16:14:45 +00:00
2014-06-26 23:05:47 +00:00
var sockets = null;
var clients = [];
2014-06-26 16:14:45 +00:00
2014-06-26 23:05:47 +00:00
var inputs = [
"action",
"invite",
"join",
"kick",
"mode",
"msg",
"nick",
"notice",
"part",
"quit",
"raw",
2014-06-27 00:47:36 +00:00
"server",
2014-06-26 23:05:47 +00:00
"topic",
"whois"
];
2014-06-26 16:14:45 +00:00
2014-06-26 23:05:47 +00:00
var events = [
"errors",
"join",
"kick",
"mode",
"motd",
"message",
"names",
"nick",
"notice",
"part",
"quit",
"topic",
"welcome",
"whois"
];
module.exports = function() {
sockets = io(http().use(http.static("client")).listen(config.port || 9000));
sockets.on("connection", function(socket) {
2014-06-29 01:07:38 +00:00
if (config.public) {
init(socket, new Client());
} else {
init(socket);
}
2014-06-26 23:05:47 +00:00
});
};
2014-06-29 01:07:38 +00:00
function init(socket, client) {
2014-06-26 23:05:47 +00:00
if (!client) {
2014-06-27 00:47:36 +00:00
socket.emit("auth");
socket.on("auth", auth);
2014-06-26 23:05:47 +00:00
} else {
2014-06-29 01:07:38 +00:00
socket.on("input", function(data) { input(client, data); });
socket.join(client.id);
socket.emit("init", {
networks: client.networks
});
2014-06-26 23:05:47 +00:00
}
};
2014-06-29 01:07:38 +00:00
function auth() {
2014-06-27 00:47:36 +00:00
var socket = this;
2014-06-26 16:14:45 +00:00
};