mirror of
https://github.com/UofCBaja/BajaCloud.git
synced 2025-07-06 11:07:12 -06:00
Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
63059233da |
@ -5,7 +5,7 @@ The Docker Project that runs on the Baja Nas
|
||||
|
||||
# BAJA CLoud Backend
|
||||
|
||||
Can be found [here](https://bajabackend.bajacloud.duckdns.org/)
|
||||
Can be found [here](http://darkicewofl50.asuscomm.com:43443/)
|
||||
|
||||
Reason in "Baja Data 2024 - 2025/W - Software/Brock's Learning.docx"
|
||||
|
||||
|
38
main.py
38
main.py
@ -1,6 +1,5 @@
|
||||
from fastapi import FastAPI
|
||||
from fastapi.responses import JSONResponse
|
||||
from fastapi.middleware.cors import CORSMiddleware
|
||||
from pydantic import BaseModel
|
||||
|
||||
from InterviewBooking.NoSheet import NoSheet
|
||||
@ -15,32 +14,8 @@ 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():
|
||||
"""
|
||||
@ -62,9 +37,6 @@ def get_root():
|
||||
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
|
||||
@ -96,10 +68,6 @@ async def getAppointments():
|
||||
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
|
||||
@ -124,8 +92,8 @@ class Appointment(BaseModel):
|
||||
|
||||
"""
|
||||
intervieweeName: str
|
||||
startTime: str
|
||||
date: str
|
||||
startTime: str
|
||||
intervieweeEmail: str
|
||||
|
||||
|
||||
@ -150,10 +118,6 @@ async def postSelectInterview(rawRequest: Appointment):
|
||||
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
|
||||
|
Reference in New Issue
Block a user