wip
This commit is contained in:
parent
6c495268ae
commit
161fd4afab
37 changed files with 747 additions and 219 deletions
22
src/api/endpoints/othello/games.ts
Normal file
22
src/api/endpoints/othello/games.ts
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
import $ from 'cafy';
|
||||
import Game, { pack } from '../../models/othello-game';
|
||||
|
||||
module.exports = (params, user) => new Promise(async (res, rej) => {
|
||||
// Get 'my' parameter
|
||||
const [my = false, myErr] = $(params.my).boolean().$;
|
||||
if (myErr) return rej('invalid my param');
|
||||
|
||||
const q = my ? {
|
||||
$or: [{
|
||||
black_user_id: user._id
|
||||
}, {
|
||||
white_user_id: user._id
|
||||
}]
|
||||
} : {};
|
||||
|
||||
// Fetch games
|
||||
const games = await Game.find(q);
|
||||
|
||||
// Reponse
|
||||
res(Promise.all(games.map(async (g) => await pack(g, user))));
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue