mirror of
https://github.com/UofCBaja/BajaCloud.git
synced 2025-06-14 04:34:17 -06:00
163 lines
4.9 KiB
Python
163 lines
4.9 KiB
Python
from fastapi import FastAPI
|
|
from fastapi.responses import JSONResponse
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
from pydantic import BaseModel
|
|
|
|
from InterviewBooking.NoSheet import NoSheet
|
|
import datetime
|
|
import os
|
|
|
|
year_donation = int(str(datetime.datetime.now().year)[2:]) + 1 # gets the last two digits of the current year then adds 1 for the current season
|
|
# name based off the 2025 naming system
|
|
# Define the path to the Excel file and the lock file
|
|
file_name = f"/Interviews/OR{year_donation}-L-Interview Data.xlsx"
|
|
if not os.path.isfile(file_name):
|
|
os.makedirs(os.path.dirname(file_name), exist_ok=True)
|
|
NoSheet(file_name)
|
|
|
|
|
|
app = FastAPI()
|
|
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=["*"], # This allows all origins
|
|
allow_credentials=True,
|
|
allow_methods=["*"], # Allow all methods (GET, POST, OPTIONS, etc.)
|
|
allow_headers=["*"], # Allow all headers
|
|
)
|
|
"""
|
|
YOU MUST ADD CORS MANUALLY TO ANY METHOD USE THIS TEMPLATE
|
|
ADD TO JSONRESPONSE
|
|
|
|
USE APPROPRIATE METHOD fOR THE TYPE IE
|
|
@app.get = ... "Access-Control-Allow-Methods": "GET", ...
|
|
|
|
headers={
|
|
"isBase64Encoded": "false", # Header Modification
|
|
# Adding CORS headers explicitly
|
|
"Access-Control-Allow-Origin": "*", # Allow all origins
|
|
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, OPTIONS", # Allowed methods
|
|
"Access-Control-Allow-Headers": "*", # Allow all headers
|
|
},
|
|
"""
|
|
|
|
@app.get("/")
|
|
def get_root():
|
|
"""
|
|
This does nothing, allows for pings to check for life
|
|
|
|
``REQUIRES``: ```None`` Nothing
|
|
|
|
``PROMISES``: ``JSON`` returns a short message in the body
|
|
|
|
``Develop in part by``: Brock
|
|
|
|
``Contact``: darkicewolf50@gmail.com
|
|
|
|
"""
|
|
|
|
res = {"message": "Hello I am alive, this does nothing"}
|
|
|
|
# Return the response with the custom header
|
|
return JSONResponse(
|
|
headers={
|
|
"isBase64Encoded": "false", # Header Modification
|
|
"Access-Control-Allow-Origin": "*", # Allow all origins
|
|
"Access-Control-Allow-Methods": "GET", # Allowed methods
|
|
"Access-Control-Allow-Headers": "*", # Allow all headers
|
|
},
|
|
content={
|
|
"body": res # Ensure res is a dict or do json.dumps to enusre it is stringified
|
|
},
|
|
|
|
# status_code=200 commented out just to show how to change it if you wanted
|
|
)
|
|
|
|
|
|
from InterviewBooking.interviewPackagers import getSchedulePackager
|
|
|
|
@app.get("/getAppointments")
|
|
async def getAppointments():
|
|
"""
|
|
checks for all available slots in the database
|
|
|
|
``REQUIRES``: ``None`` Nothing
|
|
|
|
``PROMISES``: ``JSON`` returns all of the avaialbe slots by date then time
|
|
|
|
``Develop in part by``: Brock
|
|
|
|
``Contact``: darkicewolf50@gmail.com
|
|
|
|
"""
|
|
|
|
res = getSchedulePackager(file_name)
|
|
|
|
return JSONResponse(
|
|
headers={
|
|
"isBase64Encoded": "false", # Header Modification
|
|
# Adding CORS headers explicitly
|
|
"Access-Control-Allow-Origin": "*", # Allow all origins
|
|
"Access-Control-Allow-Methods": "GET", # Allowed methods
|
|
"Access-Control-Allow-Headers": "*", # Allow all headers
|
|
},
|
|
content={
|
|
"body": res # Ensure res is a dict or do json.dumps to enusre it is stringified
|
|
},
|
|
|
|
# status_code=200 commented out just to show how to change it if you wanted
|
|
)
|
|
|
|
from InterviewBooking.interviewPackagers import SelectAppointment
|
|
|
|
class Appointment(BaseModel):
|
|
"""
|
|
The formatted
|
|
|
|
``REQUIRES``: Correct Format
|
|
|
|
``PROMISES``: Formatted class, needs to be converted into dict os that it can be used in another file
|
|
|
|
``Develop in part by``: Brock
|
|
|
|
``Contact``: darkicewolf50@gmail.com
|
|
|
|
"""
|
|
intervieweeName: str
|
|
startTime: str
|
|
date: str
|
|
intervieweeEmail: str
|
|
|
|
|
|
@app.post("/SelectInterview")
|
|
async def postSelectInterview(rawRequest: Appointment):
|
|
"""
|
|
Books an interview, first checks if the slot is valid
|
|
|
|
``REQUIRES``: ``Appointment`` A specifically formatted request
|
|
|
|
``PROMISES``: ``JSON`` returns if the booking was successful or not
|
|
|
|
``Develop in part by``: Brock
|
|
|
|
``Contact``: darkicewolf50@gmail.com
|
|
|
|
"""
|
|
requestDict = {key: str(value) for key, value in rawRequest.model_dump().items()}
|
|
res = SelectAppointment(file_name, requestDict)
|
|
|
|
return JSONResponse(
|
|
headers={
|
|
"isBase64Encoded": "false", # Header Modification
|
|
# Adding CORS headers explicitly
|
|
"Access-Control-Allow-Origin": "*", # Allow all origins
|
|
"Access-Control-Allow-Methods": "POST", # Allowed methods
|
|
"Access-Control-Allow-Headers": "*", # Allow all headers
|
|
},
|
|
content={
|
|
"body": res # Ensure res is a dict or do json.dumps to enusre it is stringified
|
|
},
|
|
|
|
# status_code=200 commented out just to show how to change it if you wanted
|
|
)
|