Sharkey/src/api/endpoints/othello/games.ts

30 lines
578 B
TypeScript
Raw Normal View History

2018-03-07 10:48:32 +02:00
import $ from 'cafy';
import Game, { pack } from '../../models/othello-game';
module.exports = (params, user) => new Promise(async (res, rej) => {
// Get 'my' parameter
2018-03-07 11:45:16 +02:00
const [my = false, myErr] = $(params.my).optional.boolean().$;
2018-03-07 10:48:32 +02:00
if (myErr) return rej('invalid my param');
const q = my ? {
2018-03-08 10:57:57 +02:00
is_started: true,
2018-03-07 10:48:32 +02:00
$or: [{
2018-03-08 10:57:57 +02:00
user1_id: user._id
2018-03-07 10:48:32 +02:00
}, {
2018-03-08 10:57:57 +02:00
user2_id: user._id
2018-03-07 10:48:32 +02:00
}]
2018-03-08 10:57:57 +02:00
} : {
is_started: true
};
2018-03-07 10:48:32 +02:00
// Fetch games
2018-03-07 11:56:55 +02:00
const games = await Game.find(q, {
sort: {
_id: -1
}
});
2018-03-07 10:48:32 +02:00
// Reponse
res(Promise.all(games.map(async (g) => await pack(g, user))));
});