summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/admin/federation/remove-all-following.ts
blob: 4a6f6e6261e5bab95a08fe911988535d989a2bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import $ from 'cafy';
import define from '../../../define';
import deleteFollowing from '../../../../../services/following/delete';
import { Followings, Users } from '../../../../../models';

export const meta = {
	desc: {
		'ja-JP': '指定したドメインの全ユーザーのフォローを全て解除します。',
		'en-US': 'Unfollow all users in the specified domain.'
	},

	tags: ['admin'],

	requireCredential: true as const,
	requireModerator: true,

	params: {
		host: {
			validator: $.str
		}
	}
};

export default define(meta, async (ps, me) => {
	const followings = await Followings.find({
		followerHost: ps.host
	});

	const pairs = await Promise.all(followings.map(f => Promise.all([
		Users.findOneOrFail(f.followerId),
		Users.findOneOrFail(f.followeeId)
	])));

	for (const pair of pairs) {
		deleteFollowing(pair[0], pair[1]);
	}
});