-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalice_serverless.py
44 lines (37 loc) · 1.42 KB
/
alice_serverless.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
import logging
from alice_scripts import Request
from alice_chess import AliceChess
from game import Game
stockfish_engine_path = "./stockfish"
if len(logging.getLogger().handlers) > 0:
root_handler = logging.getLogger().handlers[0]
root_handler.setFormatter(logging.Formatter(
'[%(levelname)s]\t%(name)s\t[%(request_id)s]\t%(message)s\n'
))
def handler(event, context):
"""
Entry-point for Serverless Function.
:param event: request payload.
:param context: information about current execution context.
:return: response to be serialized as JSON.
"""
if 'state' in event and 'session' in event['state']:
state = event['state']['session']
elif 'state' in event and 'application' in event['state']:
state = event['state']['application']
else:
state = {}
if 'request' in event and 'command' in event['request']:
req = Request(event)
else:
req = Request({'request': {'command': ''}})
alice_chess = AliceChess(Game.parse_and_build_game(stockfish_engine_path, state), req)
response = next(alice_chess.process_request())
return {
'version': event['version'],
'session': event['session'],
'response': response,
# https://yandex.ru/dev/dialogs/alice/doc/session-persistence.html
'session_state': alice_chess.get_session_state(),
# 'application_state': alice_chess.get_session_state(),
}