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

96 lines
2.1 KiB
TypeScript
Raw Normal View History

2018-03-07 04:40:40 +02:00
import $ from 'cafy';
2018-03-29 14:32:18 +03: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-03-11 11:08:26 +02:00
import publishUserStream, { publishOthelloStream } from '../../event';
2018-03-29 14:32:18 +03:00
import { eighteight } from '../../../../common/othello/maps';
2018-03-07 04:40:40 +02:00
module.exports = (params, user) => new Promise(async (res, rej) => {
2018-03-29 08:48:47 +03:00
// Get 'userId' parameter
const [childId, childIdErr] = $(params.userId).id().$;
if (childIdErr) return rej('invalid userId param');
2018-03-07 04:40:40 +02:00
// Myself
if (childId.equals(user._id)) {
2018-03-29 08:48:47 +03:00
return rej('invalid userId param');
2018-03-07 04:40:40 +02:00
}
// Find session
const exist = await Matching.findOne({
2018-03-29 08:48:47 +03:00
parentId: childId,
childId: user._id
2018-03-07 04:40:40 +02:00
});
if (exist) {
// Destroy session
Matching.remove({
_id: exist._id
});
2018-03-08 10:57:57 +02:00
// Create game
2018-03-29 08:48:47 +03: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 10:57:57 +02:00
logs: [],
settings: {
2018-03-09 11:11:10 +02:00
map: eighteight.data,
2018-03-08 10:57:57 +02:00
bw: 'random',
2018-03-29 08:48:47 +03:00
isLlotheo: false
2018-03-08 10:57:57 +02:00
}
2018-03-07 04:40:40 +02:00
});
// Reponse
2018-03-07 10:48:32 +02:00
res(await packGame(game, user));
2018-03-07 04:40:40 +02:00
2018-03-29 08:48:47 +03:00
publishOthelloStream(exist.parentId, 'matched', await packGame(game, exist.parentId));
2018-03-11 11:08:26 +02:00
const other = await Matching.count({
2018-03-29 08:48:47 +03:00
childId: user._id
2018-03-11 11:08:26 +02:00
});
if (other == 0) {
publishUserStream(user._id, 'othello_no_invites');
}
2018-03-07 04:40:40 +02: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 08:48:47 +03:00
parentId: user._id
2018-03-07 04:40:40 +02:00
});
// セッションを作成
2018-03-07 10:48:32 +02:00
const matching = await Matching.insert({
2018-03-29 08:48:47 +03:00
createdAt: new Date(),
parentId: user._id,
childId: child._id
2018-03-07 04:40:40 +02:00
});
// Reponse
2018-03-07 10:48:32 +02:00
res();
2018-03-07 04:40:40 +02:00
2018-03-11 11:08:26 +02:00
const packed = await packMatching(matching, child);
2018-03-07 04:40:40 +02:00
// 招待
2018-03-11 11:08:26 +02:00
publishOthelloStream(child._id, 'invited', packed);
publishUserStream(child._id, 'othello_invited', packed);
2018-03-07 04:40:40 +02:00
}
});