blob: 4386657f7daa06caa44221e92183e355cd6fdf5f (
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
raise Exception("Failed fetching user info")
self.name = info["user"]["name"]
|