rudeshark.net/src/server/api/endpoints/games/reversi/match.ts

112 lines
2.6 KiB
TypeScript
Raw Normal View History

2019-02-05 03:48:08 +01:00
import $ from 'cafy';
import ID, { transform } from '../../../../../misc/cafy-id';
2018-07-07 12:01:33 +02:00
import Matching, { pack as packMatching } from '../../../../../models/games/reversi/matching';
import ReversiGame, { pack as packGame } from '../../../../../models/games/reversi/game';
2019-02-05 06:14:23 +01:00
import { publishMainStream, publishReversiStream } from '../../../../../services/stream';
2018-07-07 12:01:33 +02:00
import { eighteight } from '../../../../../games/reversi/maps';
2018-11-02 05:47:44 +01:00
import define from '../../../define';
import { ApiError } from '../../../error';
2019-02-22 06:02:56 +01:00
import { getUser } from '../../../common/getters';
2018-03-07 03:40:40 +01:00
2018-07-16 21:36:44 +02:00
export const meta = {
2018-11-01 19:32:24 +01:00
requireCredential: true,
params: {
userId: {
validator: $.type(ID),
transform: transform,
2018-11-03 14:49:36 +01:00
desc: {
'ja-JP': '対象のユーザーのID',
'en-US': 'Target user ID'
}
2018-11-01 19:32:24 +01:00
},
},
errors: {
noSuchUser: {
message: 'No such user.',
code: 'NO_SUCH_USER',
id: '0b4f0559-b484-4e31-9581-3f73cee89b28'
},
isYourself: {
message: 'Target user is yourself.',
code: 'TARGET_IS_YOURSELF',
id: '96fd7bd6-d2bc-426c-a865-d055dcd2828e'
},
2018-11-01 19:32:24 +01:00
}
2018-07-16 21:36:44 +02:00
};
export default define(meta, async (ps, user) => {
2018-03-07 03:40:40 +01:00
// Myself
2018-11-01 19:32:24 +01:00
if (ps.userId.equals(user._id)) {
throw new ApiError(meta.errors.isYourself);
2018-03-07 03:40:40 +01:00
}
// Find session
const exist = await Matching.findOne({
2018-11-01 19:32:24 +01:00
parentId: ps.userId,
2018-03-29 07:48:47 +02:00
childId: user._id
2018-03-07 03:40:40 +01:00
});
if (exist) {
// Destroy session
Matching.remove({
_id: exist._id
});
2018-03-08 09:57:57 +01:00
// Create game
2018-06-17 01:10:54 +02:00
const game = await ReversiGame.insert({
2018-03-29 07:48:47 +02:00
createdAt: new Date(),
user1Id: exist.parentId,
user2Id: user._id,
user1Accepted: false,
user2Accepted: false,
isStarted: false,
isEnded: false,
2018-03-08 09:57:57 +01:00
logs: [],
settings: {
2018-03-09 10:11:10 +01:00
map: eighteight.data,
2018-03-08 09:57:57 +01:00
bw: 'random',
2018-03-29 07:48:47 +02:00
isLlotheo: false
2018-03-08 09:57:57 +01:00
}
2018-03-07 03:40:40 +01:00
});
2018-06-17 01:10:54 +02:00
publishReversiStream(exist.parentId, 'matched', await packGame(game, exist.parentId));
2018-03-11 10:08:26 +01:00
const other = await Matching.count({
2018-03-29 07:48:47 +02:00
childId: user._id
2018-03-11 10:08:26 +01:00
});
if (other == 0) {
2018-12-09 15:10:02 +01:00
publishMainStream(user._id, 'reversiNoInvites');
2018-03-11 10:08:26 +01:00
}
return await packGame(game, user);
2018-03-07 03:40:40 +01:00
} else {
// Fetch child
2019-02-22 06:02:56 +01:00
const child = await getUser(ps.userId).catch(e => {
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
throw e;
2018-03-07 03:40:40 +01:00
});
// 以前のセッションはすべて削除しておく
await Matching.remove({
2018-03-29 07:48:47 +02:00
parentId: user._id
2018-03-07 03:40:40 +01:00
});
// セッションを作成
2018-03-07 09:48:32 +01:00
const matching = await Matching.insert({
2018-03-29 07:48:47 +02:00
createdAt: new Date(),
parentId: user._id,
childId: child._id
2018-03-07 03:40:40 +01:00
});
2018-03-11 10:08:26 +01:00
const packed = await packMatching(matching, child);
2018-06-17 01:10:54 +02:00
publishReversiStream(child._id, 'invited', packed);
publishMainStream(child._id, 'reversiInvited', packed);
return;
2018-03-07 03:40:40 +01:00
}
});