-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
320 lines (270 loc) · 7.89 KB
/
app.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
from typing import Union
from fastapi import FastAPI, Query
import uvicorn
from PCSOLotto import PCSOLotto
from pprint import pprint
import textwrap
from datetime import datetime
app = FastAPI()
days_list = [
'Mon',
'Tue',
'Wed',
'Thu',
'Fri',
'Sat',
'Sun'
]
results_unavailable = 'Sorry, results are not available yet. Please check again later.'
params_desc = {
'start_date':
"""
Date to start searching.
Format has to be YYYY/MM/DD
""",
'end_date':
"""
Date to end searching.
Format has to be YYYY/MM/DD
""",
'days':
"""
Days to select.
""",
'games':
"""
Lotto games to search.
""",
'peso_sign':
"""
To prefix a peso sign in the jackpot, or not.
"""
}
tags_metadata = [
{
'name': 'latest',
'description': 'Retrieve lotto results from 3 days prior up to today.'
},
{
'name': 'today',
'description': 'Retrieve lotto results today.'
},
{
'name': 'yesterday',
'description': 'Retrieve lotto results from yesterday.'
}
]
def split_message(json: dict, text: str, n: int = 9):
if n == 9:
# makes sure that all the message is split evenly across 9 messages
n = round(len(text) / 9)
text_blocks = textwrap.wrap(
text,
width=n,
break_long_words=False,
break_on_hyphens=False,
drop_whitespace=True,
replace_whitespace=False
)
for text_block in text_blocks:
print(len(text_block))
json['messages'].append({'text': f'{text_block}'},)
return json
@app.get("/")
async def index():
return {
'message': 'Hello Chatfuel and World!'
}
@app.get("/api/custom")
async def custom(
start_date: str = Query(description=params_desc['start_date']),
end_date: str = Query(description=params_desc['end_date']),
days: Union[list[str], None] = Query(default=None,
description=params_desc['days']),
games: Union[list[str], None] = Query(default=None,
description=params_desc['games']),
peso_sign: bool = Query(default=True,
description=params_desc['peso_sign'])
):
lotto = PCSOLotto()
try:
datetime.strptime(start_date, '%Y/%m/%d')
except Exception as e:
print(e)
return {
'success': False,
'message': 'Invalid start_date parameter',
'detail': "Cannot parse start_date. Make sure it uses the format: YYYY/MM/DD"
}
try:
datetime.strptime(end_date, '%Y/%m/%d')
except Exception as e:
print(e)
return {
'success': False,
'message': 'Invalid end_date -arameter',
'detail': "Cannot parse start_date. Make sure it uses the format: YYYY/MM/DD"
}
print(f"Days: {days}")
if days is not None:
for day in days:
print(day)
if day not in days_list:
print(f"{day} not in days_list")
return {
'success': False,
'message': f"Invalid '{day}' day in days parameter",
'detail': f"Only allowed days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. '{day}' is not in the list."
}
results = lotto.results(
start_date=start_date,
end_date=end_date,
days=days,
games=games,
peso_sign=peso_sign
)
return {
'message': 'ok',
'results': results
}
@app.get("/api/latest")
async def latest(
games: Union[list[str], None] = Query(default=None,
description=params_desc['games']),
peso_sign: bool = Query(default=True,
description=params_desc['peso_sign']),
chatfuel: bool = False
):
lotto = PCSOLotto()
lotto_results_str_list = ""
if chatfuel:
json = {'messages': []}
results = lotto.results_default_pcso(
games=games,
peso_sign=peso_sign
)
if len(results) > 0:
lotto_results_str_list = "\n\n".join(lotto.results_str_list)
print(lotto_results_str_list)
response = split_message(json, lotto_results_str_list, 650)
else:
response = {
'success': False,
'message': results_unavailable,
'messages': [
{'text': results_unavailable}
]
}
pprint(response, indent=2)
return response
else:
results = lotto.results_default_pcso(
games=games,
peso_sign=peso_sign
)
pprint(results, indent=2)
if len(results) > 0:
return {
'success': True,
'message': 'ok',
'results': results
}
else:
return {
'success': False,
'message': results_unavailable
}
@app.get("/api/today")
async def today(
games: Union[list[str], None] = Query(default=None,
description=params_desc['games']),
peso_sign: bool = Query(default=True, description=params_desc['peso_sign']),
chatfuel: bool = False
):
lotto = PCSOLotto()
lotto_results_str_list = ""
if chatfuel:
json = {'messages': []}
results = lotto.results_today(
games=games,
peso_sign=peso_sign
)
if len(results) > 0:
lotto_results_str_list = "\n\n".join(lotto.results_str_list)
response = split_message(json, lotto_results_str_list, 500)
else:
response = {
'success': False,
'message': results_unavailable,
'messages': [
{'text': results_unavailable}
]
}
pprint(response, indent=2)
return response
else:
results = lotto.results_today(
games=games,
peso_sign=peso_sign
)
pprint(results, indent=2)
if len(results) > 0:
return {
'success': True,
'message': 'ok',
'results': results
}
else:
return {
'success': False,
'message': results_unavailable
}
@app.get("/api/yesterday")
async def yesterday(
games: Union[list[str], None] = Query(default=None,
description=params_desc['games']),
peso_sign: bool = Query(default=True,
description=params_desc['peso_sign']),
chatfuel: bool = False
):
lotto = PCSOLotto()
lotto_results_str_list = ""
if chatfuel:
json = {'messages': []}
results = lotto.results_yesterday(
games=games,
peso_sign=peso_sign
)
if len(results) > 0:
lotto_results_str_list = "\n\n".join(lotto.results_str_list)
print(lotto_results_str_list)
response = split_message(json, lotto_results_str_list, 500)
else:
response = {
'success': False,
'message': results_unavailable,
'messages': [
{'text': results_unavailable}
]
}
pprint(response, indent=2)
return response
else:
results = lotto.results_yesterday(
games=games,
peso_sign=peso_sign
)
pprint(results, indent=2)
if len(results) > 0:
return {
'success': True,
'message': 'ok',
'results': results
}
else:
return {
'success': False,
'message': results_unavailable
}
if __name__ == "__main__":
uvicorn.run("app:app", host="0.0.0.0")