# coding:utf-8 import sys import io import os import time import re import string import subprocess sys.path.append(os.getcwd() + "/class/core") import mw app_debug = False if mw.isAppleSystem(): app_debug = True def getPluginName(): return 'haproxy' def getPluginDir(): return mw.getPluginDir() + '/' + getPluginName() def getServerDir(): return mw.getServerDir() + '/' + getPluginName() def getInitDFile(): if app_debug: return '/tmp/' + getPluginName() return '/etc/init.d/' + getPluginName() def getConfTpl(): path = getPluginDir() + "/conf/haproxy.conf" return path def getConf(): path = getServerDir() + "/haproxy.conf" return path def getInitDTpl(): path = getPluginDir() + "/init.d/" + getPluginName() + ".tpl" return path def getArgs(): args = sys.argv[2:] tmp = {} args_len = len(args) if args_len == 1: t = args[0].strip('{').strip('}') t = t.split(':') tmp[t[0]] = t[1] elif args_len > 1: for i in range(len(args)): t = args[i].split(':') tmp[t[0]] = t[1] return tmp def checkArgs(data, ck=[]): for i in range(len(ck)): if not ck[i] in data: return (False, mw.returnJson(False, '参数:(' + ck[i] + ')没有!')) return (True, mw.returnJson(True, 'ok')) def configTpl(): path = getPluginDir() + '/tpl' pathFile = os.listdir(path) tmp = [] for one in pathFile: file = path + '/' + one tmp.append(file) return mw.getJson(tmp) def readConfigTpl(): args = getArgs() data = checkArgs(args, ['file']) if not data[0]: return data[1] content = mw.readFile(args['file']) content = contentReplace(content) return mw.returnJson(True, 'ok', content) def contentReplace(content): service_path = mw.getServerDir() content = content.replace('{$ROOT_PATH}', mw.getRootDir()) content = content.replace('{$SERVER_PATH}', service_path) content = content.replace('{$HA_USER}', mw.getRandomString(8)) content = content.replace('{$HA_PWD}', mw.getRandomString(10)) content = content.replace('{$SERVER_APP}', service_path + '/haproxy') return content def status(): data = mw.execShell( "ps -ef|grep haproxy |grep -v grep | grep -v python | awk '{print $2}'") if data[0] == '': return 'stop' return 'start' def initDreplace(): file_tpl = getInitDTpl() service_path = os.path.dirname(os.getcwd()) initD_path = getServerDir() + '/init.d' if not os.path.exists(initD_path): os.mkdir(initD_path) file_bin = initD_path + '/' + getPluginName() # initd replace if not os.path.exists(file_bin): content = mw.readFile(file_tpl) content = contentReplace(content) mw.writeFile(file_bin, content) mw.execShell('chmod +x ' + file_bin) # config replace conf_bin = getConf() if not os.path.exists(conf_bin): conf_content = mw.readFile(getConfTpl()) conf_content = contentReplace(conf_content) mw.writeFile(getServerDir() + '/haproxy.conf', conf_content) # systemd systemDir = mw.systemdCfgDir() systemService = systemDir + '/haproxy.service' systemServiceTpl = getPluginDir() + '/init.d/haproxy.service.tpl' if os.path.exists(systemDir) and not os.path.exists(systemService): service_path = mw.getServerDir() se_content = mw.readFile(systemServiceTpl) se_content = se_content.replace('{$SERVER_PATH}', service_path) mw.writeFile(systemService, se_content) mw.execShell('systemctl daemon-reload') return file_bin def haOp(method): file = initDreplace() # check config sdir = getServerDir() cmd_check = sdir+'/sbin/haproxy -c -f ' + sdir + '/haproxy.conf' chk_data = mw.execShell(cmd_check) if chk_data[1]!= '': return chk_data[1] if not mw.isAppleSystem(): data = mw.execShell('systemctl ' + method + ' haproxy') if data[1] == '': return 'ok' return 'fail' data = mw.execShell(file + ' ' + method) if data[1] == '': return 'ok' return data[1] def start(): return haOp('start') def stop(): return haOp('stop') def restart(): return haOp('restart') def reload(): return haOp('reload') def initdStatus(): if mw.isAppleSystem(): return "Apple Computer does not support" shell_cmd = 'systemctl status haproxy | grep loaded | grep "enabled;"' data = mw.execShell(shell_cmd) if data[0] == '': return 'fail' return 'ok' def initdInstall(): if mw.isAppleSystem(): return "Apple Computer does not support" mw.execShell('systemctl enable haproxy') return 'ok' def initdUinstall(): if mw.isAppleSystem(): return "Apple Computer does not support" mw.execShell('systemctl disable haproxy') return 'ok' def runLog(): path = getServerDir() + "/haproxy.log" return path if __name__ == "__main__": func = sys.argv[1] if func == 'status': print(status()) elif func == 'start': print(start()) elif func == 'stop': print(stop()) elif func == 'restart': print(restart()) elif func == 'reload': print(reload()) elif func == 'initd_status': print(initdStatus()) elif func == 'initd_install': print(initdInstall()) elif func == 'initd_uninstall': print(initdUinstall()) elif func == 'conf': print(getConf()) elif func == 'config_tpl': print(configTpl()) elif func == 'read_config_tpl': print(readConfigTpl()) elif func == 'run_log': print(runLog()) elif func == 'query_log': print(queryLog()) else: print('error')