From bae428c975727864d13f26d1a2aefc7c012b0770 Mon Sep 17 00:00:00 2001 From: chenzuoqing Date: Thu, 16 Dec 2021 19:40:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9EYAML=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=92=8C=E8=A7=A3=E6=9E=90=E5=B0=81=E8=A3=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- conf.yaml | 6 ++++++ docs/requirements.txt | 2 ++ settings/common.py | 9 +++++++++ settings/dev.py | 20 +++++++++++++++++--- src/common/conf.py | 42 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 76 insertions(+), 3 deletions(-) create mode 100644 conf.yaml create mode 100644 src/common/conf.py diff --git a/conf.yaml b/conf.yaml new file mode 100644 index 0000000..385253c --- /dev/null +++ b/conf.yaml @@ -0,0 +1,6 @@ + +ops1: + server: http://10.2.2.10:8000 + project_list: /api/items/list/ + headers: + X-Token: 51ab21fa323a11eca1af000c2993d583 diff --git a/docs/requirements.txt b/docs/requirements.txt index 278fe76..4fd040b 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -5,3 +5,5 @@ flask-mongoengine==1.0.0 flask-redis==0.4.0 Flask-RESTful==0.3.9 jsonschema==4.2.1 +PyYAML==6.0 +requests==2.26.0 diff --git a/settings/common.py b/settings/common.py index 9011647..13d4d04 100644 --- a/settings/common.py +++ b/settings/common.py @@ -1,3 +1,12 @@ +import os.path + +from common.conf import load_yaml + +# 项目目录 +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) + +CONFIG_FILE = os.path.join(os.path.dirname(BASE_DIR), "conf.yaml") +CONFIG: dict = load_yaml(CONFIG_FILE, raise_exception=True, default={}) VERSION = "v1" INSTANCE = "9e5da0b3-565f-11ec-b095-18c04d9eb245" diff --git a/settings/dev.py b/settings/dev.py index f87ad78..7578975 100644 --- a/settings/dev.py +++ b/settings/dev.py @@ -6,7 +6,7 @@ BASE_DIR = os.path.dirname(os.path.abspath(__file__)) SECRET_KEY = 'cf036e50524a11ecb4a618c04d9eb245' JSONIFY_PRETTYPRINT_REGULAR = False -RESTFUL_JSON = {'separators': (',', ':'), 'indent': 0} +RESTFUL_JSON = {'separators': (',', ':'), 'indent': 4} # mongodb 地址 MONGODB_SETTINGS = { @@ -18,7 +18,7 @@ REDIS_URL = "redis://:@10.2.2.10:6379/1" LOGGING = { 'version': 1, - 'disable_existing_loggers': True, + 'disable_existing_loggers': False, 'formatters': { 'verbose': { 'format': '%(asctime)s %(levelname)s %(module)s:%(funcName)s %(process)d %(thread)d %(message)s' @@ -44,12 +44,26 @@ LOGGING = { 'backupCount': 5, 'formatter': 'verbose' }, + 'common': { + 'level': 'DEBUG', + 'class': 'logging.handlers.RotatingFileHandler', + 'filename': os.path.join(os.path.dirname(BASE_DIR), 'logs/common.log'), + 'encoding': 'utf-8', + 'maxBytes': 1024 * 1024 * 5, + 'backupCount': 5, + 'formatter': 'verbose', + }, }, 'loggers': { 'root': { 'handlers': ['file_app'], 'level': 'DEBUG', - 'propagate': True, + 'propagate': False, }, + 'common': { + 'handlers': ['common'], + 'level': 'DEBUG', + 'propagate': False, + } } } diff --git a/src/common/conf.py b/src/common/conf.py new file mode 100644 index 0000000..772d29d --- /dev/null +++ b/src/common/conf.py @@ -0,0 +1,42 @@ +""" +conf.yaml 的辅助方法 +""" +import yaml +from settings import common + + +def load_yaml(filename, raise_exception=False, default=None): + """ + + :param filename: + :param raise_exception: 是否触发异常 + :param default: 默认值,不触发异常时使用 + :return: + """ + data = default + filename = str(filename) + try: + with open(filename, 'r') as f: + data = yaml.safe_load(f) + except Exception as e: + if raise_exception: + raise e + return data if data else default + + +def get_conf_section(name, default=None): + """从配置文件中获取配置项""" + try: + return common.CONFIG.get(name, default) + except: + return default + + +def get_conf_section_opt(section_name, opt_name, default=None): + """从配置文件中获取配置项,需要是字典""" + try: + section = common.CONFIG.get(section_name, {}) + data = section.get(opt_name, default) + except: + return default + return data