mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
495 lines
15 KiB
Python
495 lines
15 KiB
Python
from datetime import datetime
|
|
from typing import List, Literal
|
|
from uuid import uuid4
|
|
from sqlmodel import Session, select
|
|
from src.db.users import AnonymousUser
|
|
from src.security.rbac.rbac import (
|
|
authorization_verify_based_on_roles_and_authorship,
|
|
authorization_verify_if_element_is_public,
|
|
authorization_verify_if_user_is_anon,
|
|
)
|
|
from src.db.courses.course_chapters import CourseChapter
|
|
from src.db.courses.activities import Activity, ActivityRead
|
|
from src.db.courses.chapter_activities import ChapterActivity
|
|
from src.db.courses.chapters import (
|
|
Chapter,
|
|
ChapterCreate,
|
|
ChapterRead,
|
|
ChapterUpdate,
|
|
ChapterUpdateOrder,
|
|
)
|
|
from src.services.courses.courses import Course
|
|
from src.services.users.users import PublicUser
|
|
from fastapi import HTTPException, status, Request
|
|
|
|
|
|
####################################################
|
|
# CRUD
|
|
####################################################
|
|
|
|
|
|
async def create_chapter(
|
|
request: Request,
|
|
chapter_object: ChapterCreate,
|
|
current_user: PublicUser | AnonymousUser,
|
|
db_session: Session,
|
|
) -> ChapterRead:
|
|
chapter = Chapter.model_validate(chapter_object)
|
|
|
|
# Get COurse
|
|
statement = select(Course).where(Course.id == chapter_object.course_id)
|
|
|
|
course = db_session.exec(statement).one()
|
|
|
|
# RBAC check
|
|
await rbac_check(request, "chapter_x", current_user, "create", db_session)
|
|
|
|
# complete chapter object
|
|
chapter.course_id = chapter_object.course_id
|
|
chapter.chapter_uuid = f"chapter_{uuid4()}"
|
|
chapter.creation_date = str(datetime.now())
|
|
chapter.update_date = str(datetime.now())
|
|
chapter.org_id = course.org_id
|
|
|
|
# Find the last chapter in the course and add it to the list
|
|
statement = (
|
|
select(CourseChapter)
|
|
.where(CourseChapter.course_id == chapter.course_id)
|
|
.order_by(CourseChapter.order)
|
|
)
|
|
course_chapters = db_session.exec(statement).all()
|
|
|
|
# get last chapter order
|
|
last_order = course_chapters[-1].order if course_chapters else 0
|
|
to_be_used_order = last_order + 1
|
|
|
|
# Add chapter to database
|
|
db_session.add(chapter)
|
|
db_session.commit()
|
|
db_session.refresh(chapter)
|
|
|
|
chapter = ChapterRead(**chapter.model_dump(), activities=[])
|
|
|
|
# Check if COurseChapter link exists
|
|
|
|
statement = (
|
|
select(CourseChapter)
|
|
.where(CourseChapter.chapter_id == chapter.id)
|
|
.where(CourseChapter.course_id == chapter.course_id)
|
|
.where(CourseChapter.order == to_be_used_order)
|
|
)
|
|
course_chapter = db_session.exec(statement).first()
|
|
|
|
if not course_chapter:
|
|
# Add CourseChapter link
|
|
course_chapter = CourseChapter(
|
|
course_id=chapter.course_id,
|
|
chapter_id=chapter.id,
|
|
org_id=chapter.org_id,
|
|
creation_date=str(datetime.now()),
|
|
update_date=str(datetime.now()),
|
|
order=to_be_used_order,
|
|
)
|
|
|
|
# Insert CourseChapter link in DB
|
|
db_session.add(course_chapter)
|
|
db_session.commit()
|
|
|
|
return chapter
|
|
|
|
|
|
async def get_chapter(
|
|
request: Request,
|
|
chapter_id: int,
|
|
current_user: PublicUser | AnonymousUser,
|
|
db_session: Session,
|
|
) -> ChapterRead:
|
|
statement = select(Chapter).where(Chapter.id == chapter_id)
|
|
chapter = db_session.exec(statement).first()
|
|
|
|
if not chapter:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_409_CONFLICT, detail="Chapter does not exist"
|
|
)
|
|
|
|
# get COurse
|
|
statement = select(Course).where(Course.id == chapter.course_id)
|
|
course = db_session.exec(statement).first()
|
|
|
|
if not course:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_409_CONFLICT, detail="Course does not exist"
|
|
)
|
|
|
|
# RBAC check
|
|
await rbac_check(request, course.course_uuid, current_user, "read", db_session)
|
|
|
|
# Get activities for this chapter
|
|
statement = (
|
|
select(Activity)
|
|
.join(ChapterActivity, Activity.id == ChapterActivity.activity_id)
|
|
.where(ChapterActivity.chapter_id == chapter_id)
|
|
.distinct(Activity.id)
|
|
)
|
|
|
|
activities = db_session.exec(statement).all()
|
|
|
|
chapter = ChapterRead(
|
|
**chapter.model_dump(),
|
|
activities=[ActivityRead(**activity.model_dump()) for activity in activities],
|
|
)
|
|
|
|
return chapter
|
|
|
|
|
|
async def update_chapter(
|
|
request: Request,
|
|
chapter_object: ChapterUpdate,
|
|
chapter_id: int,
|
|
current_user: PublicUser | AnonymousUser,
|
|
db_session: Session,
|
|
) -> ChapterRead:
|
|
statement = select(Chapter).where(Chapter.id == chapter_id)
|
|
chapter = db_session.exec(statement).first()
|
|
|
|
if not chapter:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_409_CONFLICT, detail="Chapter does not exist"
|
|
)
|
|
|
|
# RBAC check
|
|
await rbac_check(request, chapter.chapter_uuid, current_user, "update", db_session)
|
|
|
|
# Update only the fields that were passed in
|
|
for var, value in vars(chapter_object).items():
|
|
if value is not None:
|
|
setattr(chapter, var, value)
|
|
|
|
chapter.update_date = str(datetime.now())
|
|
|
|
db_session.commit()
|
|
db_session.refresh(chapter)
|
|
|
|
if chapter:
|
|
chapter = await get_chapter(
|
|
request, chapter.id, current_user, db_session # type: ignore
|
|
)
|
|
|
|
return chapter
|
|
|
|
|
|
async def delete_chapter(
|
|
request: Request,
|
|
chapter_id: str,
|
|
current_user: PublicUser | AnonymousUser,
|
|
db_session: Session,
|
|
):
|
|
statement = select(Chapter).where(Chapter.id == chapter_id)
|
|
chapter = db_session.exec(statement).first()
|
|
|
|
if not chapter:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_409_CONFLICT, detail="Chapter does not exist"
|
|
)
|
|
|
|
# RBAC check
|
|
await rbac_check(request, chapter.chapter_uuid, current_user, "delete", db_session)
|
|
|
|
# Remove all linked chapter activities
|
|
statement = select(ChapterActivity).where(ChapterActivity.chapter_id == chapter.id)
|
|
chapter_activities = db_session.exec(statement).all()
|
|
|
|
for chapter_activity in chapter_activities:
|
|
db_session.delete(chapter_activity)
|
|
|
|
# Delete the chapter
|
|
db_session.delete(chapter)
|
|
db_session.commit()
|
|
|
|
return {"detail": "chapter deleted"}
|
|
|
|
|
|
async def get_course_chapters(
|
|
request: Request,
|
|
course_id: int,
|
|
db_session: Session,
|
|
current_user: PublicUser | AnonymousUser,
|
|
page: int = 1,
|
|
limit: int = 10,
|
|
) -> List[ChapterRead]:
|
|
|
|
statement = select(Course).where(Course.id == course_id)
|
|
course = db_session.exec(statement).first()
|
|
|
|
statement = (
|
|
select(Chapter)
|
|
.join(CourseChapter, Chapter.id == CourseChapter.chapter_id)
|
|
.where(CourseChapter.course_id == course_id)
|
|
.where(Chapter.course_id == course_id)
|
|
.order_by(CourseChapter.order)
|
|
.group_by(Chapter.id, CourseChapter.order)
|
|
)
|
|
chapters = db_session.exec(statement).all()
|
|
|
|
chapters = [ChapterRead(**chapter.model_dump(), activities=[]) for chapter in chapters]
|
|
|
|
# RBAC check
|
|
await rbac_check(request, course.course_uuid, current_user, "read", db_session) # type: ignore
|
|
|
|
# Get activities for each chapter
|
|
for chapter in chapters:
|
|
statement = (
|
|
select(ChapterActivity)
|
|
.where(ChapterActivity.chapter_id == chapter.id)
|
|
.order_by(ChapterActivity.order)
|
|
.distinct(ChapterActivity.id, ChapterActivity.order)
|
|
)
|
|
chapter_activities = db_session.exec(statement).all()
|
|
|
|
for chapter_activity in chapter_activities:
|
|
statement = (
|
|
select(Activity)
|
|
.where(Activity.id == chapter_activity.activity_id)
|
|
.distinct(Activity.id)
|
|
)
|
|
activity = db_session.exec(statement).first()
|
|
|
|
if activity:
|
|
chapter.activities.append(ActivityRead(**activity.model_dump()))
|
|
|
|
return chapters
|
|
|
|
|
|
# Important Note : this is legacy code that has been used because
|
|
# the frontend is still not adapted for the new data structure, this implementation is absolutely not the best one
|
|
# and should not be used for future features
|
|
async def DEPRECEATED_get_course_chapters(
|
|
request: Request,
|
|
course_uuid: str,
|
|
current_user: PublicUser,
|
|
db_session: Session,
|
|
):
|
|
statement = select(Course).where(Course.course_uuid == course_uuid)
|
|
course = db_session.exec(statement).first()
|
|
|
|
if not course:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_409_CONFLICT, detail="Course does not exist"
|
|
)
|
|
|
|
# RBAC check
|
|
await rbac_check(request, course.course_uuid, current_user, "read", db_session)
|
|
|
|
chapters_in_db = await get_course_chapters(request, course.id, db_session, current_user) # type: ignore
|
|
|
|
# activities
|
|
|
|
# chapters
|
|
chapters = {}
|
|
|
|
for chapter in chapters_in_db:
|
|
chapter_activityIds = []
|
|
|
|
for activity in chapter.activities:
|
|
print("test", activity)
|
|
chapter_activityIds.append(activity.activity_uuid)
|
|
|
|
chapters[chapter.chapter_uuid] = {
|
|
"uuid": chapter.chapter_uuid,
|
|
"id": chapter.id,
|
|
"name": chapter.name,
|
|
"activityIds": chapter_activityIds,
|
|
}
|
|
|
|
# activities
|
|
activities_list = {}
|
|
statement = (
|
|
select(Activity)
|
|
.join(ChapterActivity, ChapterActivity.activity_id == Activity.id)
|
|
.where(ChapterActivity.activity_id == Activity.id)
|
|
.group_by(Activity.id)
|
|
)
|
|
activities_in_db = db_session.exec(statement).all()
|
|
|
|
for activity in activities_in_db:
|
|
activities_list[activity.activity_uuid] = {
|
|
"uuid": activity.activity_uuid,
|
|
"id": activity.id,
|
|
"name": activity.name,
|
|
"type": activity.activity_type,
|
|
"content": activity.content,
|
|
}
|
|
|
|
# get chapter order
|
|
statement = (
|
|
select(Chapter)
|
|
.join(CourseChapter, CourseChapter.chapter_id == Chapter.id)
|
|
.where(CourseChapter.chapter_id == Chapter.id)
|
|
.group_by(Chapter.id, CourseChapter.order)
|
|
.order_by(CourseChapter.order)
|
|
)
|
|
chapters_in_db = db_session.exec(statement).all()
|
|
|
|
chapterOrder = []
|
|
|
|
for chapter in chapters_in_db:
|
|
chapterOrder.append(chapter.chapter_uuid)
|
|
|
|
final = {
|
|
"chapters": chapters,
|
|
"chapterOrder": chapterOrder,
|
|
"activities": activities_list,
|
|
}
|
|
|
|
return final
|
|
|
|
|
|
async def reorder_chapters_and_activities(
|
|
request: Request,
|
|
course_uuid: str,
|
|
chapters_order: ChapterUpdateOrder,
|
|
current_user: PublicUser,
|
|
db_session: Session,
|
|
):
|
|
statement = select(Course).where(Course.course_uuid == course_uuid)
|
|
course = db_session.exec(statement).first()
|
|
|
|
if not course:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_409_CONFLICT, detail="Course does not exist"
|
|
)
|
|
|
|
# RBAC check
|
|
await rbac_check(request, course.course_uuid, current_user, "update", db_session)
|
|
|
|
###########
|
|
# Chapters
|
|
###########
|
|
|
|
# Get all existing course chapters
|
|
statement = select(CourseChapter).where(
|
|
CourseChapter.course_id == course.id,
|
|
CourseChapter.org_id == course.org_id
|
|
)
|
|
existing_course_chapters = db_session.exec(statement).all()
|
|
|
|
# Create a map of existing chapters for faster lookup
|
|
existing_chapter_map = {cc.chapter_id: cc for cc in existing_course_chapters}
|
|
|
|
# Update or create course chapters based on new order
|
|
for index, chapter_order in enumerate(chapters_order.chapter_order_by_ids):
|
|
if chapter_order.chapter_id in existing_chapter_map:
|
|
# Update existing chapter order
|
|
course_chapter = existing_chapter_map[chapter_order.chapter_id]
|
|
course_chapter.order = index
|
|
db_session.add(course_chapter)
|
|
else:
|
|
# Create new course chapter
|
|
course_chapter = CourseChapter(
|
|
chapter_id=chapter_order.chapter_id,
|
|
course_id=course.id, # type: ignore
|
|
org_id=course.org_id,
|
|
creation_date=str(datetime.now()),
|
|
update_date=str(datetime.now()),
|
|
order=index,
|
|
)
|
|
db_session.add(course_chapter)
|
|
|
|
db_session.commit()
|
|
|
|
# Remove chapters that are no longer in the order
|
|
chapter_ids_to_keep = {co.chapter_id for co in chapters_order.chapter_order_by_ids}
|
|
for cc in existing_course_chapters:
|
|
if cc.chapter_id not in chapter_ids_to_keep:
|
|
db_session.delete(cc)
|
|
db_session.commit()
|
|
|
|
###########
|
|
# Activities
|
|
###########
|
|
|
|
# Get all existing chapter activities
|
|
statement = select(ChapterActivity).where(
|
|
ChapterActivity.course_id == course.id,
|
|
ChapterActivity.org_id == course.org_id
|
|
)
|
|
existing_chapter_activities = db_session.exec(statement).all()
|
|
|
|
# Create a map for faster lookup
|
|
existing_activity_map = {
|
|
(ca.chapter_id, ca.activity_id): ca
|
|
for ca in existing_chapter_activities
|
|
}
|
|
|
|
# Track which activities we want to keep
|
|
activities_to_keep = set()
|
|
|
|
# Update or create chapter activities based on new order
|
|
for chapter_order in chapters_order.chapter_order_by_ids:
|
|
for index, activity_order in enumerate(chapter_order.activities_order_by_ids):
|
|
activity_key = (chapter_order.chapter_id, activity_order.activity_id)
|
|
activities_to_keep.add(activity_key)
|
|
|
|
if activity_key in existing_activity_map:
|
|
# Update existing activity order
|
|
chapter_activity = existing_activity_map[activity_key]
|
|
chapter_activity.order = index
|
|
db_session.add(chapter_activity)
|
|
else:
|
|
# Create new chapter activity
|
|
chapter_activity = ChapterActivity(
|
|
chapter_id=chapter_order.chapter_id,
|
|
activity_id=activity_order.activity_id,
|
|
org_id=course.org_id,
|
|
course_id=course.id, # type: ignore
|
|
creation_date=str(datetime.now()),
|
|
update_date=str(datetime.now()),
|
|
order=index,
|
|
)
|
|
db_session.add(chapter_activity)
|
|
|
|
db_session.commit()
|
|
|
|
# Remove activities that are no longer in any chapter
|
|
for ca in existing_chapter_activities:
|
|
if (ca.chapter_id, ca.activity_id) not in activities_to_keep:
|
|
db_session.delete(ca)
|
|
db_session.commit()
|
|
|
|
return {"detail": "Chapters and activities reordered successfully"}
|
|
|
|
|
|
## 🔒 RBAC Utils ##
|
|
|
|
|
|
async def rbac_check(
|
|
request: Request,
|
|
course_uuid: str,
|
|
current_user: PublicUser | AnonymousUser,
|
|
action: Literal["create", "read", "update", "delete"],
|
|
db_session: Session,
|
|
):
|
|
if action == "read":
|
|
if current_user.id == 0: # Anonymous user
|
|
res = await authorization_verify_if_element_is_public(
|
|
request, course_uuid, action, db_session
|
|
)
|
|
return res
|
|
else:
|
|
res = await authorization_verify_based_on_roles_and_authorship(
|
|
request, current_user.id, action, course_uuid, db_session
|
|
)
|
|
return res
|
|
else:
|
|
await authorization_verify_if_user_is_anon(current_user.id)
|
|
|
|
await authorization_verify_based_on_roles_and_authorship(
|
|
request,
|
|
current_user.id,
|
|
action,
|
|
course_uuid,
|
|
db_session,
|
|
)
|
|
|
|
|
|
## 🔒 RBAC Utils ##
|