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

63 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-03-07 10:48:32 +02:00
import $ from 'cafy';
2018-03-29 08:48:47 +03:00
import OthelloGame, { pack } from '../../models/othello-game';
2018-03-07 10:48:32 +02:00
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');
2018-03-09 11:11:10 +02:00
// Get 'limit' parameter
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
if (limitErr) return rej('invalid limit param');
2018-03-29 08:48:47 +03:00
// Get 'sinceId' parameter
const [sinceId, sinceIdErr] = $(params.sinceId).optional.id().$;
if (sinceIdErr) return rej('invalid sinceId param');
2018-03-09 11:11:10 +02:00
2018-03-29 08:48:47 +03:00
// Get 'untilId' parameter
const [untilId, untilIdErr] = $(params.untilId).optional.id().$;
if (untilIdErr) return rej('invalid untilId param');
2018-03-09 11:11:10 +02:00
2018-03-29 08:48:47 +03:00
// Check if both of sinceId and untilId is specified
2018-03-09 11:11:10 +02:00
if (sinceId && untilId) {
2018-03-29 08:48:47 +03:00
return rej('cannot set sinceId and untilId');
2018-03-09 11:11:10 +02:00
}
2018-03-09 11:29:27 +02:00
const q: any = my ? {
2018-03-29 08:48:47 +03:00
isStarted: true,
2018-03-07 10:48:32 +02:00
$or: [{
2018-03-29 08:48:47 +03:00
user1Id: user._id
2018-03-07 10:48:32 +02:00
}, {
2018-03-29 08:48:47 +03:00
user2Id: user._id
2018-03-07 10:48:32 +02:00
}]
2018-03-08 10:57:57 +02:00
} : {
2018-03-29 08:48:47 +03:00
isStarted: true
2018-03-08 10:57:57 +02:00
};
2018-03-07 10:48:32 +02:00
2018-03-09 11:11:10 +02:00
const sort = {
_id: -1
};
if (sinceId) {
sort._id = 1;
q._id = {
$gt: sinceId
};
} else if (untilId) {
q._id = {
$lt: untilId
};
}
2018-03-07 10:48:32 +02:00
// Fetch games
2018-03-29 08:48:47 +03:00
const games = await OthelloGame.find(q, {
2018-03-09 11:29:27 +02:00
sort,
limit
2018-03-07 11:56:55 +02:00
});
2018-03-07 10:48:32 +02:00
// Reponse
2018-03-09 11:11:10 +02:00
res(Promise.all(games.map(async (g) => await pack(g, user, {
detail: false
}))));
2018-03-07 10:48:32 +02:00
});