2021-08-19 14:55:45 +02:00
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { Channels, ChannelFollowings } from '@/models/index';
|
|
|
|
import { genId } from '@/misc/gen-id';
|
|
|
|
import { publishUserEvent } from '@/services/stream';
|
2020-08-18 15:44:21 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['channels'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2020-08-18 15:44:21 +02:00
|
|
|
|
|
|
|
kind: 'write:channels',
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchChannel: {
|
|
|
|
message: 'No such channel.',
|
|
|
|
code: 'NO_SUCH_CHANNEL',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'c0031718-d573-4e85-928e-10039f1fbb68',
|
2020-08-18 15:44:21 +02:00
|
|
|
},
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
channelId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['channelId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2020-08-18 15:44:21 +02:00
|
|
|
const channel = await Channels.findOne({
|
|
|
|
id: ps.channelId,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (channel == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchChannel);
|
|
|
|
}
|
|
|
|
|
2021-03-21 13:27:09 +01:00
|
|
|
await ChannelFollowings.insert({
|
2020-08-18 15:44:21 +02:00
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
followerId: user.id,
|
|
|
|
followeeId: channel.id,
|
|
|
|
});
|
2021-03-21 07:14:03 +01:00
|
|
|
|
|
|
|
publishUserEvent(user.id, 'followChannel', channel);
|
2020-08-18 15:44:21 +02:00
|
|
|
});
|