2021-08-19 07:55:45 -05:00
|
|
|
import define from '../../define';
|
|
|
|
import { genId } from '@/misc/gen-id';
|
|
|
|
import { Antennas, UserLists, UserGroupJoinings } from '@/models/index';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { publishInternalEvent } from '@/services/stream';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['antennas'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
kind: 'write:account',
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchUserList: {
|
|
|
|
message: 'No such user list.',
|
|
|
|
code: 'NO_SUCH_USER_LIST',
|
2021-12-09 08:58:30 -06:00
|
|
|
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',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: 'aa3c0b9a-8cae-47c0-92ac-202ce5906682',
|
|
|
|
},
|
2021-03-06 07:34:11 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 08:58:30 -06:00
|
|
|
ref: 'Antenna',
|
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-02-18 23:05:32 -06:00
|
|
|
const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
name: { type: 'string', minLength: 1, maxLength: 100 },
|
|
|
|
src: { type: 'string', enum: ['home', 'all', 'users', 'list', 'group'] },
|
|
|
|
userListId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
|
|
userGroupId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
|
|
keywords: { type: 'array', items: {
|
|
|
|
type: 'array', items: {
|
|
|
|
type: 'string',
|
|
|
|
},
|
|
|
|
} },
|
|
|
|
excludeKeywords: { type: 'array', items: {
|
|
|
|
type: 'array', items: {
|
|
|
|
type: 'string',
|
|
|
|
},
|
|
|
|
} },
|
|
|
|
users: { type: 'array', items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
caseSensitive: { type: 'boolean' },
|
|
|
|
withReplies: { type: 'boolean' },
|
|
|
|
withFile: { type: 'boolean' },
|
|
|
|
notify: { type: 'boolean' },
|
|
|
|
},
|
|
|
|
required: ['name', 'src', 'keywords', 'excludeKeywords', 'users', 'caseSensitive', 'withReplies', 'withFile', 'notify'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2020-01-29 13:37:25 -06:00
|
|
|
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);
|
|
|
|
});
|