2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { ChannelFollowingsRepository, ChannelsRepository } from '@/models/index.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { IdService } from '@/core/IdService.js';
|
|
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { ApiError } from '../../error.js';
|
2020-08-18 16:44:21 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['channels'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2020-08-18 16:44:21 +03:00
|
|
|
|
|
|
|
kind: 'write:channels',
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchChannel: {
|
|
|
|
message: 'No such channel.',
|
|
|
|
code: 'NO_SUCH_CHANNEL',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'c0031718-d573-4e85-928e-10039f1fbb68',
|
2020-08-18 16:44:21 +03:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2020-08-18 16:44:21 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
channelId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['channelId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.channelsRepository)
|
|
|
|
private channelsRepository: ChannelsRepository,
|
2020-08-18 16:44:21 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
@Inject(DI.channelFollowingsRepository)
|
|
|
|
private channelFollowingsRepository: ChannelFollowingsRepository,
|
|
|
|
|
|
|
|
private idService: IdService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
2022-09-24 00:45:44 +03:00
|
|
|
const channel = await this.channelsRepository.findOneBy({
|
2022-09-17 21:27:08 +03:00
|
|
|
id: ps.channelId,
|
|
|
|
});
|
2020-08-18 16:44:21 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (channel == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchChannel);
|
|
|
|
}
|
2021-03-21 08:14:03 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
await this.channelFollowingsRepository.insert({
|
|
|
|
id: this.idService.genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
followerId: me.id,
|
|
|
|
followeeId: channel.id,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|