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