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)

测试

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

相关推荐
larance1 天前
fastapi 使用本地资源自定义swagger文档
fastapi
肥肠可耐的西西公主2 天前
后端(FastAPI)学习笔记(CLASS 3):Tortoise ORM
笔记·学习·fastapi
onelafite3 天前
小红书笔记评论一键获取,实时查看作品数据
api·fastapi
shao9185164 天前
Gradio全解11——Streaming:流式传输的视频应用(2)——Twilio:网络服务提供商
fastapi·handler·stun·turn·ice·twillo
枫叶V4 天前
用 FastAPI 实现大文件分片上传与断点续传(含可运行示例与客户端脚本,仅供参考)
python·fastapi
蓝倾7 天前
利用API接口合规获取淘宝店铺所有商品实战案例(2025年最新版)
api·fastapi
肥肠可耐的西西公主8 天前
后端(fastAPI)学习笔记(CLASS 1):扩展基础
笔记·学习·fastapi
红鼻子时代9 天前
Day5-中间件与请求处理
中间件·fastapi·后端开发
蓝倾10 天前
京东商品属性API数据解析:颜色、尺寸与材质
api·fastapi
CodeDevMaster11 天前
使用Transformers、ChatGLM3项目、创建FastAPI应用等方式部署调用ChatGLM3-6B模型
llm·fastapi·chatglm (智谱)