2021-08-19 15:55:45 +03:00
|
|
|
import define from '../../define';
|
|
|
|
import { UserGroupInvitations } from '@/models/index';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
2019-05-19 14:41:23 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['account', 'groups'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2019-05-19 14:41:23 +03:00
|
|
|
|
|
|
|
kind: 'read:user-groups',
|
|
|
|
|
2021-03-06 15:34:11 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
properties: {
|
|
|
|
id: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
format: 'id',
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
group: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
ref: 'UserGroup',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2019-05-19 14:41:23 +03:00
|
|
|
|
2022-02-19 07:05:32 +02:00
|
|
|
const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2020-02-12 19:17:54 +02:00
|
|
|
const query = makePaginationQuery(UserGroupInvitations.createQueryBuilder('invitation'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`invitation.userId = :meId`, { meId: user.id })
|
|
|
|
.leftJoinAndSelect('invitation.userGroup', 'user_group');
|
2019-05-19 14:41:23 +03:00
|
|
|
|
2020-02-12 19:17:54 +02:00
|
|
|
const invitations = await query
|
2022-02-19 07:05:32 +02:00
|
|
|
.take(ps.limit)
|
2019-05-19 14:41:23 +03:00
|
|
|
.getMany();
|
|
|
|
|
2020-02-12 19:17:54 +02:00
|
|
|
return await UserGroupInvitations.packMany(invitations);
|
2019-05-19 14:41:23 +03:00
|
|
|
});
|