blob: 8fcd445557c235f9e47717a680bcdd689a300b55 (
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
25
26
27
|
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
@property
def _api(self) -> SlackApi:
return self.workspace.api
@property
def nick(self):
return self._info["name"]
async def init(self):
info = await self._api.fetch_users_info(self)
if info["ok"] is False:
# TODO: Handle error
raise Exception("Failed fetching user info")
self._info = info["user"]
|