| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- # -*- coding: utf-8 -*-
- # @Author : YY
- # 定义常量
- class HttpStatus:
-
- SUCCESS = 200
-
- CREATED = 201
-
- ACCEPTED = 202 # 已接受
-
- NO_CONTENT = 204 # 无内容
-
- MOVED_PERM = 301
-
- SEE_OTHER = 303
-
- NOT_MODIFIED = 304
-
- BAD_REQUEST = 400 # 错误的请求
-
- UNAUTHORIZED = 401 # 未授权
-
- FORBIDDEN = 403 # 禁止访问
-
- NOT_FOUND = 404 # 未找到
-
- BAD_METHOD = 405 # 方法不允许
-
- CONFLICT = 409 # 冲突
-
- UNSUPPORTED_TYPE = 415 # 请求范围不符合要求
-
- ERROR = 500 # 内部错误
-
- NOT_IMPLEMENTED = 501 # 尚未实施
- class Constants:
-
- CAPTCHA_EXPIRATION = 2 # 2 分钟
-
- TOKEN = "token"
-
- TOKEN_HEADER = "Authorization"
-
- LOGIN_USER_KEY = "login_user_key"
-
- TOKEN_PREFIX = "Bearer "
-
- UTF8 = "UTF-8"
-
- GBK = "GBK"
-
- HTTP = "http://"
-
- HTTPS = "https://"
-
- WWW = "www."
-
- DOT = "."
-
- SUCCESS = "0"
-
- FAIL = "1"
-
- LOGIN_SUCCESS = "Success"
-
- LOGOUT = "Logout"
-
- REGISTER = "Register"
-
- LOGIN_FAIL = "Error"
-
- CAPTCHA_CODE_KEY = "captcha_codes:"
-
- LOGIN_TOKEN_KEY = "login_tokens:"
-
- REPEAT_SUBMIT_KEY = "repeat_submit:"
-
- RATE_LIMIT_KEY = "rate_limit:"
-
- CAPTCHA_EXPIRATION = 2
-
- JWT_USERID = "userid"
-
- JWT_USERNAME = "sub"
-
- JWT_AVATAR = "avatar"
-
- JWT_CREATED = "created"
-
- JWT_AUTHORITIES = "authorities"
-
- SYS_CONFIG_KEY = "sys_config:"
-
- SYS_DICT_KEY = "sys_dict:"
-
- RESOURCE_PREFIX = "/profile"
-
- LOOKUP_RMI = "rmi:";
-
- LOOKUP_LDAP = "ldap:";
-
- LOOKUP_LDAPS = "ldaps:";
-
- JOB_WHITELIST_STR = { "com.ruoyi" };
-
- JOB_ERROR_STR = { "java.net.URL", "javax.naming.InitialContext", "org.yaml.snakeyaml",
- "org.springframework", "org.apache", "com.ruoyi.common.utils.file" }; # todo
-
-
- class UserConstants:
-
- # Unique identifier for system users within the platform
- SYS_USER = "SYS_USER"
- # Normal status
- NORMAL = "0"
- # Exception status
- EXCEPTION = "1"
- # User disabled status
- USER_DISABLE = "1"
- # Role disabled status
- ROLE_DISABLE = "1"
- # Department normal status
- DEPT_NORMAL = "0"
- # Department disabled status
- DEPT_DISABLE = "1"
- # Dictionary normal status
- DICT_NORMAL = "0"
- # Is it a system default (yes)
- YES = "Y"
- # Is it an external link menu (yes)
- YES_FRAME = "0"
- # Is it an external link menu (no)
- NO_FRAME = "1"
- # Menu type (directory)
- TYPE_DIR = "M"
- # Menu type (menu)
- TYPE_MENU = "C"
- # Menu type (button)
- TYPE_BUTTON = "F"
- # Layout component identifier
- LAYOUT = "Layout"
-
- # ParentView component identifier
- PARENT_VIEW = "ParentView"
- # InnerLink component identifier
- INNER_LINK = "InnerLink"
- # Validation return result codes
- UNIQUE = "0"
- NOT_UNIQUE = "1"
- # Username length restrictions
- USERNAME_MIN_LENGTH = 2
- USERNAME_MAX_LENGTH = 20
- # Password length restrictions
- PASSWORD_MIN_LENGTH = 5
- PASSWORD_MAX_LENGTH = 20
|