-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.py
676 lines (576 loc) · 21.3 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
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
"""This is the main file of the lambda application
This module contains the handler method
"""
import base64
import os
import boot
from flambda_app import APP_NAME, APP_VERSION, http_helper
from flambda_app import helper
from flambda_app.config import get_config
from flambda_app.enums.messages import MessagesEnum
from flambda_app.exceptions import ApiException, ValidationException, CustomException
from flambda_app.flambda import Flambda
from flambda_app.helper import open_vendor_file, print_routes
from flambda_app.http_helper import CUSTOM_DEFAULT_HEADERS, set_hateos_links, set_hateos_meta, \
get_favicon_32x32_data, get_favicon_16x16_data
from flambda_app.http_resources.request import ApiRequest
from flambda_app.http_resources.response import ApiResponse
from flambda_app.logging import get_logger, set_debug_mode
from flambda_app.openapi import api_schemas
from flambda_app.openapi import spec, get_doc, generate_openapi_yml
from flambda_app.services.healthcheck_manager import HealthCheckManager
from flambda_app.services.product_manager import ProductManager
from flambda_app.services.v1.product_service import ProductService as ProductServiceV1
# load directly by boot
ENV = boot.get_environment()
# boot.load_dot_env(ENV)
# config
CONFIG = get_config()
# debug
DEBUG = helper.debug_mode()
# keep in this order, the app generic stream handler will be removed
APP = Flambda(APP_NAME)
# Logger
LOGGER = get_logger(force=True)
# override the APP logger
APP.logger = LOGGER
# override the log configs
if DEBUG:
# override to the level desired
set_debug_mode(LOGGER)
API_ROOT = os.environ['API_ROOT'] if 'API_ROOT' in os.environ else ''
API_ROOT_ENDPOINT = API_ROOT if API_ROOT != '' or API_ROOT is None else '/'
LOGGER.info("API_ROOT_ENDPOINT: {}".format(API_ROOT_ENDPOINT))
@APP.route(API_ROOT_ENDPOINT)
def index():
"""
API Root path
:return: Returns the name and the current version of the project
# pylint: disable=line-too-long
See: https://madeiramadeira.atlassian.net/wiki/spaces/CAR/pages/2244149708/WIP+-+Guidelines+-+RESTful+e+HATEOS#Raiz-do-projeto
:rtype: flask.Response
"""
body = {"app": f'{APP_NAME}:{APP_VERSION}'}
return http_helper.create_response(body=body, status_code=200)
@APP.route(API_ROOT + '/alive')
def alive():
"""
Health check path
:return Returns an intelligent healthcheck that describe what resource are working or not.
# pylint: disable=line-too-long
See https://madeiramadeira.atlassian.net/wiki/spaces/CAR/pages/2226749441/Guidelines+para+projetos#Health-Check
# pylint: disable=line-too-long
See https://docs.microsoft.com/en-us/dotnet/architecture/microservices/implement-resilient-applications/monitor-app-health
:rtype: flask.Response
---
get:
summary: Service Health Method
responses:
200:
description: Success response
content:
application/json:
schema: HealthCheckSchema
424:
description: Failed dependency response
content:
application/json:
schema: HealthCheckSchema
503:
description: Service unavailable response
content:
application/json:
schema: HealthCheckSchema
"""
service = HealthCheckManager()
return service.check()
@APP.route(API_ROOT + '/favicon-32x32.png')
def favicon():
"""
Favicon path
:return Returns a favicon for the browser with size 32x32
:rtype: flask.Response
"""
headers = CUSTOM_DEFAULT_HEADERS.copy()
headers['Content-Type'] = "image/png"
data = get_favicon_32x32_data()
if helper.is_running_on_lambda():
data_b64 = {
'headers': headers,
'statusCode': 200,
'body': data,
'isBase64Encoded': True
}
data = helper.to_json(data_b64)
headers = {"Content-Type": "application/json"}
else:
data = base64.b64decode(data)
return http_helper.create_response(body=data, status_code=200, headers=headers)
@APP.route(API_ROOT + '/favicon-16x16.png')
def favicon16():
"""
Favicon path
:return Returns a favicon for the browser with size 16x16
:rtype: flask.Response
"""
headers = CUSTOM_DEFAULT_HEADERS.copy()
headers['Content-Type'] = "image/png"
data = get_favicon_16x16_data()
if helper.is_running_on_lambda():
data_b64 = {
'headers': headers,
'statusCode': 200,
'body': data,
'isBase64Encoded': True
}
data = helper.to_json(data_b64)
headers = {"Content-Type": "application/json"}
else:
data = base64.b64decode(data)
return http_helper.create_response(body=data, status_code=200, headers=headers)
@APP.route(API_ROOT + '/docs')
def docs():
"""
Swagger OpenApi documentation
:return Returns the Swagger UI interface for test operations
# pylint: disable=line-too-long
See https://madeiramadeira.atlassian.net/wiki/spaces/CAR/pages/2226749441/Guidelines+para+projetos#Swagger
:rtype flask.Response
"""
headers = CUSTOM_DEFAULT_HEADERS.copy()
headers['Content-Type'] = "text/html"
html_file = open_vendor_file('./public/swagger/index.html', 'r')
html = html_file.read()
return http_helper.create_response(
body=html, status_code=200, headers=headers)
@APP.route(API_ROOT + '/openapi.yml')
def openapi():
"""
Swagger OpenApi documentation route
:return Returns the openapi.yml generated the API specification file
# pylint: disable=line-too-long
See https://madeiramadeira.atlassian.net/wiki/spaces/CAR/pages/2226749441/Guidelines+para+projetos#Swagger
:rtype flask.Response
"""
headers = CUSTOM_DEFAULT_HEADERS.copy()
headers['Content-Type'] = "text/yaml"
html_file = open_vendor_file('./public/swagger/openapi.yml', 'r')
html = html_file.read()
return http_helper.create_response(
body=html, status_code=200, headers=headers)
# product routes
@APP.route(API_ROOT + '/v1/product', methods=['GET'])
def product_list():
"""
Product list route
:return Endpoint with RESTful pattern
# pylint: disable=line-too-long
See https://madeiramadeira.atlassian.net/wiki/spaces/CAR/pages/2244149708/WIP+-+Guidelines+-+RESTful+e+HATEOS
:rtype flask.Response
---
get:
summary: Product List
parameters:
- name: limit
in: query
description: "List limit"
required: false
schema:
type: int
example: 20
- name: offset
in: query
description: "List offset"
required: false
schema:
type: int
example: 0
- name: fields
in: query
description: "Filter fields with comma"
required: false
schema:
type: string
example:
- name: order_by
in: query
description: "Ordination of list"
required: false
schema:
type: string
enum:
- "asc"
- "desc"
- name: sort_by
in: query
description: "Sorting of the list"
required: false
schema:
type: string
example: id
responses:
200:
description: Success response
content:
application/json:
schema: HateosProductListResponseSchema
4xx:
description: Error response
content:
application/json:
schema: ProductListErrorResponseSchema
5xx:
description: Service fail response
content:
application/json:
schema: ProductListErrorResponseSchema
"""
request = ApiRequest().parse_request(APP)
LOGGER.info(f'request: {request}')
status_code = 200
response = ApiResponse(request)
response.set_hateos(True)
manager = ProductManager(logger=LOGGER, product_service=ProductServiceV1(logger=LOGGER))
manager.debug(DEBUG)
try:
data = manager.list(request.to_dict())
response.set_data(data)
response.set_total(manager.count(request.to_dict()))
# hateos
response.links = None
set_hateos_meta(request, response)
# LOGGER.info(data)
# LOGGER.info(response.data)
except CustomException as err:
LOGGER.error(err)
error = ApiException(MessagesEnum.LIST_ERROR)
status_code = 400
if manager.exception:
error = manager.exception
response.set_exception(error)
return response.get_response(status_code)
@APP.route(API_ROOT + '/v1/product/<uuid>', methods=['GET'])
def product_get(uuid):
"""
Product get route
:return Endpoint with RESTful pattern
# pylint: disable=line-too-long
See https://madeiramadeira.atlassian.net/wiki/spaces/CAR/pages/2244149708/WIP+-+Guidelines+-+RESTful+e+HATEOS
:rtype flask.Response
---
get:
summary: Product Get
parameters:
- in: path
name: uuid
description: "Product Id"
required: true
schema:
type: string
format: uuid
example: 4bcad46b-6978-488f-8153-1c49f8a45244
- name: fields
in: query
description: "Filter fields with comma"
required: false
schema:
type: string
example:
responses:
200:
description: Success response
content:
application/json:
schema: HateosProductGetResponseSchema
4xx:
description: Error response
content:
application/json:
schema: ProductGetErrorResponseSchema
5xx:
description: Service fail response
content:
application/json:
schema: ProductGetErrorResponseSchema
"""
request = ApiRequest().parse_request(APP)
LOGGER.info(f'request: {request}')
status_code = 200
response = ApiResponse(request)
response.set_hateos(True)
manager = ProductManager(logger=LOGGER, product_service=ProductServiceV1(logger=LOGGER))
manager.debug(DEBUG)
try:
response.set_data(manager.get(request.to_dict(), uuid))
# hateos
set_hateos_links(request, response, uuid)
set_hateos_meta(request, response, uuid)
except CustomException as error:
LOGGER.error(error)
if not isinstance(error, ValidationException):
error = ApiException(MessagesEnum.FIND_ERROR)
status_code = 400
if manager.exception:
error = manager.exception
response.set_exception(error)
return response.get_response(status_code)
@APP.route(API_ROOT + '/v1/product', methods=['POST'])
def product_create():
"""
Product create route
:return Endpoint with RESTful pattern
# pylint: disable=line-too-long
See https://madeiramadeira.atlassian.net/wiki/spaces/CAR/pages/2244149708/WIP+-+Guidelines+-+RESTful+e+HATEOS
:rtype flask.Response
---
post:
summary: Product Create
requestBody:
description: 'Product to be created'
required: true
content:
application/json:
schema: ProductCreateRequestSchema
responses:
200:
description: Success response
content:
application/json:
schema: ProductCreateResponseSchema
4xx:
description: Error response
content:
application/json:
schema: ProductCreateErrorResponseSchema
5xx:
description: Service fail response
content:
application/json:
schema: ProductCreateErrorResponseSchema
"""
request = ApiRequest().parse_request(APP)
LOGGER.info(f'request: {request}')
status_code = 200
response = ApiResponse(request)
response.set_hateos(False)
manager = ProductManager(logger=LOGGER, product_service=ProductServiceV1(logger=LOGGER))
manager.debug(DEBUG)
try:
response.set_data(manager.create(request.to_dict()))
# response.set_total(manager.count(request))
# hateos
# set_hateos_links(request, response, uuid)
# set_hateos_meta(request, response, uuid)
except CustomException as error:
LOGGER.error(error)
if not isinstance(error, ValidationException):
error = ApiException(MessagesEnum.CREATE_ERROR)
status_code = 400
if manager.exception:
error = manager.exception
response.set_exception(error)
return response.get_response(status_code)
@APP.route('/v1/product/<uuid>', methods=['PUT'])
def product_update(uuid):
"""
Product update route
:return Endpoint with RESTful pattern
# pylint: disable=line-too-long
See https://madeiramadeira.atlassian.net/wiki/spaces/CAR/pages/2244149708/WIP+-+Guidelines+-+RESTful+e+HATEOS
:rtype flask.Response
---
put:
summary: Complete Product Update
parameters:
- in: path
name: uuid
description: "Product Id"
required: true
schema:
type: string
format: uuid
example: 4bcad46b-6978-488f-8153-1c49f8a45244
requestBody:
description: 'Product to be updated'
required: true
content:
application/json:
schema: ProductCompleteUpdateRequestSchema
responses:
200:
content:
application/json:
schema: ProductUpdateResponseSchema
4xx:
description: Error response
content:
application/json:
schema: ProductUpdateErrorResponseSchema
5xx:
description: Service fail response
content:
application/json:
schema: ProductUpdateErrorResponseSchema
"""
request = ApiRequest().parse_request(APP)
LOGGER.info(f'request: {request}')
status_code = 200
response = ApiResponse(request)
response.set_hateos(False)
manager = ProductManager(logger=LOGGER, product_service=ProductServiceV1(logger=LOGGER))
manager.debug(DEBUG)
try:
response.set_data(manager.update(request.to_dict(), uuid))
# response.set_total(manager.count(request))
except CustomException as error:
LOGGER.error(error)
if not isinstance(error, ValidationException):
error = ApiException(MessagesEnum.UPDATE_ERROR)
status_code = 400
if manager.exception:
error = manager.exception
response.set_exception(error)
return response.get_response(status_code)
@APP.route('/v1/product/<uuid>', methods=['DELETE'])
def product_delete(uuid):
"""
Product delete route
:return Endpoint with RESTful pattern
# pylint: disable=line-too-long
See https://madeiramadeira.atlassian.net/wiki/spaces/CAR/pages/2244149708/WIP+-+Guidelines+-+RESTful+e+HATEOS
:rtype flask.Response
---
delete:
summary: Soft Product Delete
parameters:
- in: path
name: uuid
description: "Product Id"
required: true
schema:
type: string
format: uuid
example: 4bcad46b-6978-488f-8153-1c49f8a45244
responses:
200:
description: Success response
content:
application/json:
schema: ProductSoftDeleteResponseSchema
4xx:
description: Error response
content:
application/json:
schema: ProductSoftDeleteErrorResponseSchema
5xx:
description: Service fail response
content:
application/json:
schema: ProductSoftDeleteErrorResponseSchema
"""
request = ApiRequest().parse_request(APP)
LOGGER.info(f'request: {request}')
status_code = 200
response = ApiResponse(request)
response.set_hateos(False)
manager = ProductManager(logger=LOGGER, product_service=ProductServiceV1(logger=LOGGER))
manager.debug(DEBUG)
try:
data = {"deleted": manager.delete(request.to_dict(), uuid)}
response.set_data(data)
# response.set_total(manager.count(request))
except CustomException as error:
LOGGER.error(error)
if not isinstance(error, ValidationException):
error = ApiException(MessagesEnum.DELETE_ERROR)
status_code = 400
if manager.exception:
error = manager.exception
response.set_exception(error)
return response.get_response(status_code)
@APP.route('/v1/product/<uuid>', methods=['PATCH'])
def product_soft_update(uuid):
"""
Product soft update route
:return Endpoint with RESTful pattern
# pylint: disable=line-too-long
See https://madeiramadeira.atlassian.net/wiki/spaces/CAR/pages/2244149708/WIP+-+Guidelines+-+RESTful+e+HATEOS
:rtype flask.Response
---
patch:
summary: Soft Product Update
parameters:
- in: path
name: uuid
description: "Product Id"
required: true
schema:
type: string
format: uuid
example: 4bcad46b-6978-488f-8153-1c49f8a45244
requestBody:
description: 'Product field to be updated'
required: true
content:
application/json:
schema: ProductSoftUpdateRequestSchema
responses:
200:
description: Success response
content:
application/json:
schema: ProductUpdateResponseSchema
4xx:
description: Error response
content:
application/json:
schema: ProductUpdateErrorResponseSchema
5xx:
description: Service fail response
content:
application/json:
schema: ProductUpdateErrorResponseSchema
"""
request = ApiRequest().parse_request(APP)
LOGGER.info(f'request: {request}')
status_code = 200
response = ApiResponse(request)
response.set_hateos(False)
manager = ProductManager(logger=LOGGER, product_service=ProductServiceV1(logger=LOGGER))
manager.debug(DEBUG)
try:
response.set_data(manager.soft_update(request.to_dict(), uuid))
# response.set_total(manager.count(request))
except CustomException as error:
LOGGER.error(error)
if not isinstance(error, ValidationException):
error = ApiException(MessagesEnum.UPDATE_ERROR)
status_code = 400
if manager.exception:
error = manager.exception
response.set_exception(error)
return response.get_response(status_code)
# *************
# doc
# *************
spec.path(view=alive, path=API_ROOT + "/alive", operations=get_doc(alive))
# *************
# product
# *************
spec.path(view=product_list,
path="/v1/product", operations=get_doc(product_list))
spec.path(view=product_get,
path="/v1/product/{uuid}", operations=get_doc(product_get))
spec.path(view=product_create,
path="/v1/product", operations=get_doc(product_create))
spec.path(view=product_update,
path="/v1/product/{uuid}", operations=get_doc(product_update))
spec.path(view=product_soft_update,
path="/v1/product/{uuid}", operations=get_doc(product_soft_update))
spec.path(view=product_delete,
path="/v1/product/{uuid}", operations=get_doc(product_delete))
print_routes(APP, LOGGER)
LOGGER.info(f'Running at {ENV}')
# generate de openapi.yml
generate_openapi_yml(spec, LOGGER, force=True)
api_schemas.register()