2022-09-08 17:48:53 +02:00
|
|
|
/* struct equipe
|
|
|
|
{
|
|
|
|
"name" : string,
|
|
|
|
"pos" : [lat : float, long : float],
|
|
|
|
"color" : int,
|
|
|
|
"socket" : socket
|
|
|
|
"shown" : bool
|
|
|
|
}
|
|
|
|
|
|
|
|
Les messages à transmettre par le client :
|
|
|
|
- geoLoc(position)
|
|
|
|
- changeColor(color)
|
|
|
|
- setName(id)
|
|
|
|
Les messages à transmettre par le serveur :
|
|
|
|
- moving(id, position)
|
|
|
|
- changeColor(id, color)
|
|
|
|
- setName(id, name)
|
|
|
|
*/
|
|
|
|
|
2022-09-13 13:59:20 +02:00
|
|
|
// Textes d'interaction avec les conscrits
|
|
|
|
var PWD_TRACKED = "tracked";
|
|
|
|
var PWD_TRACKER = "tracker";
|
2022-09-15 09:45:42 +02:00
|
|
|
var PWD_INVISIBLE = "invisible";
|
2022-09-14 17:11:04 +02:00
|
|
|
var MSG_BAD = "Code Incorrect";
|
2022-09-13 13:59:20 +02:00
|
|
|
var MSG_TRACKED = "Vous êtes maintenant traqué.e.s !"
|
|
|
|
var MSG_TRACKER = "Vous pouvez maintenant traquer !";
|
|
|
|
var MSG_INVISIBLE = "Les autres équipes ne peuvent plus vous voir !";
|
2022-09-14 18:46:12 +02:00
|
|
|
var invisible_delay = 3*60*1000;
|
2022-09-13 13:59:20 +02:00
|
|
|
|
2022-09-08 17:48:53 +02:00
|
|
|
var equipes = [];
|
2022-09-13 23:18:13 +02:00
|
|
|
var admins = [];
|
2022-09-14 17:11:04 +02:00
|
|
|
var invisi = {};
|
2022-09-08 17:48:53 +02:00
|
|
|
|
|
|
|
// require = include
|
2022-09-09 13:03:08 +02:00
|
|
|
var http = require('https');//require('http');
|
2022-09-08 17:48:53 +02:00
|
|
|
var url = require('url');
|
|
|
|
var fs = require('fs');
|
2022-09-12 13:49:35 +02:00
|
|
|
var config = require('./config.js');
|
2022-09-08 17:48:53 +02:00
|
|
|
|
|
|
|
console.log("Setup http server");
|
|
|
|
|
2022-09-09 13:03:08 +02:00
|
|
|
const option = {
|
2022-09-12 13:49:35 +02:00
|
|
|
key: fs.readFileSync(config.key),
|
|
|
|
cert: fs.readFileSync(config.cert)
|
2022-09-09 13:03:08 +02:00
|
|
|
};
|
|
|
|
|
2022-09-08 17:48:53 +02:00
|
|
|
// The server
|
2022-09-09 13:03:08 +02:00
|
|
|
var server = http.createServer(option, function(req, res){
|
2022-09-08 17:48:53 +02:00
|
|
|
var q = url.parse(req.url, true);
|
2023-06-05 17:51:32 +02:00
|
|
|
//
|
|
|
|
// todo : utiliser ?id pour changer des chose dans la page, ou faire ça en fesant croire
|
|
|
|
// qu'il y a plein de fichiers sous le dossier "conscrit", alors que c'est juste une page html;
|
|
|
|
// la page conscrit seul renvoyant 404 ou random page erreur "utilise les lien qu'on donne petit conscrit"
|
|
|
|
//
|
2022-09-12 13:49:35 +02:00
|
|
|
var filename = "static" + q.pathname;
|
|
|
|
if(q.pathname.includes(".."))
|
|
|
|
filename = "static/dotdot.html";
|
2023-06-05 17:51:32 +02:00
|
|
|
|
2022-09-08 17:48:53 +02:00
|
|
|
if(q.pathname == "/")
|
2022-09-13 13:59:20 +02:00
|
|
|
filename = "static/conscrit.html";
|
2023-06-05 17:51:32 +02:00
|
|
|
|
|
|
|
if(q.pathname == "/log"){
|
|
|
|
//position logging
|
|
|
|
console.log("team " + q.query.id + " moved to (" + q.query.lat + "," + q.query.lon + ")");
|
|
|
|
|
|
|
|
//current impl (to be changed)
|
|
|
|
var socket = equipes[q.query.id];
|
|
|
|
var position = [q.query.lat, q.query.lon];
|
|
|
|
socket.position = position;
|
|
|
|
if(socket.shown)
|
|
|
|
for(i in equipes)
|
|
|
|
equipes[i].emit('moving', {"id": socket.id, "position": position});
|
|
|
|
else {
|
|
|
|
socket.emit('moving', {"id": socket.id, "position": position});
|
|
|
|
for(i in admins)
|
|
|
|
admins[i].emit('moving', {"id": socket.id, "position": position})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//return empty page
|
|
|
|
res.writeHead(200, {'Content-Type': 'text/html'});
|
|
|
|
return res.end();
|
|
|
|
}
|
2022-09-08 17:48:53 +02:00
|
|
|
fs.readFile(filename, function(err, data) {
|
|
|
|
if (err) {
|
2022-09-12 14:05:17 +02:00
|
|
|
console.log("404: ", q.pathname, filename);
|
|
|
|
res.writeHead(404, {'Content-Type': 'text/html'});
|
2022-09-08 17:48:53 +02:00
|
|
|
return res.end("404 Not Found");
|
|
|
|
}
|
|
|
|
res.writeHead(200, {'Content-Type': 'text/html'});
|
|
|
|
res.write(data);
|
|
|
|
return res.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
console.log("Setup io server");
|
|
|
|
const { Server } = require("socket.io");
|
|
|
|
var io = new Server(server);
|
|
|
|
|
|
|
|
console.log("Setup handlers");
|
|
|
|
io.sockets.on('connection', function(socket){
|
2022-09-09 13:03:08 +02:00
|
|
|
console.log("connection !");
|
2023-06-05 17:51:32 +02:00
|
|
|
//ici essentiellement tout est a refaire
|
2022-09-08 17:48:53 +02:00
|
|
|
socket.id = equipes.length;
|
|
|
|
equipes.push(socket);
|
2022-09-09 13:03:08 +02:00
|
|
|
socket.shown = true;
|
2022-09-13 23:18:13 +02:00
|
|
|
socket.admin = false;
|
2022-09-08 17:48:53 +02:00
|
|
|
socket.color = 0;
|
2022-09-09 17:16:20 +02:00
|
|
|
socket.position = [0,0];
|
2022-09-13 23:18:13 +02:00
|
|
|
socket.on('admin', function(){
|
|
|
|
socket.admin = true;
|
|
|
|
socket.shown = false;
|
|
|
|
admins.push(socket);
|
|
|
|
for(i in equipes)
|
|
|
|
equipes[i].emit('changeColor', {"id": socket.id, "color": -1});
|
2022-09-14 14:45:51 +02:00
|
|
|
socket.on('newTracker', function(d){
|
|
|
|
for(i in equipes)
|
|
|
|
equipes[i].emit('newTracker', d);
|
|
|
|
});
|
2022-09-13 23:18:13 +02:00
|
|
|
});
|
2022-09-08 17:48:53 +02:00
|
|
|
socket.on('changeColor', function(d){
|
2022-09-09 13:03:08 +02:00
|
|
|
socket.color = d.color - 0;
|
2022-09-08 17:48:53 +02:00
|
|
|
if(d.color == -1)
|
|
|
|
socket.shown = false;
|
|
|
|
else{
|
|
|
|
if(!socket.shown)
|
2022-09-09 17:16:20 +02:00
|
|
|
for(i in equipes)
|
2022-09-08 17:48:53 +02:00
|
|
|
equipes[i].emit('moving', {"id": socket.id, "position": socket.position});
|
2022-09-13 13:59:20 +02:00
|
|
|
socket.shown = true;
|
|
|
|
}
|
|
|
|
for(i in equipes)
|
|
|
|
equipes[i].emit('changeColor', {"id": socket.id, "color": d.color});
|
|
|
|
});
|
|
|
|
socket.on('message', function(d){
|
2022-09-15 09:45:42 +02:00
|
|
|
d.content = d.content.toLowerCase();
|
2022-09-13 13:59:20 +02:00
|
|
|
if(d.content == PWD_TRACKED){
|
|
|
|
d.color = 0;
|
|
|
|
socket.emit('popup', {"content": MSG_TRACKED});
|
|
|
|
} else if(d.content == PWD_TRACKER){
|
|
|
|
d.color = 1;
|
|
|
|
socket.emit('popup', {"content": MSG_TRACKER});
|
2022-09-15 09:45:42 +02:00
|
|
|
} else if(d.content == PWD_INVISIBLE){
|
|
|
|
d.color = -1;
|
|
|
|
socket.emit('popup', {"content": MSG_INVISIBLE});
|
|
|
|
} else if((d.content in invisi) && invisi[d.content]){
|
2022-09-14 17:11:04 +02:00
|
|
|
invisi[d.content] = false;
|
2022-09-15 09:45:42 +02:00
|
|
|
old_color = socket.color;
|
2022-09-13 13:59:20 +02:00
|
|
|
d.color = -1;
|
|
|
|
socket.emit('popup', {"content": MSG_INVISIBLE});
|
2022-09-15 09:45:42 +02:00
|
|
|
setTimeout(function(s,c){
|
|
|
|
for(i in equipes){
|
|
|
|
equipes[i].emit('moving', {"id": s.id, "position": s.position});
|
|
|
|
equipes[i].emit('changeColor', {"id": s.id, "color": c, "debug": "timeout"});
|
|
|
|
}
|
|
|
|
s.color = c;
|
|
|
|
}, invisible_delay, socket, old_color);
|
2022-09-13 13:59:20 +02:00
|
|
|
} else {
|
|
|
|
socket.emit('popup', {"content": MSG_BAD});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
socket.color = d.color - 0;
|
|
|
|
if(d.color == -1)
|
|
|
|
socket.shown = false;
|
|
|
|
else{
|
|
|
|
if(!socket.shown)
|
|
|
|
for(i in equipes)
|
|
|
|
equipes[i].emit('moving', {"id": socket.id, "position": socket.position});
|
2022-09-08 17:48:53 +02:00
|
|
|
socket.shown = true;
|
|
|
|
}
|
2022-09-09 17:16:20 +02:00
|
|
|
for(i in equipes)
|
2022-09-08 17:48:53 +02:00
|
|
|
equipes[i].emit('changeColor', {"id": socket.id, "color": d.color});
|
|
|
|
});
|
2022-09-13 23:18:13 +02:00
|
|
|
socket.on('popup', function(d){
|
|
|
|
for(i in equipes)
|
2022-09-14 10:06:41 +02:00
|
|
|
equipes[i].emit('popup', {"content": d.content});
|
2022-09-13 23:18:13 +02:00
|
|
|
});
|
2022-09-08 17:48:53 +02:00
|
|
|
socket.on('setName', function(d){
|
|
|
|
socket.name = d.name;
|
|
|
|
for(i in equipes)
|
|
|
|
equipes[i].emit('setName', {"id": socket.id, "name": d.name});
|
|
|
|
});
|
2022-09-14 17:11:04 +02:00
|
|
|
socket.on('newCode', function(d){
|
|
|
|
invisi[d.code] = true;
|
|
|
|
});
|
2022-09-09 17:37:30 +02:00
|
|
|
socket.on("disconnect", function(_){
|
2022-09-14 15:20:33 +02:00
|
|
|
console.log(socket.id + " disconnect");
|
|
|
|
socket.shown = false;
|
2022-09-09 17:37:30 +02:00
|
|
|
for(i in equipes)
|
2022-09-14 14:14:52 +02:00
|
|
|
equipes[i].emit('remove', {"id": socket.id});
|
2022-09-09 17:37:30 +02:00
|
|
|
});
|
2022-09-09 17:16:20 +02:00
|
|
|
|
2022-09-08 17:48:53 +02:00
|
|
|
socket.emit('yourId', {"id": socket.id});
|
2022-09-09 17:16:20 +02:00
|
|
|
for(i in equipes){
|
|
|
|
if(!equipes[i].shown)
|
|
|
|
continue;
|
|
|
|
socket.emit('setName', {"id": i, "name": equipes[i].name});
|
|
|
|
socket.emit('changeColor', {"id": i, "color": equipes[i].color});
|
|
|
|
socket.emit('moving', {"id": i, "position": equipes[i].position});
|
|
|
|
}
|
2022-09-08 17:48:53 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
console.log("Launch server");
|
2022-09-12 13:49:35 +02:00
|
|
|
server.listen(config.port, "::");
|
2022-09-09 14:43:41 +02:00
|
|
|
console.log("Running !");
|