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');
|
|
|
|
|
2018-03-09 10:11:10 +01:00
|
|
|
// Get 'limit' parameter
|
|
|
|
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
|
|
|
|
if (limitErr) return rej('invalid limit param');
|
|
|
|
|
|
|
|
// Get 'since_id' parameter
|
|
|
|
const [sinceId, sinceIdErr] = $(params.since_id).optional.id().$;
|
|
|
|
if (sinceIdErr) return rej('invalid since_id param');
|
|
|
|
|
|
|
|
// Get 'until_id' parameter
|
|
|
|
const [untilId, untilIdErr] = $(params.until_id).optional.id().$;
|
|
|
|
if (untilIdErr) return rej('invalid until_id param');
|
|
|
|
|
|
|
|
// Check if both of since_id and until_id is specified
|
|
|
|
if (sinceId && untilId) {
|
|
|
|
return rej('cannot set since_id and until_id');
|
|
|
|
}
|
|
|
|
|
2018-03-07 09:48:32 +01:00
|
|
|
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
|
|
|
|
2018-03-09 10:11:10 +01:00
|
|
|
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
|
|
|
if (sinceId) {
|
|
|
|
sort._id = 1;
|
|
|
|
q._id = {
|
|
|
|
$gt: sinceId
|
|
|
|
};
|
|
|
|
} else if (untilId) {
|
|
|
|
q._id = {
|
|
|
|
$lt: untilId
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-03-07 09:48:32 +01:00
|
|
|
// Fetch games
|
2018-03-07 10:56:55 +01:00
|
|
|
const games = await Game.find(q, {
|
2018-03-09 10:11:10 +01:00
|
|
|
sort
|
2018-03-07 10:56:55 +01:00
|
|
|
});
|
2018-03-07 09:48:32 +01:00
|
|
|
|
|
|
|
// Reponse
|
2018-03-09 10:11:10 +01:00
|
|
|
res(Promise.all(games.map(async (g) => await pack(g, user, {
|
|
|
|
detail: false
|
|
|
|
}))));
|
2018-03-07 09:48:32 +01:00
|
|
|
});
|