Coverage for src/kwai/modules/identity/get_invitations.py: 100%
17 statements
« prev ^ index » next coverage.py v7.7.1, created at 2024-01-01 00:00 +0000
« prev ^ index » next coverage.py v7.7.1, created at 2024-01-01 00:00 +0000
1"""Implement the use case: get user invitations."""
3from dataclasses import dataclass
4from typing import AsyncIterator
6from kwai.modules.identity.user_invitations.user_invitation import UserInvitationEntity
7from kwai.modules.identity.user_invitations.user_invitation_repository import (
8 UserInvitationRepository,
9)
12@dataclass(kw_only=True, frozen=True, slots=True)
13class GetInvitationsCommand:
14 """Input for the use case.
16 [GetInvitations][kwai.modules.identity.get_invitations.GetInvitations]
18 Attributes:
19 offset: Offset to use. Default is None.
20 limit: The max. number of elements to return. Default is None, which means all.
21 """
23 offset: int | None = None
24 limit: int | None = None
25 active: bool = True
28class GetInvitations:
29 """Implementation of the use case.
31 Use this use case for getting user invitations.
32 """
34 def __init__(self, user_invitation_repo: UserInvitationRepository):
35 """Initialize the use case.
37 Args:
38 user_invitation_repo: A repository for getting the user invitations.
39 """
40 self._user_invitation_repo = user_invitation_repo
42 async def execute(
43 self, command: GetInvitationsCommand
44 ) -> tuple[int, AsyncIterator[UserInvitationEntity]]:
45 """Execute the use case.
47 Args:
48 command: The input for this use case.
50 Returns:
51 A tuple with the number of entities and an iterator for invitation entities.
52 """
53 query = self._user_invitation_repo.create_query()
54 if command.active:
55 query = query.filter_active()
57 return (
58 await query.count(),
59 self._user_invitation_repo.get_all(
60 query=query, offset=command.offset, limit=command.limit
61 ),
62 )