egirlskey/src/models/repositories/user-group.ts

67 lines
1.8 KiB
TypeScript
Raw Normal View History

2019-05-18 11:36:33 +00:00
import { EntityRepository, Repository } from 'typeorm';
import { UserGroup } from '../entities/user-group';
import { UserGroupJoinings } from '..';
2021-03-23 08:43:07 +00:00
import { SchemaType } from '@/misc/schema';
2019-05-18 11:36:33 +00:00
export type PackedUserGroup = SchemaType<typeof packedUserGroupSchema>;
@EntityRepository(UserGroup)
export class UserGroupRepository extends Repository<UserGroup> {
public async pack(
src: UserGroup['id'] | UserGroup,
): Promise<PackedUserGroup> {
2021-02-13 06:33:38 +00:00
const userGroup = typeof src === 'object' ? src : await this.findOneOrFail(src);
2019-05-18 11:36:33 +00:00
const users = await UserGroupJoinings.find({
userGroupId: userGroup.id
});
return {
id: userGroup.id,
createdAt: userGroup.createdAt.toISOString(),
name: userGroup.name,
2019-05-22 03:58:44 +00:00
ownerId: userGroup.userId,
2019-05-18 11:36:33 +00:00
userIds: users.map(x => x.userId)
};
}
}
export const packedUserGroupSchema = {
2019-06-27 09:04:09 +00:00
type: 'object' as const,
optional: false as const, nullable: false as const,
2019-05-18 11:36:33 +00:00
properties: {
id: {
2019-06-27 09:04:09 +00:00
type: 'string' as const,
optional: false as const, nullable: false as const,
2019-05-18 11:36:33 +00:00
format: 'id',
description: 'The unique identifier for this UserGroup.',
example: 'xxxxxxxxxx',
},
createdAt: {
2019-06-27 09:04:09 +00:00
type: 'string' as const,
optional: false as const, nullable: false as const,
2019-05-18 11:36:33 +00:00
format: 'date-time',
description: 'The date that the UserGroup was created.'
},
name: {
2019-06-27 09:04:09 +00:00
type: 'string' as const,
optional: false as const, nullable: false as const,
2019-05-18 11:36:33 +00:00
description: 'The name of the UserGroup.'
},
2019-05-22 03:58:44 +00:00
ownerId: {
2019-06-27 09:04:09 +00:00
type: 'string' as const,
nullable: false as const, optional: false as const,
2019-05-21 20:06:52 +00:00
format: 'id',
},
2019-05-18 11:36:33 +00:00
userIds: {
2019-06-27 09:04:09 +00:00
type: 'array' as const,
nullable: false as const, optional: true as const,
2019-05-18 11:36:33 +00:00
items: {
2019-06-27 09:04:09 +00:00
type: 'string' as const,
nullable: false as const, optional: false as const,
2019-05-18 11:36:33 +00:00
format: 'id',
}
},
},
};