This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 271
/
Copy pathserver.js
168 lines (153 loc) · 3.37 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
var _ = require("lodash");
var bcrypt = require("bcrypt-nodejs");
var Client = require("./client");
var ClientManager = require("./clientManager");
var express = require("express");
var fs = require("fs");
var io = require("socket.io");
var Helper = require("./helper");
var config = {};
var sockets = null;
var manager = new ClientManager();
module.exports = function(options) {
config = Helper.getConfig();
config = _.extend(config, options);
var app = express()
.use(index)
.use(express.static("client"));
app.enable("trust proxy");
var server = null;
var https = config.https || {};
var protocol = https.enable ? "https" : "http";
var port = config.port;
var host = config.host;
var transports = config.transports || ["websocket", "polling"];
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);
}
if ((config.identd || {}).enable) {
require("./identd").start(config.identd.port);
}
sockets = io(server, {
transports: transports
});
sockets.on("connect", function(socket) {
if (config.public) {
auth.call(socket);
} else {
init(socket);
}
});
manager.sockets = sockets;
console.log("");
console.log("Shout is now running on " + protocol + "://" + config.host + ":" + config.port + "/");
console.log("Press ctrl-c to stop");
console.log("");
if (!config.public) {
manager.loadUsers();
if (config.autoload) {
manager.autoload();
}
}
};
function index(req, res, next) {
if (req.url.split("?")[0] !== "/") 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
));
});
}
function init(socket, client, token) {
if (!client) {
socket.emit("auth");
socket.on("auth", auth);
} else {
socket.on(
"input",
function(data) {
client.input(data);
}
);
socket.on(
"more",
function(data) {
client.more(data);
}
);
socket.on(
"conn",
function(data) {
client.connect(data);
}
);
socket.on(
"open",
function(data) {
client.open(data);
}
);
socket.on(
"sort",
function(data) {
client.sort(data);
}
);
socket.join(client.id);
socket.emit("init", {
active: client.activeChannel,
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 {
var success = false;
_.each(manager.clients, function(client) {
if (data.token) {
if (data.token === client.token) {
success = true;
}
} else if (client.config.user === data.user) {
if (bcrypt.compareSync(data.password || "", client.config.password)) {
success = true;
}
}
if (success) {
var token;
if (data.remember || data.token) {
token = client.token;
}
init(socket, client, token);
return false;
}
});
if (!success) {
socket.emit("auth");
}
}
}