2022-02-27 03:07:39 +01:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { genId } from '@/misc/gen-id.js';
|
|
|
|
import { Antennas, UserLists, UserGroupJoinings } from '@/models/index.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
|
|
|
import { publishInternalEvent } from '@/services/stream.js';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['antennas'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
kind: 'write:account',
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchUserList: {
|
|
|
|
message: 'No such user list.',
|
|
|
|
code: 'NO_SUCH_USER_LIST',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: '95063e93-a283-4b8b-9aa5-bcdb8df69a7f',
|
2020-02-14 17:03:59 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
noSuchUserGroup: {
|
|
|
|
message: 'No such user group.',
|
|
|
|
code: 'NO_SUCH_USER_GROUP',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'aa3c0b9a-8cae-47c0-92ac-202ce5906682',
|
|
|
|
},
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 15:58:30 +01:00
|
|
|
ref: 'Antenna',
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
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 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2020-01-29 20:37:25 +01:00
|
|
|
let userList;
|
2020-02-14 17:03:59 +01:00
|
|
|
let userGroupJoining;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2021-03-24 03:05:37 +01:00
|
|
|
if (ps.src === 'list' && ps.userListId) {
|
2022-03-26 07:34:00 +01:00
|
|
|
userList = await UserLists.findOneBy({
|
2020-01-29 20:37:25 +01:00
|
|
|
id: ps.userListId,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
2020-03-04 03:45:33 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
if (userList == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchUserList);
|
|
|
|
}
|
2021-03-24 03:05:37 +01:00
|
|
|
} else if (ps.src === 'group' && ps.userGroupId) {
|
2022-03-26 07:34:00 +01:00
|
|
|
userGroupJoining = await UserGroupJoinings.findOneBy({
|
2020-02-14 17:03:59 +01:00
|
|
|
userGroupId: ps.userGroupId,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
2020-03-04 03:45:33 +01:00
|
|
|
|
2020-02-14 17:03:59 +01:00
|
|
|
if (userGroupJoining == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchUserGroup);
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
2021-03-23 07:06:56 +01:00
|
|
|
const antenna = await Antennas.insert({
|
2020-01-29 20:37:25 +01:00
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
userId: user.id,
|
|
|
|
name: ps.name,
|
|
|
|
src: ps.src,
|
|
|
|
userListId: userList ? userList.id : null,
|
2020-02-14 17:03:59 +01:00
|
|
|
userGroupJoiningId: userGroupJoining ? userGroupJoining.id : null,
|
2020-01-29 20:37:25 +01:00
|
|
|
keywords: ps.keywords,
|
2020-02-20 16:28:45 +01:00
|
|
|
excludeKeywords: ps.excludeKeywords,
|
2020-01-29 20:37:25 +01:00
|
|
|
users: ps.users,
|
|
|
|
caseSensitive: ps.caseSensitive,
|
|
|
|
withReplies: ps.withReplies,
|
|
|
|
withFile: ps.withFile,
|
|
|
|
notify: ps.notify,
|
2022-03-26 07:34:00 +01:00
|
|
|
}).then(x => Antennas.findOneByOrFail(x.identifiers[0]));
|
2021-03-23 07:06:56 +01:00
|
|
|
|
|
|
|
publishInternalEvent('antennaCreated', antenna);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
return await Antennas.pack(antenna);
|
|
|
|
});
|