X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=lmno.js;h=71ccc58165298b3e313fa7f60e0422fb19e3b7b6;hb=325a886a5d84c42c67e7075c734b74619d383ea2;hp=b85041ec74d13be48abcbca9a5f7e3e8b900ba4e;hpb=76232144e294f384cde30933687de514fd90584a;p=lmno-server diff --git a/lmno.js b/lmno.js index b85041e..71ccc58 100644 --- a/lmno.js +++ b/lmno.js @@ -32,6 +32,15 @@ The "node lmno-passwd.js" command can help generate password hashes.`); } const app = express(); + +/* This 'trust proxy' option, (and, really? a space in an option + * name?!) means that express will grab hostname and IP values from + * the X-Forwarded-* header fields. We need that so that our games + * will display a proper hostname of https://lmno.games/WXYZ instead + * of http://localhost/QFBL which will obviously not be a helpful + * thing to share around. + */ +app.set('trust proxy', true); app.use(cors()); app.use(body_parser.urlencoded({ extended: false })); app.use(body_parser.json()); @@ -81,7 +90,9 @@ nunjucks.configure("templates", { */ const engines = { empires: require("./empires").Game, - tictactoe: require("./tictactoe").Game + tictactoe: require("./tictactoe").Game, + scribe: require("./scribe").Game, + empathy: require("./empathy").Game }; class LMNO { @@ -90,7 +101,11 @@ class LMNO { } generate_id() { - return Array(4).fill(null).map(() => LMNO.letters.charAt(Math.floor(Math.random() * LMNO.letters.length))).join(''); + /* Note: The copy from Array(4) to [...Array(4)] is necessary so + * that map() will actually work, (which it doesn't on an array + * from Array(N) which is in this strange state of having "empty" + * items rather than "undefined" as we get after [...Array(4)] */ + return [...Array(4)].map(() => LMNO.letters.charAt(Math.floor(Math.random() * LMNO.letters.length))).join(''); } create_game(engine_name) { @@ -267,7 +282,7 @@ app.get('/admin/', auth_admin, (request, response) => { let idle = []; for (let id in lmno.games) { - if (lmno.games[id].clients.length) + if (lmno.games[id].players.length) active.push(lmno.games[id]); else idle.push(lmno.games[id]); @@ -285,10 +300,14 @@ for (let key in engines) { router.get('/', (request, response) => { const game = request.game; - if (! request.session.nickname) - response.render('choose-nickname.html', { game_name: game.meta.name }); - else + if (! request.session.nickname) { + response.render('choose-nickname.html', { + game_name: game.meta.name, + options: game.meta.options + }); + } else { response.render(`${game.meta.identifier}-game.html`); + } }); router.put('/player', (request, response) => {