2020-01-29 19:37:25 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { Antennas, UserLists, UserGroupJoinings } from '@/models/index';
|
|
|
|
import { publishInternalEvent } from '@/services/stream';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['antennas'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
kind: 'write:account',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
antennaId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
name: {
|
2021-12-09 14:58:30 +00:00
|
|
|
validator: $.str.range(1, 100),
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
src: {
|
2021-12-09 14:58:30 +00:00
|
|
|
validator: $.str.or(['home', 'all', 'users', 'list', 'group']),
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
userListId: {
|
|
|
|
validator: $.nullable.optional.type(ID),
|
|
|
|
},
|
|
|
|
|
2020-02-14 16:03:59 +00:00
|
|
|
userGroupId: {
|
|
|
|
validator: $.nullable.optional.type(ID),
|
|
|
|
},
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
keywords: {
|
2021-12-09 14:58:30 +00:00
|
|
|
validator: $.arr($.arr($.str)),
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
2020-02-20 15:28:45 +00:00
|
|
|
excludeKeywords: {
|
2021-12-09 14:58:30 +00:00
|
|
|
validator: $.arr($.arr($.str)),
|
2020-02-20 15:28:45 +00:00
|
|
|
},
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
users: {
|
2021-12-09 14:58:30 +00:00
|
|
|
validator: $.arr($.str),
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
caseSensitive: {
|
2021-12-09 14:58:30 +00:00
|
|
|
validator: $.bool,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
withReplies: {
|
2021-12-09 14:58:30 +00:00
|
|
|
validator: $.bool,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
withFile: {
|
2021-12-09 14:58:30 +00:00
|
|
|
validator: $.bool,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
notify: {
|
2021-12-09 14:58:30 +00:00
|
|
|
validator: $.bool,
|
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchAntenna: {
|
|
|
|
message: 'No such antenna.',
|
|
|
|
code: 'NO_SUCH_ANTENNA',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '10c673ac-8852-48eb-aa1f-f5b67f069290',
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
noSuchUserList: {
|
|
|
|
message: 'No such user list.',
|
|
|
|
code: 'NO_SUCH_USER_LIST',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '1c6b35c9-943e-48c2-81e4-2844989407f7',
|
2020-02-14 16:03:59 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
noSuchUserGroup: {
|
|
|
|
message: 'No such user group.',
|
|
|
|
code: 'NO_SUCH_USER_GROUP',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '109ed789-b6eb-456e-b8a9-6059d567d385',
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 14:58:30 +00:00
|
|
|
ref: 'Antenna',
|
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
};
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2020-01-29 19:37:25 +00:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
// Fetch the antenna
|
|
|
|
const antenna = await Antennas.findOne({
|
|
|
|
id: ps.antennaId,
|
2021-12-09 14:58:30 +00:00
|
|
|
userId: user.id,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (antenna == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchAntenna);
|
|
|
|
}
|
|
|
|
|
|
|
|
let userList;
|
2020-02-14 16:03:59 +00:00
|
|
|
let userGroupJoining;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2021-03-24 02:05:37 +00:00
|
|
|
if (ps.src === 'list' && ps.userListId) {
|
2020-01-29 19:37:25 +00:00
|
|
|
userList = await UserLists.findOne({
|
|
|
|
id: ps.userListId,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
2020-03-04 02:45:33 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
if (userList == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchUserList);
|
|
|
|
}
|
2021-03-24 02:05:37 +00:00
|
|
|
} else if (ps.src === 'group' && ps.userGroupId) {
|
2020-02-14 16:03:59 +00:00
|
|
|
userGroupJoining = await UserGroupJoinings.findOne({
|
|
|
|
userGroupId: ps.userGroupId,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
2020-03-04 02:45:33 +00:00
|
|
|
|
2020-02-14 16:03:59 +00:00
|
|
|
if (userGroupJoining == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchUserGroup);
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
await Antennas.update(antenna.id, {
|
|
|
|
name: ps.name,
|
|
|
|
src: ps.src,
|
|
|
|
userListId: userList ? userList.id : null,
|
2020-02-14 16:03:59 +00:00
|
|
|
userGroupJoiningId: userGroupJoining ? userGroupJoining.id : null,
|
2020-01-29 19:37:25 +00:00
|
|
|
keywords: ps.keywords,
|
2020-02-20 15:28:45 +00:00
|
|
|
excludeKeywords: ps.excludeKeywords,
|
2020-01-29 19:37:25 +00:00
|
|
|
users: ps.users,
|
|
|
|
caseSensitive: ps.caseSensitive,
|
|
|
|
withReplies: ps.withReplies,
|
|
|
|
withFile: ps.withFile,
|
|
|
|
notify: ps.notify,
|
|
|
|
});
|
|
|
|
|
2021-10-20 16:04:10 +00:00
|
|
|
publishInternalEvent('antennaUpdated', await Antennas.findOneOrFail(antenna.id));
|
2021-03-23 06:06:56 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
return await Antennas.pack(antenna.id);
|
|
|
|
});
|