2018-03-07 09:48:32 +01: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 10:45:16 +01:00
|
|
|
const [my = false, myErr] = $(params.my).optional.boolean().$;
|
2018-03-07 09:48:32 +01:00
|
|
|
if (myErr) return rej('invalid my param');
|
|
|
|
|
|
|
|
const q = my ? {
|
2018-03-08 09:57:57 +01:00
|
|
|
is_started: true,
|
2018-03-07 09:48:32 +01:00
|
|
|
$or: [{
|
2018-03-08 09:57:57 +01:00
|
|
|
user1_id: user._id
|
2018-03-07 09:48:32 +01:00
|
|
|
}, {
|
2018-03-08 09:57:57 +01:00
|
|
|
user2_id: user._id
|
2018-03-07 09:48:32 +01:00
|
|
|
}]
|
2018-03-08 09:57:57 +01:00
|
|
|
} : {
|
|
|
|
is_started: true
|
|
|
|
};
|
2018-03-07 09:48:32 +01:00
|
|
|
|
|
|
|
// Fetch games
|
2018-03-07 10:56:55 +01:00
|
|
|
const games = await Game.find(q, {
|
|
|
|
sort: {
|
|
|
|
_id: -1
|
|
|
|
}
|
|
|
|
});
|
2018-03-07 09:48:32 +01:00
|
|
|
|
|
|
|
// Reponse
|
|
|
|
res(Promise.all(games.map(async (g) => await pack(g, user))));
|
|
|
|
});
|