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