2020-01-29 13:37:25 -06:00
|
|
|
import $ from 'cafy';
|
|
|
|
import define from '../../define';
|
2021-03-23 03:43:07 -05:00
|
|
|
import { genId } from '@/misc/gen-id';
|
2020-02-14 10:03:59 -06:00
|
|
|
import { Antennas, UserLists, UserGroupJoinings } from '../../../../models';
|
2021-03-23 03:43:07 -05:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
2020-01-29 13:37:25 -06:00
|
|
|
import { ApiError } from '../../error';
|
2021-03-23 01:06:56 -05:00
|
|
|
import { publishInternalEvent } from '../../../../services/stream';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['antennas'],
|
|
|
|
|
2020-02-15 06:33:32 -06:00
|
|
|
requireCredential: true as const,
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
kind: 'write:account',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
name: {
|
|
|
|
validator: $.str.range(1, 100)
|
|
|
|
},
|
|
|
|
|
|
|
|
src: {
|
2020-02-14 10:03:59 -06:00
|
|
|
validator: $.str.or(['home', 'all', 'users', 'list', 'group'])
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
userListId: {
|
|
|
|
validator: $.nullable.optional.type(ID),
|
|
|
|
},
|
|
|
|
|
2020-02-14 10:03:59 -06:00
|
|
|
userGroupId: {
|
|
|
|
validator: $.nullable.optional.type(ID),
|
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
keywords: {
|
|
|
|
validator: $.arr($.arr($.str))
|
|
|
|
},
|
|
|
|
|
2020-02-20 09:28:45 -06:00
|
|
|
excludeKeywords: {
|
|
|
|
validator: $.arr($.arr($.str))
|
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
users: {
|
|
|
|
validator: $.arr($.str)
|
|
|
|
},
|
|
|
|
|
|
|
|
caseSensitive: {
|
|
|
|
validator: $.bool
|
|
|
|
},
|
|
|
|
|
|
|
|
withReplies: {
|
|
|
|
validator: $.bool
|
|
|
|
},
|
|
|
|
|
|
|
|
withFile: {
|
|
|
|
validator: $.bool
|
|
|
|
},
|
|
|
|
|
|
|
|
notify: {
|
|
|
|
validator: $.bool
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchUserList: {
|
|
|
|
message: 'No such user list.',
|
|
|
|
code: 'NO_SUCH_USER_LIST',
|
|
|
|
id: '95063e93-a283-4b8b-9aa5-bcdb8df69a7f'
|
2020-02-14 10:03:59 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
noSuchUserGroup: {
|
|
|
|
message: 'No such user group.',
|
|
|
|
code: 'NO_SUCH_USER_GROUP',
|
|
|
|
id: 'aa3c0b9a-8cae-47c0-92ac-202ce5906682'
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
2021-03-06 07:34:11 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
ref: 'Antenna'
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
let userList;
|
2020-02-14 10:03:59 -06:00
|
|
|
let userGroupJoining;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2021-03-23 21:05:37 -05:00
|
|
|
if (ps.src === 'list' && ps.userListId) {
|
2020-01-29 13:37:25 -06:00
|
|
|
userList = await UserLists.findOne({
|
|
|
|
id: ps.userListId,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
2020-03-03 20:45:33 -06:00
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
if (userList == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchUserList);
|
|
|
|
}
|
2021-03-23 21:05:37 -05:00
|
|
|
} else if (ps.src === 'group' && ps.userGroupId) {
|
2020-02-14 10:03:59 -06:00
|
|
|
userGroupJoining = await UserGroupJoinings.findOne({
|
|
|
|
userGroupId: ps.userGroupId,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
2020-03-03 20:45:33 -06:00
|
|
|
|
2020-02-14 10:03:59 -06:00
|
|
|
if (userGroupJoining == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchUserGroup);
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
|
2021-03-23 01:06:56 -05:00
|
|
|
const antenna = await Antennas.insert({
|
2020-01-29 13:37:25 -06:00
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
userId: user.id,
|
|
|
|
name: ps.name,
|
|
|
|
src: ps.src,
|
|
|
|
userListId: userList ? userList.id : null,
|
2020-02-14 10:03:59 -06:00
|
|
|
userGroupJoiningId: userGroupJoining ? userGroupJoining.id : null,
|
2020-01-29 13:37:25 -06:00
|
|
|
keywords: ps.keywords,
|
2020-02-20 09:28:45 -06:00
|
|
|
excludeKeywords: ps.excludeKeywords,
|
2020-01-29 13:37:25 -06:00
|
|
|
users: ps.users,
|
|
|
|
caseSensitive: ps.caseSensitive,
|
|
|
|
withReplies: ps.withReplies,
|
|
|
|
withFile: ps.withFile,
|
|
|
|
notify: ps.notify,
|
2021-03-23 01:06:56 -05:00
|
|
|
}).then(x => Antennas.findOneOrFail(x.identifiers[0]));
|
|
|
|
|
|
|
|
publishInternalEvent('antennaCreated', antenna);
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
return await Antennas.pack(antenna);
|
|
|
|
});
|