2019-02-04 20:48:08 -06:00
|
|
|
import $ from 'cafy';
|
2021-03-23 03:43:07 -05:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
2018-11-01 23:47:44 -05:00
|
|
|
import define from '../../../define';
|
2019-04-07 07:50:36 -05:00
|
|
|
import { ReversiGames } from '../../../../../models';
|
|
|
|
import { makePaginationQuery } from '../../../common/make-pagination-query';
|
|
|
|
import { Brackets } from 'typeorm';
|
2018-03-07 02:48:32 -06:00
|
|
|
|
2018-07-16 14:36:44 -05:00
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['games'],
|
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-11-01 13:32:24 -05:00
|
|
|
default: 10
|
|
|
|
},
|
2018-07-16 14:36:44 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
sinceId: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-03-07 02:48:32 -06:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
untilId: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-03-09 03:11:10 -06:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
my: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.bool,
|
2018-11-01 13:32:24 -05:00
|
|
|
default: false
|
|
|
|
}
|
2021-03-06 07:34:11 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
id: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'id'
|
|
|
|
},
|
|
|
|
createdAt: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'date-time'
|
|
|
|
},
|
|
|
|
startedAt: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'date-time'
|
|
|
|
},
|
|
|
|
isStarted: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const
|
|
|
|
},
|
|
|
|
isEnded: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const
|
|
|
|
},
|
|
|
|
form1: {
|
|
|
|
type: 'any' as const,
|
|
|
|
optional: false as const, nullable: true as const
|
|
|
|
},
|
|
|
|
form2: {
|
|
|
|
type: 'any' as const,
|
|
|
|
optional: false as const, nullable: true as const
|
|
|
|
},
|
|
|
|
user1Accepted: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
user2Accepted: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
user1Id: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'id'
|
|
|
|
},
|
|
|
|
user2Id: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'id'
|
|
|
|
},
|
|
|
|
user1: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
ref: 'User'
|
|
|
|
},
|
|
|
|
user2: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
ref: 'User'
|
|
|
|
},
|
|
|
|
winnerId: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
|
|
|
format: 'id'
|
|
|
|
},
|
|
|
|
winner: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
|
|
|
ref: 'User'
|
|
|
|
},
|
|
|
|
surrendered: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
|
|
|
format: 'id'
|
|
|
|
},
|
|
|
|
black: {
|
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: true as const
|
|
|
|
},
|
|
|
|
bw: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const
|
|
|
|
},
|
|
|
|
isLlotheo: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
canPutEverywhere: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const
|
|
|
|
},
|
|
|
|
loopedBoard: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
}
|
|
|
|
};
|
2018-03-09 03:11:10 -06:00
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 07:50:36 -05:00
|
|
|
const query = makePaginationQuery(ReversiGames.createQueryBuilder('game'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere('game.isStarted = TRUE');
|
|
|
|
|
2021-03-23 21:05:37 -05:00
|
|
|
if (ps.my && user) {
|
2019-04-07 07:50:36 -05:00
|
|
|
query.andWhere(new Brackets(qb => { qb
|
|
|
|
.where('game.user1Id = :userId', { userId: user.id })
|
|
|
|
.orWhere('game.user2Id = :userId', { userId: user.id });
|
|
|
|
}));
|
2018-03-09 03:11:10 -06:00
|
|
|
}
|
|
|
|
|
2018-03-07 02:48:32 -06:00
|
|
|
// Fetch games
|
2019-04-12 11:43:22 -05:00
|
|
|
const games = await query.take(ps.limit!).getMany();
|
2018-03-07 02:48:32 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
return await Promise.all(games.map((g) => ReversiGames.pack(g, user, {
|
2018-03-09 03:11:10 -06:00
|
|
|
detail: false
|
2019-02-21 20:46:58 -06:00
|
|
|
})));
|
|
|
|
});
|