aboutsummaryrefslogtreecommitdiffstats
path: root/slack/slack_user.py
blob: 6cb389743a08f4f347f21e3754faaf1ad16af2e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from __future__ import annotations

from typing import TYPE_CHECKING

if TYPE_CHECKING:
    from slack.slack_workspace import SlackApi, SlackWorkspace


class SlackUser:
    def __init__(self, workspace: SlackWorkspace, id: str):
        self.workspace = workspace
        self.id = id
        self.name: str

    @property
    def api(self) -> SlackApi:
        return self.workspace.api

    async def init(self):
        info = await self.api.fetch_users_info(self)
        if info["ok"] is False:
            # TODO: Handle error
            return
        self.name = info["user"]["name"]