sharkey/src/server/api/endpoints/games/reversi/match.ts

114 lines
2.6 KiB
TypeScript
Raw Normal View History

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 Matching, { pack as packMatching } from '../../../../../models/games/reversi/matching';
import ReversiGame, { pack as packGame } from '../../../../../models/games/reversi/game';
2019-02-05 14:14:23 +09:00
import { publishMainStream, publishReversiStream } from '../../../../../services/stream';
2018-07-07 19:01:33 +09:00
import { eighteight } from '../../../../../games/reversi/maps';
2018-11-02 13:47:44 +09:00
import define from '../../../define';
import { ApiError } from '../../../error';
2019-02-22 14:02:56 +09:00
import { getUser } from '../../../common/getters';
2018-03-07 11:40:40 +09:00
2018-07-17 04:36:44 +09:00
export const meta = {
tags: ['games'],
2018-11-02 03:32:24 +09:00
requireCredential: true,
params: {
userId: {
validator: $.type(ID),
transform: transform,
2018-11-03 22:49:36 +09:00
desc: {
'ja-JP': '対象のユーザーのID',
'en-US': 'Target user ID'
}
2018-11-02 03:32:24 +09: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-02 03:32:24 +09:00
}
2018-07-17 04:36:44 +09:00
};
export default define(meta, async (ps, user) => {
2018-03-07 11:40:40 +09:00
// Myself
2018-11-02 03:32:24 +09:00
if (ps.userId.equals(user._id)) {
throw new ApiError(meta.errors.isYourself);
2018-03-07 11:40:40 +09:00
}
// Find session
const exist = await Matching.findOne({
2018-11-02 03:32:24 +09:00
parentId: ps.userId,
2018-03-29 14:48:47 +09:00
childId: user._id
2018-03-07 11:40:40 +09:00
});
if (exist) {
// Destroy session
Matching.remove({
_id: exist._id
});
2018-03-08 17:57:57 +09:00
// Create game
2018-06-17 08:10:54 +09:00
const game = await ReversiGame.insert({
2018-03-29 14:48:47 +09:00
createdAt: new Date(),
user1Id: exist.parentId,
user2Id: user._id,
user1Accepted: false,
user2Accepted: false,
isStarted: false,
isEnded: false,
2018-03-08 17:57:57 +09:00
logs: [],
settings: {
2018-03-09 18:11:10 +09:00
map: eighteight.data,
2018-03-08 17:57:57 +09:00
bw: 'random',
2018-03-29 14:48:47 +09:00
isLlotheo: false
2018-03-08 17:57:57 +09:00
}
2018-03-07 11:40:40 +09:00
});
2018-06-17 08:10:54 +09:00
publishReversiStream(exist.parentId, 'matched', await packGame(game, exist.parentId));
2018-03-11 18:08:26 +09:00
const other = await Matching.count({
2018-03-29 14:48:47 +09:00
childId: user._id
2018-03-11 18:08:26 +09:00
});
if (other == 0) {
2018-12-09 23:10:02 +09:00
publishMainStream(user._id, 'reversiNoInvites');
2018-03-11 18:08:26 +09:00
}
return await packGame(game, user);
2018-03-07 11:40:40 +09:00
} else {
// Fetch child
2019-02-22 14:02:56 +09: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 11:40:40 +09:00
});
// 以前のセッションはすべて削除しておく
await Matching.remove({
2018-03-29 14:48:47 +09:00
parentId: user._id
2018-03-07 11:40:40 +09:00
});
// セッションを作成
2018-03-07 17:48:32 +09:00
const matching = await Matching.insert({
2018-03-29 14:48:47 +09:00
createdAt: new Date(),
parentId: user._id,
childId: child._id
2018-03-07 11:40:40 +09:00
});
2018-03-11 18:08:26 +09:00
const packed = await packMatching(matching, child);
2018-06-17 08:10:54 +09:00
publishReversiStream(child._id, 'invited', packed);
publishMainStream(child._id, 'reversiInvited', packed);
return;
2018-03-07 11:40:40 +09:00
}
});