mirror of
https://github.com/fastapi-practices/fastapi_best_architecture.git
synced 2025-08-18 15:00:46 +08:00

* WIP: add rbac authorization * Perform pre-commit fixes * add rbac route whitelist * add init test data user role associations * Restore database table id naming to fix generic crud base * Add database section value uniqueness settings * Update the test directory to tests * Update route_name file name to health_check * Split user auth and user action interfaces * Fix conflict between merge and current branch * Add pymysql dependencies * Fix RBAC authentication method * Add the select serialisation tool * Fix missing return messages due to global exception handler slicing * Update the user interface with associated relationships * Add items to be completed * Perform pre-commit fixes * Add pre-made routers * Paging data return structure optimisation * Split user auth and user interface tests * Fix user register test data structure error * Fix duplicate named test classes
26 lines
974 B
Python
26 lines
974 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from sqlalchemy import String
|
|
from sqlalchemy.dialects.mysql import LONGTEXT
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from backend.app.database.base_class import id_key, MappedBase
|
|
|
|
|
|
class CasbinRule(MappedBase):
|
|
"""
|
|
重写 casbin_sqlalchemy_adapter 中的 casbinRule model类, 使用自定义 MappedBase, 避免产生 alembic 迁移问题
|
|
"""
|
|
|
|
__tablename__ = 'sys_casbin_rule'
|
|
|
|
id: Mapped[id_key]
|
|
ptype: Mapped[str] = mapped_column(String(255), comment='策略类型: p 或者 g')
|
|
v0: Mapped[str] = mapped_column(String(255), comment='角色 / 用户uuid')
|
|
v1: Mapped[str] = mapped_column(LONGTEXT, comment='api路径 / 角色名称')
|
|
v2: Mapped[str | None] = mapped_column(String(255), comment='请求方法')
|
|
v3: Mapped[str | None] = mapped_column(String(255))
|
|
v4: Mapped[str | None] = mapped_column(String(255))
|
|
v5: Mapped[str | None] = mapped_column(String(255))
|