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