mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-17 15:18:59 +01:00
8caf288ac1
* drop group * Update operations.ts
123 lines
3.4 KiB
TypeScript
123 lines
3.4 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { IdService } from '@/core/IdService.js';
|
|
import type { UserListsRepository, AntennasRepository } from '@/models/index.js';
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
import { AntennaEntityService } from '@/core/entities/AntennaEntityService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { RoleService } from '@/core/RoleService.js';
|
|
import { ApiError } from '../../error.js';
|
|
|
|
export const meta = {
|
|
tags: ['antennas'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'write:account',
|
|
|
|
errors: {
|
|
noSuchUserList: {
|
|
message: 'No such user list.',
|
|
code: 'NO_SUCH_USER_LIST',
|
|
id: '95063e93-a283-4b8b-9aa5-bcdb8df69a7f',
|
|
},
|
|
|
|
tooManyAntennas: {
|
|
message: 'You cannot create antenna any more.',
|
|
code: 'TOO_MANY_ANTENNAS',
|
|
id: 'faf47050-e8b5-438c-913c-db2b1576fde4',
|
|
},
|
|
},
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'Antenna',
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
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: ['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 roleService: RoleService,
|
|
private idService: IdService,
|
|
private globalEventService: GlobalEventService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const currentAntennasCount = await this.antennasRepository.countBy({
|
|
userId: me.id,
|
|
});
|
|
if (currentAntennasCount > (await this.roleService.getUserPolicies(me.id)).antennaLimit) {
|
|
throw new ApiError(meta.errors.tooManyAntennas);
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
const antenna = await this.antennasRepository.insert({
|
|
id: this.idService.genId(),
|
|
createdAt: new Date(),
|
|
userId: me.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,
|
|
}).then(x => this.antennasRepository.findOneByOrFail(x.identifiers[0]));
|
|
|
|
this.globalEventService.publishInternalEvent('antennaCreated', antenna);
|
|
|
|
return await this.antennaEntityService.pack(antenna);
|
|
});
|
|
}
|
|
}
|