2019-05-18 20:36:33 +09:00
|
|
|
import $ from 'cafy';
|
|
|
|
import { ID } from '../../../../../misc/cafy-id';
|
|
|
|
import define from '../../../define';
|
|
|
|
import { ApiError } from '../../../error';
|
|
|
|
import { getUser } from '../../../common/getters';
|
2019-05-19 20:41:23 +09:00
|
|
|
import { UserGroups, UserGroupJoinings, UserGroupInvites } from '../../../../../models';
|
2019-05-18 20:36:33 +09:00
|
|
|
import { genId } from '../../../../../misc/gen-id';
|
2019-05-19 20:41:23 +09:00
|
|
|
import { UserGroupInvite } from '../../../../../models/entities/user-group-invite';
|
2019-05-18 20:36:33 +09:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2019-05-19 20:41:23 +09:00
|
|
|
'ja-JP': '指定したユーザーグループに指定したユーザーを招待します。',
|
|
|
|
'en-US': 'Invite a user to a user group.'
|
2019-05-18 20:36:33 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
tags: ['groups', 'users'],
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
kind: 'write:user-groups',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
groupId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象のユーザーのID',
|
|
|
|
'en-US': 'Target user ID'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchGroup: {
|
|
|
|
message: 'No such group.',
|
|
|
|
code: 'NO_SUCH_GROUP',
|
|
|
|
id: '583f8bc0-8eee-4b78-9299-1e14fc91e409'
|
|
|
|
},
|
|
|
|
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
|
|
|
id: 'da52de61-002c-475b-90e1-ba64f9cf13a8'
|
|
|
|
},
|
|
|
|
|
|
|
|
alreadyAdded: {
|
|
|
|
message: 'That user has already been added to that group.',
|
|
|
|
code: 'ALREADY_ADDED',
|
|
|
|
id: '7e35c6a0-39b2-4488-aea6-6ee20bd5da2c'
|
2019-05-19 20:41:23 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
alreadyInvited: {
|
|
|
|
message: 'That user has already been invited to that group.',
|
|
|
|
code: 'ALREADY_INVITED',
|
|
|
|
id: 'ee0f58b4-b529-4d13-b761-b9a3e69f97e6'
|
2019-05-18 20:36:33 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, async (ps, me) => {
|
|
|
|
// Fetch the group
|
|
|
|
const userGroup = await UserGroups.findOne({
|
|
|
|
id: ps.groupId,
|
|
|
|
userId: me.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (userGroup == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchGroup);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch the user
|
|
|
|
const user = await getUser(ps.userId).catch(e => {
|
|
|
|
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw e;
|
|
|
|
});
|
|
|
|
|
2019-05-19 20:41:23 +09:00
|
|
|
const joining = await UserGroupJoinings.findOne({
|
2019-05-18 20:36:33 +09:00
|
|
|
userGroupId: userGroup.id,
|
|
|
|
userId: user.id
|
|
|
|
});
|
|
|
|
|
2019-05-19 20:41:23 +09:00
|
|
|
if (joining) {
|
2019-05-18 20:36:33 +09:00
|
|
|
throw new ApiError(meta.errors.alreadyAdded);
|
|
|
|
}
|
|
|
|
|
2019-05-19 20:41:23 +09:00
|
|
|
const invite = await UserGroupInvites.findOne({
|
|
|
|
userGroupId: userGroup.id,
|
|
|
|
userId: user.id
|
|
|
|
});
|
|
|
|
|
|
|
|
if (invite) {
|
|
|
|
throw new ApiError(meta.errors.alreadyInvited);
|
|
|
|
}
|
|
|
|
|
|
|
|
await UserGroupInvites.save({
|
2019-05-18 20:36:33 +09:00
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
userId: user.id,
|
|
|
|
userGroupId: userGroup.id
|
2019-05-19 20:41:23 +09:00
|
|
|
} as UserGroupInvite);
|
2019-05-18 20:36:33 +09:00
|
|
|
});
|