mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
208 lines
4.4 KiB
208 lines
4.4 KiB
# coding:utf-8
|
|
|
|
import sys
|
|
import io
|
|
import os
|
|
import time
|
|
|
|
sys.path.append(os.getcwd() + "/class/core")
|
|
import mw
|
|
|
|
app_debug = False
|
|
if mw.isAppleSystem():
|
|
app_debug = True
|
|
|
|
|
|
def getPluginName():
|
|
return 'varnish'
|
|
|
|
|
|
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 getConf():
|
|
path = '/etc/varnish/vcl.conf'
|
|
if os.path.exists(path):
|
|
return path
|
|
path = "/etc/varnish/default.vcl"
|
|
return path
|
|
|
|
|
|
def getInitDTpl():
|
|
path = getPluginDir() + "/init.d/" + getPluginName() + ".tpl"
|
|
return path
|
|
|
|
|
|
def contentReplace(content):
|
|
service_path = mw.getServerDir()
|
|
content = content.replace('{$ROOT_PATH}', mw.getRootDir())
|
|
content = content.replace('{$SERVER_PATH}', service_path)
|
|
content = content.replace('{$SERVER_APP}', service_path + '/varnish')
|
|
return content
|
|
|
|
|
|
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 status():
|
|
data = mw.execShell(
|
|
"ps -ef|grep varnish |grep -v grep | grep -v python | grep -v mdserver-web | awk '{print $2}'")
|
|
|
|
if data[0] == '':
|
|
return 'stop'
|
|
return 'start'
|
|
|
|
|
|
def vaOp(method):
|
|
mw.execShell("systemctl daemon-reload")
|
|
data = mw.execShell('systemctl ' + method + ' ' + getPluginName())
|
|
if data[1] == '':
|
|
return 'ok'
|
|
return 'fail'
|
|
|
|
|
|
def start():
|
|
return vaOp('start')
|
|
|
|
|
|
def stop():
|
|
return vaOp('stop')
|
|
|
|
|
|
def restart():
|
|
return vaOp('restart')
|
|
|
|
|
|
def reload():
|
|
return vaOp('reload')
|
|
|
|
|
|
def runInfo():
|
|
cmd = "varnishstat -j"
|
|
data = mw.execShell(cmd)[0].strip()
|
|
return data
|
|
|
|
|
|
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 initdStatus():
|
|
if mw.isAppleSystem():
|
|
return "Apple Computer does not support"
|
|
|
|
shell_cmd = 'systemctl status ' + \
|
|
getPluginName() + ' | 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 ' + getPluginName())
|
|
return 'ok'
|
|
|
|
|
|
def initdUinstall():
|
|
if mw.isAppleSystem():
|
|
return "Apple Computer does not support"
|
|
|
|
mw.execShell('systemctl disable ' + getPluginName())
|
|
return 'ok'
|
|
|
|
|
|
def runLog():
|
|
|
|
if os.path.exists("/var/log/varnish/varnish.log"):
|
|
return "/var/log/varnish/varnish.log"
|
|
|
|
return "/var/log/varnish/varnishncsa.log"
|
|
|
|
|
|
def confService():
|
|
return mw.systemdCfgDir() + '/varnish.service'
|
|
|
|
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 == 'run_info':
|
|
print(runInfo())
|
|
elif func == 'conf':
|
|
print(getConf())
|
|
elif func == 'conf_service':
|
|
print(confService())
|
|
elif func == 'run_log':
|
|
print(runLog())
|
|
elif func == 'config_tpl':
|
|
print(configTpl())
|
|
elif func == 'read_config_tpl':
|
|
print(readConfigTpl())
|
|
else:
|
|
print('error')
|
|
|