forked from yaso_meth/mih-project
Add Appointment api to get, add, updae, delete
This commit is contained in:
@@ -32,6 +32,14 @@ def dbMzansiWalletConnect():
|
||||
database="mzansi_wallet"
|
||||
)
|
||||
|
||||
def dbMzansiCalendarConnect():
|
||||
return mysql.connector.connect(
|
||||
host="mysqldb",
|
||||
user="root",
|
||||
passwd="C@rtoon1995",
|
||||
database="mzansi_calendar"
|
||||
)
|
||||
|
||||
def dbAllConnect():
|
||||
return mysql.connector.connect(
|
||||
host="mysqldb",
|
||||
|
||||
@@ -2,6 +2,7 @@ from fastapi import FastAPI, Depends, HTTPException
|
||||
from pydantic import BaseModel
|
||||
# from .routers import docOffices, patients, patients_files, patients_notes, users, fileStorage, medicine
|
||||
import routers.docOffices as docOffices
|
||||
import routers.appointments as appointments
|
||||
import routers.patients as patients
|
||||
import routers.patients_files as patients_files
|
||||
import routers.patients_notes as patients_notes
|
||||
@@ -92,6 +93,7 @@ app.include_router(business.router)
|
||||
app.include_router(notifications.router)
|
||||
app.include_router(mzansi_wallet.router)
|
||||
app.include_router(icd10_codes.router)
|
||||
app.include_router(appointments.router)
|
||||
|
||||
# Check if server is up
|
||||
@app.get("/", tags=["Server Check"])
|
||||
|
||||
157
backend/routers/appointments.py
Normal file
157
backend/routers/appointments.py
Normal file
@@ -0,0 +1,157 @@
|
||||
import mysql.connector
|
||||
from fastapi import APIRouter, HTTPException
|
||||
from pydantic import BaseModel
|
||||
#from ..database import dbConnection
|
||||
import database
|
||||
from datetime import datetime, timedelta, date
|
||||
#SuperToken Auth from front end
|
||||
from supertokens_python.recipe.session.framework.fastapi import verify_session
|
||||
from supertokens_python.recipe.session import SessionContainer
|
||||
from fastapi import Depends
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
class appointmentInsertRequest(BaseModel):
|
||||
app_id: str
|
||||
business_id: str
|
||||
title: str
|
||||
description: str
|
||||
date: str
|
||||
time: str
|
||||
|
||||
class appointmentUpdateRequest(BaseModel):
|
||||
idappointments: int
|
||||
title: str
|
||||
description: str
|
||||
date: str
|
||||
time: str
|
||||
|
||||
class appointmentDeleteRequest(BaseModel):
|
||||
idappointments: int
|
||||
|
||||
# Get List of all files by patient
|
||||
@router.get("/appointments/business/{business_id}", tags=["Appointments"])
|
||||
async def read_all_appointments_by_business_id(business_id: str, date: str, session: SessionContainer = Depends(verify_session())): #, session: SessionContainer = Depends(verify_session())
|
||||
db = database.dbConnection.dbMzansiCalendarConnect()
|
||||
requestDate = datetime.strptime(date, '%Y-%m-%d').date()
|
||||
cursor = db.cursor()
|
||||
query = "SELECT appointments.idappointments, appointments.business_id, "
|
||||
query += "appointments.app_id, appointments.date_time, "
|
||||
query += "appointments.title, appointments.description "
|
||||
query += "from mzansi_calendar.appointments "
|
||||
query = query + "where appointments.business_id = %s and date_time like '" + str(requestDate) + "%' "
|
||||
query += "ORDER BY date_time ASC"
|
||||
cursor.execute(query, (business_id,))
|
||||
items = [
|
||||
{
|
||||
"idappointments": item[0],
|
||||
"business_id": item[1],
|
||||
"app_id": item[2],
|
||||
"date_time": item[3],
|
||||
"title": item[4],
|
||||
"description": item[5],
|
||||
}
|
||||
for item in cursor.fetchall()
|
||||
]
|
||||
cursor.close()
|
||||
db.close()
|
||||
return items
|
||||
|
||||
# Get List of all files by patient
|
||||
@router.get("/appointments/personal/{app_id}", tags=["Appointments"])
|
||||
async def read_all_appointments_by_business_id(app_id: str, date: str, session: SessionContainer = Depends(verify_session())): #, session: SessionContainer = Depends(verify_session())
|
||||
db = database.dbConnection.dbMzansiCalendarConnect()
|
||||
requestDate = datetime.strptime(date, '%Y-%m-%d').date()
|
||||
cursor = db.cursor()
|
||||
query = "SELECT appointments.idappointments, appointments.app_id, "
|
||||
query += "appointments.business_id, appointments.date_time, "
|
||||
query += "appointments.title, appointments.description "
|
||||
query += "from mzansi_calendar.appointments "
|
||||
query = query + "where appointments.app_id = %s and date_time like '" + str(requestDate) + "%' "
|
||||
query += "ORDER BY date_time ASC"
|
||||
|
||||
cursor.execute(query, (app_id,))
|
||||
items = [
|
||||
{
|
||||
"idappointments": item[0],
|
||||
"app_id": item[1],
|
||||
"business_id": item[2],
|
||||
"date_time": item[3],
|
||||
"title": item[4],
|
||||
"description": item[5],
|
||||
}
|
||||
for item in cursor.fetchall()
|
||||
]
|
||||
cursor.close()
|
||||
db.close()
|
||||
return items
|
||||
|
||||
# Insert Patient note into table
|
||||
@router.post("/appointment/insert/", tags=["Appointments"], status_code=201)
|
||||
async def insert_appointment(itemRequest : appointmentInsertRequest, session: SessionContainer = Depends(verify_session())): #, session: SessionContainer = Depends(verify_session())
|
||||
date_time = itemRequest.date + " " + itemRequest.time + ":00"
|
||||
db = database.dbConnection.dbMzansiCalendarConnect()
|
||||
cursor = db.cursor()
|
||||
query = "insert into appointments "
|
||||
query += "(app_id, business_id, title, description, date_time) "
|
||||
query += "values (%s, %s, %s, %s, %s)"
|
||||
notetData = (itemRequest.app_id,
|
||||
itemRequest.business_id,
|
||||
itemRequest.title,
|
||||
itemRequest.description,
|
||||
date_time,
|
||||
)
|
||||
try:
|
||||
cursor.execute(query, notetData)
|
||||
except Exception as error:
|
||||
#raise HTTPException(status_code=404, detail="Failed to Create Record")
|
||||
return {"message": error}
|
||||
db.commit()
|
||||
cursor.close()
|
||||
db.close()
|
||||
return {"message": "Successfully Created file Record"}
|
||||
|
||||
# Update Patient on table
|
||||
@router.put("/appointment/update/", tags=["Appointments"])
|
||||
async def Update_appointment(itemRequest : appointmentUpdateRequest, session: SessionContainer = Depends(verify_session())): #, session: SessionContainer = Depends(verify_session())
|
||||
|
||||
date_time = itemRequest.date + " " + itemRequest.time + ":00"
|
||||
|
||||
db = database.dbConnection.dbMzansiCalendarConnect()
|
||||
cursor = db.cursor()
|
||||
query = "update appointments "
|
||||
query += "set date_time=%s, title=%s, description=%s "
|
||||
query += "where idappointments=%s"
|
||||
patientData = (date_time,
|
||||
itemRequest.title,
|
||||
itemRequest.description,
|
||||
itemRequest.idappointments)
|
||||
try:
|
||||
cursor.execute(query, patientData)
|
||||
except Exception as error:
|
||||
print(error)
|
||||
raise HTTPException(status_code=404, detail="Failed to Update Record")
|
||||
#return {"query": query, "message": error}
|
||||
db.commit()
|
||||
cursor.close()
|
||||
db.close()
|
||||
return {"message": "Successfully Updated Record"}
|
||||
|
||||
# Update Patient on table
|
||||
@router.delete("/appointment/delete/", tags=["Appointments"])
|
||||
async def Delete_appointment(itemRequest : appointmentDeleteRequest, session: SessionContainer = Depends(verify_session())): #, session: SessionContainer = Depends(verify_session())
|
||||
db = database.dbConnection.dbMzansiCalendarConnect()
|
||||
cursor = db.cursor()
|
||||
query = "delete from appointments "
|
||||
query += "where idappointments=%s"
|
||||
try:
|
||||
cursor.execute(query, (str(itemRequest.idappointments),))
|
||||
except Exception as error:
|
||||
print(error)
|
||||
raise HTTPException(status_code=404, detail="Failed to Delete Appointment")
|
||||
#return {"query": query, "message": error}
|
||||
db.commit()
|
||||
cursor.close()
|
||||
db.close()
|
||||
return {"message": "Successfully deleted Appointment"}
|
||||
|
||||
Reference in New Issue
Block a user