2020-08-18 13:44:21 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { Channels, ChannelFollowings } from '@/models/index';
|
|
|
|
import { publishUserEvent } from '@/services/stream';
|
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',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
channelId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchChannel: {
|
|
|
|
message: 'No such channel.',
|
|
|
|
code: 'NO_SUCH_CHANNEL',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '19959ee9-0153-4c51-bbd9-a98c49dc59d6',
|
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-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2020-08-18 13:44:21 +00:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const channel = await Channels.findOne({
|
|
|
|
id: ps.channelId,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (channel == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchChannel);
|
|
|
|
}
|
|
|
|
|
|
|
|
await ChannelFollowings.delete({
|
|
|
|
followerId: user.id,
|
|
|
|
followeeId: channel.id,
|
|
|
|
});
|
2021-03-21 06:14:03 +00:00
|
|
|
|
|
|
|
publishUserEvent(user.id, 'unfollowChannel', channel);
|
2020-08-18 13:44:21 +00:00
|
|
|
});
|