-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_bottle.py
63 lines (45 loc) · 1.71 KB
/
main_bottle.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
#!/usr/bin/python3
from bottle import Bottle, HTTPError, request, run
import srv_api as api_
''' =====----- Global variables -----====='''
srv = Bottle()
# Корневой index.html
ROOT_INDEX = 'adds_srv/index.html'
''' =====----- Server resources -----===== '''
@srv.route('/', method='GET')
def server_root() -> str:
''' Аналог index.html в ServerRoot для начальной страницы
Returns:
[str] -- содержимое HTML-файла, заданного в глобальной
переменной ROOT_INDEX
'''
with open(ROOT_INDEX, 'r', encoding='utf-8') as f_:
return f_.read()
@srv.route('/index', method='GET')
def server_root() -> str:
''' Дубль index.html для отработки Swagger
Returns:
[str] -- содержимое HTML-файла, заданного в глобальной
переменной ROOT_INDEX
'''
with open(ROOT_INDEX, 'r', encoding='utf-8') as f_:
return f_.read()
@srv.route('/srv/auth/login', method='POST')
def login_post() -> dict:
''' Аутентификация на сервере через метод POST
'''
return api_.login_getpost(request.json)
@srv.route('/srv/auth/login', method='GET')
def login_get() -> dict:
''' Аутентификация на сервере через метод GET
'''
return api_.login_getpost(dict(request.query))
''' =====----- MAIN -----===== '''
if __name__ == '__main__':
run(
srv,
host='0.0.0.0',
port=8080,
debug=True
)
#####=====----- THE END -----=====#########################################