-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
70 lines (61 loc) · 2.22 KB
/
main.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
from db import cliente_db
from db.cliente_db import ClienteInDB
from models.cliente_model import Cliente
from datetime import date
from typing import Dict
from fastapi import FastAPI, HTTPException
api = FastAPI()
from fastapi.middleware.cors import CORSMiddleware
origins = [
"http://localhost.tiangolo.com", "https://localhost.tiangolo.com",
"http://localhost", "http://localhost:8080","https://gestionatecfront.herokuapp.com"
]
api.add_middleware(
CORSMiddleware, allow_origins=origins,
allow_credentials=True, allow_methods=["*"], allow_headers=["*"],
)
@api.post("/cliente/registroSave")
async def save_cliente(cliente: Cliente):
cliente_in_db=ClienteInDB(**cliente.dict())
return cliente_db.save_cliente(cliente_in_db)
@api.put("/cliente/registroPut")
async def update_cliente(cliente: Cliente):
cliente_in_db=ClienteInDB(**cliente.dict())
db_response=cliente_db.update_cliente(cliente_in_db)
if db_response==None:
raise HTTPException(status_code=404, detail="El cliente no existe")
else:
return db_response
@api.delete("/cliente/registroDel/{documento}")
async def delete_cliente(documento: str):
db_response=cliente_db.delete_cliente(documento)
if db_response==None:
raise HTTPException(status_code=404, detail="El cliente no existe")
else:
return db_response
@api.get("/cliente/registroGet")
async def get_cliente(documento: str):
cliente_in_db=cliente_db.get_cliente(documento)
if cliente_in_db==None:
raise HTTPException(status_code=404, detail="El cliente no existe")
else:
cliente=Cliente(**cliente_in_db.dict())
return cliente
@api.get("/cliente/registroGet/{documento}")
async def get_cliente(documento:str):
cliente_in_db=cliente_db.get_cliente(documento)
if cliente_in_db==None:
raise HTTPException(status_code=404, detail="El cliente no existe")
else:
cliente=Cliente(**cliente_in_db.dict())
return cliente
@api.get("/cliente/registroGetAll")
async def get_clientes():
clientes_in_db=cliente_db.get_all_clientes()
clientes=[]
for k,v in clientes_in_db.items():
clientes.append(Cliente(**v.dict()))
return clientes
@api.get("/")
async def root():
return {"message":"Gestionatec"}