UnisKB/apps/common/constants/cache_version.py

32 lines
762 B
Python
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# coding=utf-8
"""
@project: MaxKB
@Author虎虎
@file cache_version.py
@date2025/4/14 19:09
@desc:
"""
from enum import Enum
class Cache_Version(Enum):
# 令牌
TOKEN = "TOKEN", lambda token: token
# 工作空间列表
WORKSPACE_LIST = "WORKSPACE::LIST", lambda user_id: user_id
# 用户数据
USER = "USER", lambda user_id: user_id
# 当前用户所有的角色
ROLE_LIST = "ROLE::LIST", lambda user_id: user_id
# 当前用户所有权限
PERMISSION_LIST = "PERMISSION::LIST", lambda user_id: user_id
def get_version(self):
return self.value[0]
def get_key_func(self):
return self.value[1]
def get_key(self, **kwargs):
return self.value[1](**kwargs)