thelounge/src/server.js

159 lines
3.1 KiB
JavaScript
Raw Normal View History

var _ = require("lodash");
2014-10-03 11:57:35 +02:00
var bcrypt = require("bcrypt-nodejs");
var Client = require("./client");
var ClientManager = require("./clientManager");
2014-09-27 00:12:53 +02:00
var express = require("express");
var fs = require("fs");
var io = require("socket.io");
var Helper = require("./helper");
2014-10-04 01:33:44 +02:00
var config = {};
var sockets = null;
var manager = new ClientManager();
module.exports = function(port, host, isPublic) {
2014-10-04 01:33:44 +02:00
config = Helper.getConfig();
2014-08-17 15:10:27 +02:00
config.port = port;
config.host = host;
2014-08-17 15:10:27 +02:00
config.public = isPublic;
2014-09-27 00:12:53 +02:00
var app = express()
.use(index)
2014-10-04 01:33:44 +02:00
.use(express.static("client"));
2014-09-27 01:26:21 +02:00
var server = null;
var https = config.https || {};
var protocol = https.enable ? "https" : "http";
if (!https.enable){
server = require("http");
server = server.createServer(app).listen(port, host);
} else {
server = require("https");
server = server.createServer({
key: fs.readFileSync(https.key),
cert: fs.readFileSync(https.certificate)
}, app).listen(port, host)
}
sockets = io(server);
sockets.on("connect", function(socket) {
if (config.public) {
auth.call(socket);
} else {
init(socket);
}
});
2014-09-25 00:23:54 +02:00
manager.sockets = sockets;
console.log("");
2014-09-27 01:26:21 +02:00
console.log("Shout is now running on " + protocol + "://" + config.host + ":" + config.port + "/");
console.log("Press ctrl-c to stop");
console.log("");
if (!config.public) {
2014-09-25 00:23:54 +02:00
manager.loadUsers();
if (config.autoload) {
manager.autoload();
}
}
};
function index(req, res, next) {
if (req.url != "/") return next();
return fs.readFile("client/index.html", "utf-8", function(err, file) {
var data = _.merge(
require("../package.json"),
config
);
res.setHeader("Content-Type", "text/html");
res.writeHead(200);
res.end(_.template(
file,
data
));
});
}
2014-09-15 23:13:03 +02:00
function init(socket, client, token) {
if (!client) {
socket.emit("auth");
socket.on("auth", auth);
} else {
socket.on(
"input",
function(data) {
2014-09-09 21:31:23 +02:00
client.input(data);
}
);
socket.on(
2014-09-10 21:23:56 +02:00
"more",
function(data) {
2014-09-10 21:23:56 +02:00
client.more(data);
}
);
socket.on(
"conn",
function(data) {
client.connect(data);
}
);
socket.on(
"open",
function(data) {
client.open(data);
}
2014-09-24 21:42:36 +02:00
);
socket.on(
"sort",
function(data) {
client.sort(data);
}
);
socket.join(client.id);
socket.emit("init", {
active: client.activeChannel,
2014-09-15 23:13:03 +02:00
networks: client.networks,
token: token || ""
});
}
}
function auth(data) {
var socket = this;
if (config.public) {
var client = new Client(sockets);
manager.clients.push(client);
socket.on("disconnect", function() {
manager.clients = _.without(manager.clients, client);
client.quit();
});
init(socket, client);
} else {
2014-09-11 22:37:16 +02:00
var success = false;
_.each(manager.clients, function(client) {
2014-09-15 23:13:03 +02:00
if (data.token) {
if (data.token == client.token) {
success = true;
}
} else if (client.config.user == data.user) {
2014-09-14 21:13:34 +02:00
if (bcrypt.compareSync(data.password || "", client.config.password)) {
2014-09-11 22:37:16 +02:00
success = true;
}
}
2014-09-15 23:13:03 +02:00
if (success) {
var token;
if (data.remember || data.token) {
token = client.token;
}
init(socket, client, token);
2014-09-16 19:42:49 +02:00
return false;
2014-09-15 23:13:03 +02:00
}
});
if (!success) {
2014-10-08 22:16:10 +02:00
socket.emit("auth");
}
}
}