FastAPI(七十七)实战开发《在线课程学习系统》接口开发-- 课程编辑和查看评论

源码见:"fastapi_study_road-learning_system_online_courses: fastapi框架实战之--在线课程学习系统"

课程编辑

先来看下课程编辑

1.判断是否登录

2.判断课程是否存在

3.是否有权限(只有自己可以修改自己的课程)

4.名称是否重复

首先,新增一个参数pydantic

复制代码
class CourseEdit(Courses):
    id: int

其次,增加主要逻辑

复制代码
def edit_course(course: CourseEdit, db: Session, user: UsernameRole):
    """编辑课程"""
    db_course = get_course_by_id(db, course.id)
    if not db_course:
        return response(code=101201, message="课程不存在")
    db_user = get_by_username(db, user.username)
    if db_user.id != course.owner:
        return response(code=101202, message="权限不足")
    exists = get_course_by_name(db, course.name)
    if exists:
        return response(code=101203, message="该课程名称已存在")
    try:
        # 这里只是修改课程的属性,上架下架不能在这改
        db_course.catalog = course.catalog
        db_course.desc = course.desc
        db_course.icon = course.icon
        db_course.name = course.name
        db.commit()
        db.refresh(db_course)
    except:
        logger.warning(f"method edit_course error:{traceback.format_exc()}")
        return response(code=101204, message="修改失败")
    return response()

最后,实现接口api

复制代码
@course_router.put("/", summary="编辑课程")
def edit(
        course: CourseEdit,
        db: Session = Depends(create_db),
        user: UsernameRole = Depends(get_current_user)):
    return edit_course(course, db, user)

测试:

查看评论

接下来看下查看评论

1.判断课程是否存在

2.存在返回所有评论

主要逻辑

复制代码
def get_course_comment(course_id: int, db: Session):
    """获取课程评论"""
    db_course = get_course_by_id(db, course_id)
    if not db_course:
        return response(code=101301, message="课程不存在")
    comments = get_comment_by_course_id(db, course_id)
    to_client = []
    if comments:
        for _ in comments:
            detail_comment = CourseCommentOut(
                id=_.id,
                top=_.top,
                user=get_by_uid(db, _.user).username,
                pid=_.pid,
                add_time=str(_.add_time),
                context=_.context
            )
            to_client.append(detail_comment.dict())
    return response(data=to_client)

因为course_schema.py中的CourseComment和models中的重名了,所以做了修改

复制代码
class CourseCommentOut(CourseCommentBase):
    id: int
    top: int


class CourseDetail(Courses):
    id: int
    owner: str  # 此处重写该字段,返回给客户端时展示用户名而非id
    comment: List[CourseCommentOut] = []

实现api

复制代码
@course_router.get("/course_comment", summary="查看课程评论")
def course_comment(course_id: int,
        db: Session = Depends(create_db)):
    return get_course_comment(course_id, db)

测试

这样我们的课程编辑和查看评论接口就完成了

相关推荐
曲幽7 小时前
FastAPI实战:WebSocket长连接保持与心跳机制,从入门到填坑
javascript·python·websocket·keep-alive·fastapi·heartbeat·connection
岱宗夫up13 小时前
FastAPI进阶:从入门到生产级别的深度实践
python·信息可视化·fastapi
PieroPc2 天前
2026年,我的AI编程助手使用心得(纯个人体验,非评测)
javascript·css·html·fastapi·ai编程
Li emily3 天前
如何获取港股实时行情数据API接口
api·fastapi·港股
SmartBrain4 天前
FastAPI 进阶(第二部分):SQLAlchemy ORM(含考题)
数据库·人工智能·aigc·fastapi
岱宗夫up4 天前
FastAPI入门(上篇):快速构建高性能Python Web API
开发语言·前端·python·fastapi
SmartBrain4 天前
FastAPI 与 Langchain、Coze、Dify 技术深度对比分析
java·架构·fastapi
曲幽4 天前
FastAPI 实战:WebSocket 从入门到上线,使用避坑指南
python·websocket·fastapi·web·async·asyncio
c***03235 天前
开源模型应用落地-FastAPI-助力模型交互-进阶篇-中间件(四)
开源·交互·fastapi
I'm Jie6 天前
【已解决】SqlAlchemy 插入 MySQL JSON 字段时 None 变为 ‘null‘ 字符串,WHERE IS NULL 失效
数据库·python·mysql·json·fastapi·sqlalchemy