2018-11-01 19:32:24 +01:00
|
|
|
import $ from 'cafy'; import ID, { transform } from '../../../../../misc/cafy-id';
|
2018-07-07 12:01:33 +02:00
|
|
|
import ReversiGame, { pack } from '../../../../../models/games/reversi/game';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../../define';
|
2018-03-07 09:48:32 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
2018-11-01 19:32:24 +01:00
|
|
|
params: {
|
|
|
|
limit: {
|
|
|
|
validator: $.num.optional.range(1, 100),
|
|
|
|
default: 10
|
|
|
|
},
|
2018-07-16 21:36:44 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
sinceId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
|
|
|
},
|
2018-03-07 09:48:32 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
|
|
|
},
|
2018-03-09 10:11:10 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
my: {
|
|
|
|
validator: $.bool.optional,
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2018-03-09 10:11:10 +01:00
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2018-03-29 07:48:47 +02:00
|
|
|
// Check if both of sinceId and untilId is specified
|
2018-11-01 19:32:24 +01:00
|
|
|
if (ps.sinceId && ps.untilId) {
|
2018-03-29 07:48:47 +02:00
|
|
|
return rej('cannot set sinceId and untilId');
|
2018-03-09 10:11:10 +01:00
|
|
|
}
|
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
const q: any = ps.my ? {
|
2018-03-29 07:48:47 +02:00
|
|
|
isStarted: true,
|
2018-03-07 09:48:32 +01:00
|
|
|
$or: [{
|
2018-03-29 07:48:47 +02:00
|
|
|
user1Id: user._id
|
2018-03-07 09:48:32 +01:00
|
|
|
}, {
|
2018-03-29 07:48:47 +02:00
|
|
|
user2Id: user._id
|
2018-03-07 09:48:32 +01:00
|
|
|
}]
|
2018-03-08 09:57:57 +01:00
|
|
|
} : {
|
2018-03-29 07:48:47 +02:00
|
|
|
isStarted: true
|
2018-03-08 09:57:57 +01:00
|
|
|
};
|
2018-03-07 09:48:32 +01:00
|
|
|
|
2018-03-09 10:11:10 +01:00
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
if (ps.sinceId) {
|
2018-03-09 10:11:10 +01:00
|
|
|
sort._id = 1;
|
|
|
|
q._id = {
|
2018-11-01 19:32:24 +01:00
|
|
|
$gt: ps.sinceId
|
2018-03-09 10:11:10 +01:00
|
|
|
};
|
2018-11-01 19:32:24 +01:00
|
|
|
} else if (ps.untilId) {
|
2018-03-09 10:11:10 +01:00
|
|
|
q._id = {
|
2018-11-01 19:32:24 +01:00
|
|
|
$lt: ps.untilId
|
2018-03-09 10:11:10 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-03-07 09:48:32 +01:00
|
|
|
// Fetch games
|
2018-06-17 01:10:54 +02:00
|
|
|
const games = await ReversiGame.find(q, {
|
2018-11-01 19:32:24 +01:00
|
|
|
sort: sort,
|
|
|
|
limit: ps.limit
|
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-11-02 05:47:44 +01:00
|
|
|
}));
|