2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DriveFilesRepository, ChannelsRepository } from '@/models/index.js';
|
|
|
|
import { ChannelEntityService } from '@/core/entities/ChannelEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { ApiError } from '../../error.js';
|
2020-08-18 13:44:21 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['channels'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2020-08-18 13:44:21 +00:00
|
|
|
|
|
|
|
kind: 'write:channels',
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2020-08-18 13:44:21 +00:00
|
|
|
ref: 'Channel',
|
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchChannel: {
|
|
|
|
message: 'No such channel.',
|
|
|
|
code: 'NO_SUCH_CHANNEL',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: 'f9c5467f-d492-4c3c-9a8d-a70dacc86512',
|
2020-08-18 13:44:21 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
accessDenied: {
|
|
|
|
message: 'You do not have edit privilege of the channel.',
|
|
|
|
code: 'ACCESS_DENIED',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '1fb7cb09-d46a-4fdf-b8df-057788cce513',
|
2020-08-18 13:44:21 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
noSuchFile: {
|
|
|
|
message: 'No such file.',
|
|
|
|
code: 'NO_SUCH_FILE',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: 'e86c14a4-0da2-4032-8df3-e737a04c7f3b',
|
2020-08-18 13:44:21 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
channelId: { type: 'string', format: 'misskey:id' },
|
|
|
|
name: { type: 'string', minLength: 1, maxLength: 128 },
|
|
|
|
description: { type: 'string', nullable: true, minLength: 1, maxLength: 2048 },
|
|
|
|
bannerId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
|
|
},
|
|
|
|
required: ['channelId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.channelsRepository)
|
|
|
|
private channelsRepository: ChannelsRepository,
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Inject(DI.driveFilesRepository)
|
|
|
|
private driveFilesRepository: DriveFilesRepository,
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
private channelEntityService: ChannelEntityService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const channel = await this.channelsRepository.findOneBy({
|
|
|
|
id: ps.channelId,
|
|
|
|
});
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
if (channel == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchChannel);
|
|
|
|
}
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
if (channel.userId !== me.id) {
|
|
|
|
throw new ApiError(meta.errors.accessDenied);
|
|
|
|
}
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
// eslint:disable-next-line:no-unnecessary-initializer
|
|
|
|
let banner = undefined;
|
|
|
|
if (ps.bannerId != null) {
|
|
|
|
banner = await this.driveFilesRepository.findOneBy({
|
|
|
|
id: ps.bannerId,
|
|
|
|
userId: me.id,
|
|
|
|
});
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
if (banner == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchFile);
|
|
|
|
}
|
|
|
|
} else if (ps.bannerId === null) {
|
|
|
|
banner = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.channelsRepository.update(channel.id, {
|
|
|
|
...(ps.name !== undefined ? { name: ps.name } : {}),
|
|
|
|
...(ps.description !== undefined ? { description: ps.description } : {}),
|
|
|
|
...(banner ? { bannerId: banner.id } : {}),
|
|
|
|
});
|
|
|
|
|
|
|
|
return await this.channelEntityService.pack(channel.id, me);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|