sharkey/src/server/api/endpoints/othello/match.ts

96 lines
2.1 KiB
TypeScript
Raw Normal View History

2018-04-24 18:13:06 +09:00
import $ from 'cafy'; import ID from '../../../../cafy-id';
2018-03-29 20:32:18 +09:00
import Matching, { pack as packMatching } from '../../../../models/othello-matching';
import OthelloGame, { pack as packGame } from '../../../../models/othello-game';
import User from '../../../../models/user';
2018-04-02 13:33:46 +09:00
import publishUserStream, { publishOthelloStream } from '../../../../publishers/stream';
2018-04-02 12:58:53 +09:00
import { eighteight } from '../../../../othello/maps';
2018-03-07 11:40:40 +09:00
module.exports = (params, user) => new Promise(async (res, rej) => {
2018-03-29 14:48:47 +09:00
// Get 'userId' parameter
2018-04-27 19:12:15 +09:00
const [childId, childIdErr] = $(params.userId).type(ID).get();
2018-03-29 14:48:47 +09:00
if (childIdErr) return rej('invalid userId param');
2018-03-07 11:40:40 +09:00
// Myself
if (childId.equals(user._id)) {
2018-03-29 14:48:47 +09:00
return rej('invalid userId param');
2018-03-07 11:40:40 +09:00
}
// Find session
const exist = await Matching.findOne({
2018-03-29 14:48:47 +09:00
parentId: childId,
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-03-29 14:48:47 +09:00
const game = await OthelloGame.insert({
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
});
// Reponse
2018-03-07 17:48:32 +09:00
res(await packGame(game, user));
2018-03-07 11:40:40 +09:00
2018-03-29 14:48:47 +09:00
publishOthelloStream(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) {
publishUserStream(user._id, 'othello_no_invites');
}
2018-03-07 11:40:40 +09:00
} else {
// Fetch child
const child = await User.findOne({
_id: childId
}, {
fields: {
_id: true
}
});
if (child === null) {
return rej('user not found');
}
// 以前のセッションはすべて削除しておく
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
});
// Reponse
2018-03-07 17:48:32 +09:00
res();
2018-03-07 11:40:40 +09:00
2018-03-11 18:08:26 +09:00
const packed = await packMatching(matching, child);
2018-03-07 11:40:40 +09:00
// 招待
2018-03-11 18:08:26 +09:00
publishOthelloStream(child._id, 'invited', packed);
publishUserStream(child._id, 'othello_invited', packed);
2018-03-07 11:40:40 +09:00
}
});