2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 22:33:11 +02:00
|
|
|
import type { UserGroupsRepository } from '@/models/index.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { ApiError } from '../../../error.js';
|
2019-05-18 13:36:33 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['groups'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2019-05-18 13:36:33 +02:00
|
|
|
|
|
|
|
kind: 'write:user-groups',
|
|
|
|
|
2022-06-10 07:25:20 +02:00
|
|
|
description: 'Delete an existing group.',
|
|
|
|
|
2019-05-18 13:36:33 +02:00
|
|
|
errors: {
|
|
|
|
noSuchGroup: {
|
|
|
|
message: 'No such group.',
|
|
|
|
code: 'NO_SUCH_GROUP',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: '63dbd64c-cd77-413f-8e08-61781e210b38',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2019-05-18 13:36:33 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
groupId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['groupId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.userGroupsRepository)
|
|
|
|
private userGroupsRepository: UserGroupsRepository,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const userGroup = await this.userGroupsRepository.findOneBy({
|
|
|
|
id: ps.groupId,
|
|
|
|
userId: me.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (userGroup == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchGroup);
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.userGroupsRepository.delete(userGroup.id);
|
|
|
|
});
|
2019-05-18 13:36:33 +02:00
|
|
|
}
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|