2021-08-19 21:55:45 +09:00
|
|
|
import define from '../../../define';
|
|
|
|
|
import { UserGroups, UserGroupJoinings } from '@/models/index';
|
2019-05-19 20:41:23 +09:00
|
|
|
import { Not, In } from 'typeorm';
|
2019-05-18 20:36:33 +09:00
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
|
tags: ['groups', 'account'],
|
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2019-05-18 20:36:33 +09:00
|
|
|
|
|
|
|
|
kind: 'read:user-groups',
|
|
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'array',
|
|
|
|
|
optional: false, nullable: false,
|
2019-05-18 20:36:33 +09:00
|
|
|
items: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
|
optional: false, nullable: false,
|
2019-05-18 20:36:33 +09:00
|
|
|
ref: 'UserGroup',
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2019-05-18 20:36:33 +09:00
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2019-05-18 20:36:33 +09:00
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-05-18 20:36:33 +09:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-05-19 20:41:23 +09:00
|
|
|
const ownedGroups = await UserGroups.find({
|
|
|
|
|
userId: me.id,
|
|
|
|
|
});
|
|
|
|
|
|
2019-05-18 20:36:33 +09:00
|
|
|
const joinings = await UserGroupJoinings.find({
|
|
|
|
|
userId: me.id,
|
2019-05-19 23:29:28 +09:00
|
|
|
...(ownedGroups.length > 0 ? {
|
2021-12-09 23:58:30 +09:00
|
|
|
userGroupId: Not(In(ownedGroups.map(x => x.id))),
|
|
|
|
|
} : {}),
|
2019-05-18 20:36:33 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return await Promise.all(joinings.map(x => UserGroups.pack(x.userGroupId)));
|
|
|
|
|
});
|