2024-11-19 21:23:34 +01:00
|
|
|
from fastapi import FastAPI, HTTPException
|
|
|
|
from pydantic import BaseModel
|
2024-12-19 23:26:42 +01:00
|
|
|
from fastapi.middleware.cors import CORSMiddleware
|
2024-12-21 19:34:39 +01:00
|
|
|
from calls import *
|
|
|
|
from db import get_db_connection
|
2024-11-19 21:23:34 +01:00
|
|
|
|
|
|
|
app = FastAPI()
|
2024-12-19 23:26:42 +01:00
|
|
|
app.add_middleware(
|
|
|
|
CORSMiddleware,
|
|
|
|
allow_origins=["*"], # Replace "*" with your allowed origins
|
|
|
|
allow_credentials=True,
|
|
|
|
allow_methods=["*"], # Allow all HTTP methods
|
|
|
|
allow_headers=["*"], # Allow all HTTP headers
|
|
|
|
)
|
2024-11-19 21:23:34 +01:00
|
|
|
class RegisterRequest(BaseModel):
|
|
|
|
email: str
|
|
|
|
display_name: str
|
|
|
|
password: str
|
|
|
|
|
|
|
|
class LoginRequest(BaseModel):
|
|
|
|
email: str
|
|
|
|
password: str
|
2024-12-21 19:34:39 +01:00
|
|
|
|
2024-11-19 21:23:34 +01:00
|
|
|
|
|
|
|
class FriendRequest(BaseModel):
|
2024-12-21 19:34:39 +01:00
|
|
|
token: str
|
2024-11-19 21:23:34 +01:00
|
|
|
friend_uid: int
|
|
|
|
|
2024-12-21 22:35:00 +01:00
|
|
|
class getFriendList(BaseModel):
|
|
|
|
token: str
|
2024-11-19 21:23:34 +01:00
|
|
|
|
2024-12-21 22:35:00 +01:00
|
|
|
class CreateMatchRequest(BaseModel):
|
|
|
|
token: str
|
2024-11-19 21:23:34 +01:00
|
|
|
|
2024-12-21 22:35:00 +01:00
|
|
|
class JoinMatchRequest(BaseModel):
|
2024-12-21 19:34:39 +01:00
|
|
|
token: str
|
2024-12-21 22:35:00 +01:00
|
|
|
match_id: int
|
2024-12-21 19:34:39 +01:00
|
|
|
|
2024-11-19 21:23:34 +01:00
|
|
|
@app.post("/register")
|
|
|
|
def register(request: RegisterRequest):
|
|
|
|
try:
|
|
|
|
uid = register_user(request.email, request.display_name, request.password)
|
|
|
|
return {"message": "User registered successfully", "uid": uid}
|
|
|
|
except Exception as e:
|
|
|
|
raise HTTPException(status_code=400, detail=str(e))
|
|
|
|
|
|
|
|
@app.post("/login")
|
|
|
|
def login(request: LoginRequest):
|
2024-12-19 23:26:42 +01:00
|
|
|
sessiontoken = authenticate_user(request.email, request.password)
|
|
|
|
if sessiontoken:
|
|
|
|
return {"message": "Login successful", "uid": sessiontoken}
|
2024-11-19 21:23:34 +01:00
|
|
|
else:
|
|
|
|
raise HTTPException(status_code=401, detail="Invalid credentials")
|
2024-12-21 19:34:39 +01:00
|
|
|
|
2024-12-21 22:35:00 +01:00
|
|
|
|
2024-11-19 21:23:34 +01:00
|
|
|
@app.post("/add_friend")
|
|
|
|
def add_friend_endpoint(request: FriendRequest):
|
|
|
|
try:
|
2024-12-21 19:34:39 +01:00
|
|
|
success = add_friend(request.token, request.friend_uid)
|
2024-11-19 21:23:34 +01:00
|
|
|
return {"message": "Friend added successfully"} if success else HTTPException(400, "Failed to add friend")
|
|
|
|
except Exception as e:
|
|
|
|
raise HTTPException(status_code=400, detail=str(e))
|
2024-12-19 23:26:42 +01:00
|
|
|
|
2024-12-21 19:34:39 +01:00
|
|
|
@app.get("/leaderboards")
|
|
|
|
def leaderboard():
|
|
|
|
try:
|
|
|
|
leaderboard = get_leaderboard()
|
|
|
|
return leaderboard
|
|
|
|
except Exception as e:
|
|
|
|
raise HTTPException(status_code=400, detail=str(e))
|
2024-12-21 22:35:00 +01:00
|
|
|
|
|
|
|
|
2024-12-21 19:34:39 +01:00
|
|
|
|
|
|
|
def get_friend_details(friend_uid):
|
|
|
|
conn = get_db_connection()
|
|
|
|
cursor = conn.cursor()
|
|
|
|
try:
|
|
|
|
cursor.execute("SELECT uid, display_name FROM users WHERE uid = %s;", (friend_uid,))
|
|
|
|
result = cursor.fetchone()
|
|
|
|
if result:
|
|
|
|
return {"uid": result["uid"], "name": result["display_name"]}
|
|
|
|
return None
|
|
|
|
finally:
|
|
|
|
cursor.close()
|
|
|
|
conn.close()
|
2024-12-21 22:35:00 +01:00
|
|
|
|
|
|
|
def get_uid_by_token(token):
|
|
|
|
conn = get_db_connection()
|
|
|
|
cursor = conn.cursor()
|
|
|
|
try:
|
|
|
|
cursor.execute("SELECT uid FROM users WHERE session_token = %s;", (token,))
|
|
|
|
result = cursor.fetchone()
|
|
|
|
if not result:
|
|
|
|
raise ValueError("Invalid token")
|
|
|
|
return result["uid"]
|
|
|
|
finally:
|
|
|
|
cursor.close()
|
|
|
|
conn.close()
|
|
|
|
|
2024-12-21 19:34:39 +01:00
|
|
|
|
|
|
|
@app.post("/get_friends")
|
|
|
|
def get_friends_list(request: getFriendList):
|
|
|
|
token = request.token
|
|
|
|
conn = get_db_connection()
|
|
|
|
cursor = conn.cursor()
|
|
|
|
try:
|
|
|
|
|
|
|
|
cursor.execute("SELECT friend_list FROM users WHERE session_token = %s;", (token,))
|
|
|
|
result = cursor.fetchone()
|
|
|
|
|
|
|
|
if not result or not result["friend_list"]:
|
|
|
|
raise HTTPException(status_code=404, detail="No friends found.")
|
|
|
|
friends = result["friend_list"]
|
|
|
|
friends_details = []
|
|
|
|
for key, friend_uid in friends.items():
|
|
|
|
friend_details = get_friend_details(friend_uid)
|
|
|
|
if friend_details:
|
|
|
|
friends_details.append(friend_details)
|
|
|
|
|
|
|
|
return {"friends": friends_details}
|
|
|
|
except Exception as e:
|
|
|
|
raise HTTPException(status_code=400, detail=str(e))
|
|
|
|
finally:
|
|
|
|
cursor.close()
|
2024-12-21 22:35:00 +01:00
|
|
|
conn.close()
|
|
|
|
|
|
|
|
@app.post("/creatematch")
|
|
|
|
def create_match(request: CreateMatchRequest):
|
|
|
|
conn = get_db_connection()
|
|
|
|
cursor = conn.cursor()
|
|
|
|
try:
|
|
|
|
player1_uid = get_uid_by_token(request.token)
|
|
|
|
cursor.execute(
|
|
|
|
"""
|
|
|
|
INSERT INTO matches (player1_uid)
|
|
|
|
VALUES (%s)
|
|
|
|
RETURNING match_id;
|
|
|
|
""",
|
|
|
|
(player1_uid,)
|
|
|
|
)
|
|
|
|
match_id = cursor.fetchone()["match_id"]
|
|
|
|
conn.commit()
|
|
|
|
return {"match_id": match_id}
|
|
|
|
except Exception as e:
|
|
|
|
conn.rollback()
|
|
|
|
raise HTTPException(status_code=400, detail=str(e))
|
|
|
|
finally:
|
|
|
|
cursor.close()
|
|
|
|
conn.close()
|
|
|
|
|
|
|
|
|
|
|
|
@app.post("/joinmatch")
|
|
|
|
def join_match(request: JoinMatchRequest):
|
|
|
|
conn = get_db_connection()
|
|
|
|
cursor = conn.cursor()
|
|
|
|
try:
|
|
|
|
player2_uid = get_uid_by_token(request.token)
|
|
|
|
cursor.execute(
|
|
|
|
"""
|
|
|
|
SELECT player1_uid, player2_uid
|
|
|
|
FROM matches
|
|
|
|
WHERE match_id = %s;
|
|
|
|
""",
|
|
|
|
(request.match_id,)
|
|
|
|
)
|
|
|
|
match = cursor.fetchone()
|
|
|
|
if not match:
|
|
|
|
raise HTTPException(status_code=404, detail="Match not found")
|
|
|
|
if match["player2_uid"] is not None:
|
|
|
|
raise HTTPException(status_code=400, detail="Match is already full")
|
|
|
|
cursor.execute(
|
|
|
|
"""
|
|
|
|
UPDATE matches
|
|
|
|
SET player2_uid = %s
|
|
|
|
WHERE match_id = %s;
|
|
|
|
""",
|
|
|
|
(player2_uid, request.match_id)
|
|
|
|
)
|
|
|
|
conn.commit()
|
|
|
|
return {"message": "Joined match successfully", "match_id": request.match_id}
|
|
|
|
except Exception as e:
|
|
|
|
conn.rollback()
|
|
|
|
raise HTTPException(status_code=400, detail=str(e))
|
|
|
|
finally:
|
|
|
|
cursor.close()
|
|
|
|
conn.close()
|