summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/othello/games/show.ts
blob: f9084682fac55ea04ecdceb10fb852feecfc3c35 (plain)
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
import $ from 'cafy';
import OthelloGame, { pack } from '../../../models/othello-game';
import Othello from '../../../../common/othello/core';

module.exports = (params, user) => new Promise(async (res, rej) => {
	// Get 'gameId' parameter
	const [gameId, gameIdErr] = $(params.gameId).id().$;
	if (gameIdErr) return rej('invalid gameId param');

	const game = await OthelloGame.findOne({ _id: gameId });

	if (game == null) {
		return rej('game not found');
	}

	const o = new Othello(game.settings.map, {
		isLlotheo: game.settings.isLlotheo,
		canPutEverywhere: game.settings.canPutEverywhere,
		loopedBoard: game.settings.loopedBoard
	});

	game.logs.forEach(log => {
		o.put(log.color, log.pos);
	});

	const packed = await pack(game, user);

	res(Object.assign({
		board: o.board,
		turn: o.turn
	}, packed));
});