Exemplo n.º 1
0
def update_mdb_collections(mdbs):
    """
    更新数据库mongodb collection, 不存在的colletion则创建
    :param mdbs:
    :return:
    """

    # 读取配置中的数据库json 数据
    coll_json_file = "{}/configs/mdb_collections.json".format(APPS_PATH)
    if not os.path.exists(coll_json_file):
        return
    with open(coll_json_file) as rf:
        jsondata = rf.read()
        if jsondata:
            collections = json.loads(jsondata)
        else:
            collections = {}

    # 检查数据库collections
    for dbname, colls in collections.items():
        mdb = mdbs[dbname]
        for coll in colls:
            try:
                mdb.db.create_collection(coll)
                web_start_log.info("[DB: {}] Create collection '{}'".format(
                    mdb.name, coll))
            except Exception as e:
                if "already exists" in str(e):
                    web_start_log.info(e)
                else:
                    web_start_log.error(e)
Exemplo n.º 2
0
def push_to_db(mdb_sys, local_config=None, now_version=None):
    '''
    初始化或者更新配置数据到数据库, 顺便更新CONFIG变量的值
    config:如果为真, 则使用传入的这个配置
    cover: 是否覆盖数据库中的数据
    :return:
    '''

    if not now_version:
        return False

    web_start_log.info("Push to the config version:{}".format(now_version))

    for k, v in local_config.items():
        if not isinstance(v, dict):
            continue

        for k1, v1 in v.items():
            if k1.startswith("__"):
                continue
            try:
                if "__restart__" in v:
                    conf = v1
                    conf["update_time"] = time.time()
                    conf["__restart__"] = v["__restart__"]

                    if "__info__" in v:
                        conf["__info__"] = v["__info__"]

                    if "__sort__" in v:
                        conf["__sort__"] = v["__sort__"]
                    r = mdb_sys.db.sys_config.update_one(
                        {
                            "project": k,
                            "key": k1,
                            "conf_version": now_version
                        }, {"$set": conf},
                        upsert=True)
                    if r.modified_count or r.upserted_id:
                        web_start_log.info(
                            "Config updates: [file to db] {} {}".format(k, k1))
                    elif r.matched_count:
                        web_start_log.info(
                            "[file to db] Not updated:{} {}".format(k, k1))
                    else:
                        web_start_log.warning(
                            "[file to db] Update failure:{} {}".format(k, k1))
                else:
                    web_start_log.info("[Not import] {} {}".format(k, k1))
            except Exception as e:
                web_start_log.error("[file to db] {}, {} {}".format(e, k, k1))

    # 更新版本信息
    # 将当前版本纳入used_versions, 以便之后管理端修改配置时自动生成新版本
    mdb_sys.db.sys_config.update_one(
        {
            "new_version": {
                "$exists": True
            },
            "used_versions": {
                "$ne": now_version
            }
        }, {"$addToSet": {
            "used_versions": now_version
        }})

    # 更新主机信息
    host_version = mdb_sys.db.sys_host.find_one({
        "type":
        "web",
        "host_info.local_ip":
        host_info["local_ip"]
    })
    up_version = {"conf_version": now_version, "switch_conf_version": None}
    if host_version:
        up_version["host_info"] = host_version["host_info"]
    else:
        up_version["disable_update_conf"] = 0
        up_version["host_info"] = {}

    for k, v in host_info.items():
        up_version["host_info"][k] = v

    if not host_version or not host_version["disable_update_conf"]:
        up_version["start_log"] = "Normal"
        web_start_log.info(up_version["start_log"])
    else:
        up_version[
            "start_log"] = "Update failed. Because there is no open to update"
        web_start_log.warning(up_version["start_log"])

    # 更新主机信息
    mdb_sys.db.sys_host.delete_many({
        "$or": [{
            "host_info.local_ip": {
                "$exists": False
            }
        }, {
            "host_info.local_ip": {
                "$in": [None, "", False]
            }
        }]
    })

    mdb_sys.db.sys_host.update_one(
        {
            "type": "web",
            "host_info.local_ip": host_info["local_ip"]
        }, {"$set": up_version},
        upsert=True)

    return True
Exemplo n.º 3
0
def update_config_file(mdb_sys, *args, **kwargs):
    '''
    网站启动的时候, 数据库保存的配置-配置文件 同步更新
    config
    mdb_sys
    redis
    '''
    local_config = deepcopy(CONFIG)
    overwrite_db = OVERWRITE_DB
    version_info = mdb_sys.db.sys_config.find_one(
        {"new_version": {
            "$exists": True
        }})
    if not version_info:
        now_version = time_to_utcdate(time_stamp=now_time,
                                      tformat="%Y_%m_%d_%H_%M_%S")
        version_uses = {
            "new_version": now_version,
            "used_versions": [now_version],
            "update_time": now_time
        }
        mdb_sys.db.sys_config.insert_one(version_uses)
        web_start_log.info("Initialize the sys_config version info")
    else:
        now_version = version_info["new_version"]

    if version_info and not overwrite_db:
        # 查询当前主机web的的配置版本
        cur_h_version_info = mdb_sys.db.sys_host.find_one({
            "type":
            "web",
            "host_info.local_ip":
            host_info["local_ip"]
        })
        if not cur_h_version_info:
            cur_h_version_info = {
                "type": "web",
                "host_info": host_info,
                "conf_version": version_info["new_version"],
                "switch_conf_version": None,
                "disable_update_conf": 0
            }
            mdb_sys.db.sys_host.insert_one(cur_h_version_info)
            web_start_log.info("Initialize the host version data")

        if cur_h_version_info["switch_conf_version"] or cur_h_version_info[
                "disable_update_conf"]:
            # 数据库配置和本地配置合并:保留本地和数据库的key,用于网站版本回滚
            if cur_h_version_info[
                    "switch_conf_version"] and not cur_h_version_info[
                        "disable_update_conf"]:
                # 版本切换
                now_version = cur_h_version_info["switch_conf_version"]
            else:
                # 禁止更新
                now_version = cur_h_version_info["conf_version"]
            confs = mdb_sys.db.sys_config.find({"conf_version": now_version})

            if confs.count(True):
                for conf in confs:
                    if not re.search(r"^__.*__$", conf["key"]):
                        if not conf["project"] in local_config:
                            local_config[conf["project"]] = {}

                        if not conf["key"] in local_config[conf["project"]]:
                            local_config[conf["project"]][conf["key"]] = {
                                "value": conf["value"],
                                "type": conf["type"],
                                "info": conf["info"]
                            }
                        else:
                            local_config[conf["project"]][
                                conf["key"]]["value"] = conf["value"]

                web_start_log.info(
                    "Config rollback:[db to file] Update version info")
            else:
                web_start_log.error(
                    "Config rollback:[db to file] Rollback failure")
                return False
        else:
            # 数据库最新版配置和本地配置合并:以本地配置的key为准,多余的删除
            now_version = version_info["new_version"]
            confs = mdb_sys.db.sys_config.find({"conf_version": now_version})
            if confs.count(True):
                for conf in confs:
                    is_cft = re.search(r"^__.*__$", conf["key"])
                    if not is_cft and conf["project"] in local_config.keys(
                    ) and conf["key"] in local_config[conf["project"]].keys():
                        local_config[conf["project"]][
                            conf["key"]]["value"] = conf["value"]

                        web_start_log.info(
                            "Config merge:[db to file] {} {}".format(
                                conf["project"], conf["key"]))
                    else:
                        mdb_sys.db.sys_config.delete_one({"_id": conf["_id"]})
                        web_start_log.info("Remove the config:{} {}".format(
                            conf["project"], conf["key"]))
            else:
                web_start_log.error("Config merge:[db to file] Merger failure")
                return False

    else:
        web_start_log.info(
            "**Local configuration directly covering the latest edition of the configuration database"
        )

    r = push_to_db(mdb_sys,
                   local_config=deepcopy(local_config),
                   now_version=now_version)
    if not r:
        web_start_log.error("Config update:[file to db] Push failure")
        return False

    # 写配置文件
    info = '''#!/usr/bin/env python\n# -*-coding:utf-8-*-\n__author__ = "Allen Woo"\n'''
    doc = "__readme__='''{}'''\n".format(__readme__)

    # write config.py
    temp_conf = str(json.dumps(local_config, indent=4, ensure_ascii=False))
    wf = open("{}/apps/configs/config.py".format(PROJECT_PATH), "wb")
    wf.write(bytes(info, "utf-8"))
    wf.write(bytes(doc, "utf-8"))
    # 修改配置为同步数据库配置到文件
    wf.write(
        bytes(
            "# Danger: If True, the database configuration data will be overwritten\n",
            "utf-8"))
    wf.write(bytes("# 危险:如果为True, 则会把该文件配置覆盖掉数据库中保存的配置\n", "utf-8"))
    wf.write(bytes("OVERWRITE_DB = False\n", "utf-8"))
    wf.write(bytes("CONFIG = ", "utf-8"))
    wf.write(
        bytes(
            temp_conf.replace("false",
                              "False").replace("true",
                                               "True").replace("null", "None"),
            "utf-8"))
    wf.close()

    web_start_log.info("Configuration updates and merge is complete")
    return True
Exemplo n.º 4
0
def update_config_file(mdbs, *args, **kwargs):
    """
    网站启动的时候, 数据库保存的配置-配置文件 同步更新
    config
    mdb_sys
    redis
    """
    local_config = deepcopy(CONFIG)
    overwrite_db = OVERWRITE_DB
    version_info = mdbs["sys"].db.sys_config.find_one(
        {"new_version": {
            "$exists": True
        }})
    if not version_info:
        now_version = time_to_utcdate(time_stamp=now_time,
                                      tformat="%Y_%m_%d_%H_%M_%S")
        version_uses = {
            "new_version": now_version,
            "used_versions": [now_version],
            "update_time": now_time
        }
        mdbs["sys"].db.sys_config.insert_one(version_uses)
        sys_version_of_config = SYS_CONFIG_VERSION
        last_update_time = now_time
        web_start_log.info("Initialize the sys_config version info")
    else:
        now_version = version_info["new_version"]
        last_update_time = version_info["update_time"]
        if "sys_version_of_config" in version_info:
            sys_version_of_config = version_info["sys_version_of_config"]
        else:
            sys_version_of_config = SYS_CONFIG_VERSION
            mdbs["sys"].db.sys_config.update_one(
                {"new_version": {
                    "$exists": True
                }}, {"$set": {
                    "sys_version_of_config": SYS_CONFIG_VERSION
                }})

    if version_info and not overwrite_db:
        # 查询当前主机web的的配置版本
        cur_h_version_info = mdbs["sys"].db.sys_host.find_one({
            "type":
            "web",
            "host_info.local_ip":
            host_info["local_ip"]
        })
        if not cur_h_version_info:
            cur_h_version_info = {
                "type": "web",
                "host_info": host_info,
                "conf_version": version_info["new_version"],
                "switch_conf_version": None,
                "disable_update_conf": 0
            }
            mdbs["sys"].db.sys_host.insert_one(cur_h_version_info)
            web_start_log.info("Initialize the host version data")

        if cur_h_version_info["switch_conf_version"] or cur_h_version_info[
                "disable_update_conf"]:
            # 数据库配置和本地配置合并:保留本地和数据库的key,用于网站版本回滚
            if cur_h_version_info[
                    "switch_conf_version"] and not cur_h_version_info[
                        "disable_update_conf"]:
                # 版本切换
                now_version = cur_h_version_info["switch_conf_version"]
            else:
                # 禁止更新
                now_version = cur_h_version_info["conf_version"]
            confs = mdbs["sys"].db.sys_config.find(
                {"conf_version": now_version})

            if confs.count(True):
                for conf in confs:
                    if not re.search(r"^__.*__$", conf["key"]):
                        if not conf["project"] in local_config:
                            local_config[conf["project"]] = {}

                        if not conf["key"] in local_config[conf["project"]]:
                            local_config[conf["project"]][conf["key"]] = {
                                "value": conf["value"],
                                "type": conf["type"],
                                "info": conf["info"]
                            }
                        else:
                            local_config[conf["project"]][
                                conf["key"]]["value"] = conf["value"]

                web_start_log.info(
                    "Config rollback:[db to file] Update version info")
            else:
                web_start_log.error(
                    "Config rollback:[db to file] Rollback failure")
                return False
        else:
            # 数据库最新版配置和本地配置合并:以本地配置的key为准,多余的删除
            # 数据库最新版配置和本地配置合并:以本地配置的key为准,多余的删除
            ago_time = now_time - 3600 * 24
            if sys_version_of_config >= SYS_CONFIG_VERSION and last_update_time > ago_time:
                # 系统正在使用的SYS_CONFIG_VERSION版本和当前机器CONFIG的一样,或更高
                # And: 配置24小时内已有更新
                # So: 这次不更新
                msg = " * [sys configs] Not updated. The system is using the same or higher configuration version.\n" \
                      "   And it was executed within 24 hours.\n"
                start_info_print("\033[33m{}\033[0m".format(msg))
                return True

            now_version = version_info["new_version"]
            confs = mdbs["sys"].db.sys_config.find(
                {"conf_version": now_version})
            if confs.count(True):
                for conf in confs:
                    is_cft = re.search(r"^__.*__$", conf["key"])
                    if not is_cft and conf["project"] in local_config.keys() \
                            and conf["key"] in local_config[conf["project"]].keys():

                        local_config[conf["project"]][
                            conf["key"]]["value"] = conf["value"]
                        web_start_log.info(
                            "Config merge:[db to file] {} {}".format(
                                conf["project"], conf["key"]))
                    else:
                        mdbs["sys"].db.sys_config.delete_one(
                            {"_id": conf["_id"]})
                        web_start_log.info("Remove the config:{} {}".format(
                            conf["project"], conf["key"]))
            else:
                web_start_log.error("Config merge:[db to file] Merger failure")
                return False

    else:
        web_start_log.info(
            "**Local configuration directly covering the latest edition of the configuration database"
        )

    r = push_to_db(mdbs,
                   local_config=deepcopy(local_config),
                   now_version=now_version)
    if not r:
        web_start_log.error("Config update:[file to db] Push failure")
        return False

    # 写配置文件
    # info = """#!/usr/bin/env python\n# -*-coding:utf-8-*-\n__author__ = "Allen Woo"\n"""
    # doc = "__readme__= '''{}'''\n".format(__readme__)
    #
    # # write config.py
    #
    # # 把password类型替换成*, 再写入文件,防止提交代码时把密码上传到git
    # for k, v in local_config.items():
    #     for k1, v1 in v.items():
    #         if k1.startswith("__") and k1.endswith("__"):
    #             continue
    #         if "type" in v1 and v1["type"] == "password":
    #             # 由于上一个版的password已被替换,现在需要把把它写写入到CONFIG中
    #             CONFIG[k][k1]["value"] = v1["value"]
    #             # 替换密码
    #             v1["value"] = "<Your password>"
    #
    # temp_conf = str(json.dumps(local_config, indent=4, ensure_ascii=False))
    # wf = open("{}/apps/configs/config.py".format(PROJECT_PATH), "wb")
    # wf.write(bytes(info, "utf-8"))
    # wf.write(bytes(doc, "utf-8"))
    # # 修改配置为同步数据库配置到文件
    # wf.write(bytes("# Danger: If True, the database configuration data will be overwritten\n", "utf-8"))
    # wf.write(bytes("# 危险:如果为True, 则会把该文件配置覆盖掉数据库中保存的配置\n", "utf-8"))
    # wf.write(bytes("OVERWRITE_DB = False\n", "utf-8"))
    # wf.write(bytes("CONFIG = ", "utf-8"))
    # wf.write(bytes(temp_conf.replace("false",
    #                                  "False").replace("true",
    #                                                   "True").replace("null",
    #                                                                   "None"),
    #                "utf-8"))
    # wf.close()

    web_start_log.info("Configuration updates and merge is complete")
    return True