This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
challenger.py
53 lines (45 loc) · 2.42 KB
/
challenger.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
from collections.abc import Iterator
from queue import Empty, Queue
from threading import Thread
from api import API
from lichess_bot_dataclasses import API_Challenge_Reponse, Challenge_Request, Challenge_Response
class Challenger:
def __init__(self, config: dict, api: API) -> None:
self.config = config
self.api = api
def create(self, challenge_request: Challenge_Request) -> Iterator[Challenge_Response]:
response_queue: Queue[API_Challenge_Reponse] = Queue()
Thread(target=self.api.create_challenge, args=(challenge_request, response_queue), daemon=True).start()
challenge_id = None
try:
while response := response_queue.get(timeout=challenge_request.timeout):
if response.challenge_id:
challenge_id = response.challenge_id
yield Challenge_Response(challenge_id=challenge_id)
# More api challenge responses expected
continue
if response.was_accepted:
yield Challenge_Response(success=True)
elif response.was_declined:
yield Challenge_Response(success=False)
elif response.has_reached_rate_limit:
print(f'Challenge against {challenge_request.opponent_username} failed due to Lichess rate limit.')
yield Challenge_Response(success=False, has_reached_rate_limit=True)
elif response.invalid_initial:
print('Challenge failed due to invalid initial time.')
yield Challenge_Response(success=False, is_misconfigured=True)
elif response.invalid_increment:
print('Challenge failed due to invalid increment time.')
yield Challenge_Response(success=False, is_misconfigured=True)
elif response.error:
print(response.error)
yield Challenge_Response(success=False)
# End of api challenge response
return
except Empty:
print(f'Challenge against {challenge_request.opponent_username} has timed out.')
if challenge_id is None:
print('Could not cancel challenge because the challenge_id was not set in "Challenger"!')
else:
self.api.cancel_challenge(challenge_id)
yield Challenge_Response(success=False)