summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/users/groups/joined.ts
blob: 97d168e527360b4449212c6d8a0e349fa92e5d42 (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
38
39
40
41
import define from '../../../define';
import { UserGroups, UserGroupJoinings } from '../../../../../models';
import { types, bool } from '../../../../../misc/schema';
import { Not, In } from 'typeorm';

export const meta = {
	desc: {
		'ja-JP': '自分の所属するユーザーグループ一覧を取得します。'
	},

	tags: ['groups', 'account'],

	requireCredential: true,

	kind: 'read:user-groups',

	res: {
		type: types.array,
		optional: bool.false, nullable: bool.false,
		items: {
			type: types.object,
			optional: bool.false, nullable: bool.false,
			ref: 'UserGroup',
		}
	},
};

export default define(meta, async (ps, me) => {
	const ownedGroups = await UserGroups.find({
		userId: me.id,
	});

	const joinings = await UserGroupJoinings.find({
		userId: me.id,
		...(ownedGroups.length > 0 ? {
			userGroupId: Not(In(ownedGroups.map(x => x.id)))
		} : {})
	});

	return await Promise.all(joinings.map(x => UserGroups.pack(x.userGroupId)));
});