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