mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-18 07:57:38 -07:00
4e15337a64
* wip * wip * wip * Update index.ts * Update gen-openapi-spec.ts * Update api.ja-JP.md * Fix * Improve doc * Update gen-openapi-spec.ts * Update redoc.html * Improve doc * Update gen-openapi-spec.ts * Improve doc * Update CHANGELOG.md
68 lines
1.1 KiB
TypeScript
68 lines
1.1 KiB
TypeScript
import $ from 'cafy';
|
|
import ID, { transform } from '../../../../../misc/cafy-id';
|
|
import ReversiGame, { pack } from '../../../../../models/games/reversi/game';
|
|
import define from '../../../define';
|
|
|
|
export const meta = {
|
|
tags: ['games'],
|
|
|
|
params: {
|
|
limit: {
|
|
validator: $.optional.num.range(1, 100),
|
|
default: 10
|
|
},
|
|
|
|
sinceId: {
|
|
validator: $.optional.type(ID),
|
|
transform: transform,
|
|
},
|
|
|
|
untilId: {
|
|
validator: $.optional.type(ID),
|
|
transform: transform,
|
|
},
|
|
|
|
my: {
|
|
validator: $.optional.bool,
|
|
default: false
|
|
}
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
const q: any = ps.my ? {
|
|
isStarted: true,
|
|
$or: [{
|
|
user1Id: user._id
|
|
}, {
|
|
user2Id: user._id
|
|
}]
|
|
} : {
|
|
isStarted: true
|
|
};
|
|
|
|
const sort = {
|
|
_id: -1
|
|
};
|
|
|
|
if (ps.sinceId) {
|
|
sort._id = 1;
|
|
q._id = {
|
|
$gt: ps.sinceId
|
|
};
|
|
} else if (ps.untilId) {
|
|
q._id = {
|
|
$lt: ps.untilId
|
|
};
|
|
}
|
|
|
|
// Fetch games
|
|
const games = await ReversiGame.find(q, {
|
|
sort: sort,
|
|
limit: ps.limit
|
|
});
|
|
|
|
return await Promise.all(games.map((g) => pack(g, user, {
|
|
detail: false
|
|
})));
|
|
});
|