# coding: utf-8 # OceanBase Deploy. # Copyright (C) 2021 OceanBase # # This file is part of OceanBase Deploy. # # OceanBase Deploy is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # OceanBase Deploy is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with OceanBase Deploy. If not, see . from __future__ import absolute_import, division, print_function from tool import ConfigUtil def upgrade(plugin_context, search_py_script_plugin, apply_param_plugin, *args, **kwargs): namespace = plugin_context.namespace namespaces = plugin_context.namespaces deploy_name = plugin_context.deploy_name repositories = plugin_context.repositories components = plugin_context.components clients = plugin_context.clients cluster_config = plugin_context.cluster_config cmds = plugin_context.cmds options = plugin_context.options stdio = plugin_context.stdio upgrade_ctx = kwargs.get('upgrade_ctx') upgrade_repositories = kwargs.get('upgrade_repositories') cur_repository = upgrade_repositories[0] dest_repository = upgrade_repositories[-1] repository_dir = dest_repository.repository_dir kwargs['repository_dir'] = repository_dir stop_plugin = search_py_script_plugin([cur_repository], 'stop')[cur_repository] start_plugin = search_py_script_plugin([dest_repository], 'start')[dest_repository] connect_plugin = search_py_script_plugin([dest_repository], 'connect')[dest_repository] display_plugin = search_py_script_plugin([dest_repository], 'display')[dest_repository] apply_param_plugin(cur_repository) if not stop_plugin(namespace, namespaces, deploy_name, repositories, components, clients, cluster_config, cmds, options, stdio, *args, **kwargs): return apply_param_plugin(dest_repository) warns = {} not_support = ['system_password'] original_global_config = cluster_config.get_original_global_conf() for server in cluster_config.servers: original_server_config = cluster_config.get_original_server_conf(server) for key in not_support: if key in original_global_config or key in original_server_config: if key not in warns: warns[key] = 'Configuration item {} is no longer supported'.format(key) if warns: for msg in warns.values(): stdio.warn(msg) key = 'admin_passwd' if key not in original_global_config: password = ConfigUtil.get_random_pwd_by_rule() cluster_config.update_global_conf(key, password) if not start_plugin(namespace, namespaces, deploy_name, repositories, components, clients, cluster_config, cmds, options, stdio, need_bootstrap=True, *args, **kwargs): return ret = connect_plugin(namespace, namespaces, deploy_name, repositories, components, clients, cluster_config, cmds, options, stdio, *args, **kwargs) if ret: if display_plugin(namespace, namespaces, deploy_name, repositories, components, clients, cluster_config, cmds, options, stdio, ret.get_return('cursor'), *args, **kwargs): upgrade_ctx['index'] = len(upgrade_repositories) return plugin_context.return_true()