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

104 lines
2.2 KiB
TypeScript
Raw Normal View History

2018-11-01 19:32:24 +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';
2018-11-02 05:47:44 +01:00
import User from '../../../../../models/user';
import { publishMainStream, publishReversiStream } from '../../../../../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';
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-07-16 21:36:44 +02:00
};
2018-11-02 05:47:44 +01:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2018-03-07 03:40:40 +01:00
// Myself
2018-11-01 19:32:24 +01:00
if (ps.userId.equals(user._id)) {
2018-03-29 07:48:47 +02:00
return rej('invalid userId param');
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
});
// Reponse
2018-03-07 09:48:32 +01:00
res(await packGame(game, user));
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) {
publishMainStream(user._id, 'reversi_no_invites');
2018-03-11 10:08:26 +01:00
}
2018-03-07 03:40:40 +01:00
} else {
// Fetch child
const child = await User.findOne({
2018-11-01 19:32:24 +01:00
_id: ps.userId
2018-03-07 03:40:40 +01:00
}, {
fields: {
_id: true
}
});
if (child === null) {
return rej('user not found');
}
// 以前のセッションはすべて削除しておく
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
});
// Reponse
2018-03-07 09:48:32 +01:00
res();
2018-03-07 03:40:40 +01:00
2018-03-11 10:08:26 +01:00
const packed = await packMatching(matching, child);
2018-03-07 03:40:40 +01:00
// 招待
2018-06-17 01:10:54 +02:00
publishReversiStream(child._id, 'invited', packed);
2018-03-11 10:08:26 +01:00
publishMainStream(child._id, 'reversiInvited', packed);
2018-03-07 03:40:40 +01:00
}
2018-11-02 05:47:44 +01:00
}));