forked from cibere/kick.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.py
410 lines (326 loc) · 11.3 KB
/
client.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
from __future__ import annotations
import asyncio
import logging
from logging import getLogger
from typing import TYPE_CHECKING, Any, Callable, Coroutine, TypeVar
from .chatroom import Chatroom, PartialChatroom
from .chatter import PartialChatter
from .http import HTTPClient
from .livestream import PartialLivestream
from .message import Message
from .users import ClientUser, PartialUser, User, DestinationInfo
from .utils import MISSING, decorator, setup_logging
if TYPE_CHECKING:
from typing_extensions import Self
EventT = TypeVar("EventT", bound=Callable[..., Coroutine[Any, Any, None]])
LOGGER = getLogger(__name__)
__all__ = ("Credentials", "Client")
class Credentials:
"""
This holds credentials that can be used to authenticate yourself with kick.
Parameters
-----------
username: Optional[str]
The username to login with. Can not be used with the `email` arg
email: Optional[str]
The email to login with. Can not be used with the `username` arg
password: str
The account's password
one_time_password: Optional[str]
The 2FA code to login with
Attributes
-----------
username: Optional[str]
The username to login with. Can not be used with the `email` arg
email: Optional[str]
The email to login with. Can not be used with the `username` arg
password: str
The account's password
one_time_password: Optional[str]
The 2FA code to login with
"""
def __init__(
self,
*,
username: str = MISSING,
email: str = MISSING,
password: str,
one_time_password: str | None = None,
) -> None:
if username is MISSING and email is MISSING:
raise ValueError("Provide either a `username` or `email` arg")
elif username is not MISSING and email is not MISSING:
raise ValueError("Provide `username` or `email`, not both.")
self.email: str = username or email
self.username_was_provided: bool = username is not MISSING
self.password: str = password
self.one_time_password: str | None = one_time_password
class Client:
"""
This repersents the Client you can use to interact with kick.
Parameters
-----------
**options: Any
Options that can be passed
Options
-----------
whitelisted: bool = False
If you have been api whitelisted. If set to True, the bypass script will not be used.
bypass_port: int = 9090
The port the bypass script is running on. Defaults to 9090
bypass_host: str = "http://localhost"
The host of the bypass script.
Attributes
-----------
user: ClientUser | None
The user you are logged in as. It is `None` until `Client.login` is called.
"""
def __init__(self, **options: Any) -> None:
self._options = options
self.http = HTTPClient(self)
self._chatrooms: dict[int, Chatroom | PartialChatroom] = {}
self._watched_users: dict[int, User] = {}
self.user: ClientUser | None = None
LOGGER.warning(
"Kick's api is undocumented, possible unstable, and can change at any time without warning"
)
def get_partial_chatroom(
self, chatroom_id: int, streamer_name: str
) -> PartialChatroom:
"""
Gets a partial chatroom.
Parameters
-----------
chatroom_id: int
The id of the chatroom you want to connect to
streamer_name: str
The name of the streamer who's chatroom it is
Returns
-----------
`PartialChatroom`
The partial chatroom
"""
return PartialChatroom(
id=chatroom_id, streamer_name=streamer_name, http=self.http
)
def get_chatroom(self, chatroom_id: int, /) -> PartialChatroom | Chatroom | None:
"""
Gets a chatroom out of a cache that contains chatrooms that you are connected to.
Parameters
-----------
chatroom_id: int
The chatroom's id
Returns
-----------
Chatroom | None
Either the chatroom, or None
"""
return self._chatrooms.get(chatroom_id)
def get_partial_user(self, *, username: str, id: int) -> PartialUser:
"""
Gets a partial user instance by the username and id provided.
Parameters
-----------
username: str
The user's name
id: int
The user's id
Returns
-----------
`PartialUser`
The partial user
"""
return PartialUser(username=username, id=id, http=self.http)
def get_partial_chatter(
self, *, streamer_name: str, chatter_name: str
) -> PartialChatter:
"""
Gets a partial chatter instance by the streamer and chatter names provided.
Parameters
-----------
streamer_name: str
The streamer's username or slug
chatter_name: str
The chatter's username or slug
Returns
-----------
`PartialChatter`
The partial chatter
"""
return PartialChatter(
streamer_name=streamer_name, chatter_name=chatter_name, http=self.http
)
async def fetch_user(self, name: str, /) -> User:
"""
|coro|
Fetches a user from the API.
Parameters
-----------
name: str
The user's slug or username
Raises
-----------
HTTPException
Fetching Failed
NotFound
No user with the username/slug exists
Returns
-----------
User
The user object associated with the streamer
"""
data = await self.http.get_user(name)
user = User(data=data, http=self.http)
return user
async def fetch_stream_url_and_key(self) -> DestinationInfo:
"""
|coro|
Fetches your stream URL and stream key from the API.
You must be authenticated to use this endpoint.
Raises
-----------
HTTPException
Fetching Failed
Forbidden
You are not authenticated
Returns
-----------
DestinationInfo
"""
data = await self.http.fetch_stream_destination_url_and_key()
return DestinationInfo(data=data)
def dispatch(self, event_name: str, *args, **kwargs) -> None:
event_name = f"on_{event_name}"
event = getattr(self, event_name, None)
if event is not None:
asyncio.create_task(
event(*args, **kwargs), name=f"event-dispatch: {event_name}"
)
@decorator
def event(self, coro: EventT) -> EventT:
"""
Lets you set an event outside of a subclass.
"""
setattr(self, coro.__name__, coro)
return coro
async def login(self, credentials: Credentials) -> None:
"""
|coro|
Authenticates yourself, and fills `Client.user`
Unlike `Client.start`, this does not start the websocket
Parameters
-----------
credentials: Credentials
The credentials to authenticate yourself with
"""
await self.http.login(credentials)
data = await self.http.get_me()
self.user = ClientUser(data=data, http=self.http)
async def start(self, credentials: Credentials | None = None) -> None:
"""
|coro|
Starts the websocket so you can receive events
And authenticate yourself if credentials are provided.
Parameters
-----------
credentials: Optional[Credentials]
The credentials to authenticate yourself with, if any
"""
if credentials is not None:
await self.login(credentials)
await self.http.start()
async def close(self) -> None:
"""
|coro|
Closes the HTTPClient, no requests can be made after this.
"""
await self.http.close()
async def __aenter__(self) -> Self:
return self
async def __aexit__(self, exc_type, exc, tb) -> None:
await self.close()
async def on_ready(self) -> None:
"""
|coro|
on_ready is an event that can be overriden with the `Client.event` decorator or with a subclass.
This is called after the client has started the websocket and is receiving events.
"""
async def on_message(self, message: Message) -> None:
"""
|coro|
on_ready is an event that can be overriden with the `Client.event` decorator or with a subclass.
This is called when a message is received over the websocket
Parameters
-----------
message: `Message`
The message that was received
"""
async def on_payload_receive(self, event: str, payload: dict) -> None:
"""
|coro|
on_payload_receive is an event that can be overriden with the `Client.event` decorator or with a subclass.
This is called when an event is received from the websocket.
Parameters
-----------
event: str
The payload's event
payload: dict
The payload
"""
async def on_livestream_start(self, livestream: PartialLivestream) -> None:
"""
|coro|
on_livestream_start is an event that can be overriden with the `Client.event` decorator or with a subclass.
This is called when a user that is being watched starts streaming
Parameters
-----------
livestream: `PartialLivestream`
The livestream
"""
async def on_follow(self, streamer: User) -> None:
"""
|coro|
on_livestream_start is an event that can be overriden with the `Client.event` decorator or with a subclass.
This is called when someone starts following a streamer that is being watched.
Parameters
-----------
streamer: `User`
The streamer
"""
async def on_unfollow(self, streamer: User) -> None:
"""
|coro|
on_livestream_start is an event that can be overriden with the `Client.event` decorator or with a subclass.
This is called when someone stops following a streamer that is being watched.
Parameters
-----------
streamer: `PartialLivestream`
The streamer
"""
def run(
self,
credentials: Credentials | None = None,
*,
handler: logging.Handler = MISSING,
formatter: logging.Formatter = MISSING,
level: int = MISSING,
root: bool = True,
stream_supports_colour: bool = False,
) -> None:
"""
Starts the websocket so you can receive events
And authenticate yourself if credentials are provided.
`Client.run` automatically calls `utils.setup_logging` with the provided kwargs, and calls `Client.start`.
Parameters
-----------
credentials: Optional[Credentials]
The credentials to authenticate yourself with, if any
"""
setup_logging(
handler=handler,
formatter=formatter,
level=level,
root=root,
stream_supports_colour=stream_supports_colour,
)
asyncio.run(self.start(credentials))