forked from mirror/misskey
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
130 lines
3.4 KiB
TypeScript
130 lines
3.4 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { AntennasRepository, UserListsRepository } from '@/models/index.js';
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
import { AntennaEntityService } from '@/core/entities/AntennaEntityService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { ApiError } from '../../error.js';
|
|
|
|
export const meta = {
|
|
tags: ['antennas'],
|
|
|
|
requireCredential: true,
|
|
|
|
prohibitMoved: true,
|
|
|
|
kind: 'write:account',
|
|
|
|
errors: {
|
|
noSuchAntenna: {
|
|
message: 'No such antenna.',
|
|
code: 'NO_SUCH_ANTENNA',
|
|
id: '10c673ac-8852-48eb-aa1f-f5b67f069290',
|
|
},
|
|
|
|
noSuchUserList: {
|
|
message: 'No such user list.',
|
|
code: 'NO_SUCH_USER_LIST',
|
|
id: '1c6b35c9-943e-48c2-81e4-2844989407f7',
|
|
},
|
|
},
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'Antenna',
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
antennaId: { type: 'string', format: 'misskey:id' },
|
|
name: { type: 'string', minLength: 1, maxLength: 100 },
|
|
src: { type: 'string', enum: ['home', 'all', 'users', 'list'] },
|
|
userListId: { 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: ['antennaId', 'name', 'src', 'keywords', 'excludeKeywords', 'users', 'caseSensitive', 'withReplies', 'withFile', 'notify'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject(DI.antennasRepository)
|
|
private antennasRepository: AntennasRepository,
|
|
|
|
@Inject(DI.userListsRepository)
|
|
private userListsRepository: UserListsRepository,
|
|
|
|
private antennaEntityService: AntennaEntityService,
|
|
private globalEventService: GlobalEventService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
// Fetch the antenna
|
|
const antenna = await this.antennasRepository.findOneBy({
|
|
id: ps.antennaId,
|
|
userId: me.id,
|
|
});
|
|
|
|
if (antenna == null) {
|
|
throw new ApiError(meta.errors.noSuchAntenna);
|
|
}
|
|
|
|
let userList;
|
|
|
|
if (ps.src === 'list' && ps.userListId) {
|
|
userList = await this.userListsRepository.findOneBy({
|
|
id: ps.userListId,
|
|
userId: me.id,
|
|
});
|
|
|
|
if (userList == null) {
|
|
throw new ApiError(meta.errors.noSuchUserList);
|
|
}
|
|
}
|
|
|
|
await this.antennasRepository.update(antenna.id, {
|
|
name: ps.name,
|
|
src: ps.src,
|
|
userListId: userList ? userList.id : null,
|
|
keywords: ps.keywords,
|
|
excludeKeywords: ps.excludeKeywords,
|
|
users: ps.users,
|
|
caseSensitive: ps.caseSensitive,
|
|
withReplies: ps.withReplies,
|
|
withFile: ps.withFile,
|
|
notify: ps.notify,
|
|
isActive: true,
|
|
lastUsedAt: new Date(),
|
|
});
|
|
|
|
this.globalEventService.publishInternalEvent('antennaUpdated', await this.antennasRepository.findOneByOrFail({ id: antenna.id }));
|
|
|
|
return await this.antennaEntityService.pack(antenna.id);
|
|
});
|
|
}
|
|
}
|