2022-02-27 11:07:39 +09:00
|
|
|
import define from '../../../define.js';
|
|
|
|
|
import deleteFollowing from '@/services/following/delete.js';
|
|
|
|
|
import { Followings, Users } from '@/models/index.js';
|
2019-02-07 21:59:18 +09:00
|
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['admin'],
|
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2019-02-07 21:59:18 +09:00
|
|
|
requireModerator: true,
|
2022-02-19 14:05:32 +09:00
|
|
|
} as const;
|
2019-02-07 21:59:18 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
|
properties: {
|
|
|
|
|
host: { type: 'string' },
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2022-02-19 14:05:32 +09:00
|
|
|
required: ['host'],
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2019-02-07 21:59:18 +09:00
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 14:05:32 +09:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2022-03-26 15:34:00 +09:00
|
|
|
const followings = await Followings.findBy({
|
2021-12-09 23:58:30 +09:00
|
|
|
followerHost: ps.host,
|
2019-02-07 21:59:18 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const pairs = await Promise.all(followings.map(f => Promise.all([
|
2022-03-26 15:34:00 +09:00
|
|
|
Users.findOneByOrFail({ id: f.followerId }),
|
|
|
|
|
Users.findOneByOrFail({ id: f.followeeId }),
|
2019-02-07 21:59:18 +09:00
|
|
|
])));
|
|
|
|
|
|
|
|
|
|
for (const pair of pairs) {
|
|
|
|
|
deleteFollowing(pair[0], pair[1]);
|
|
|
|
|
}
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|