Simple Linux Panel
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.
mdserver-web/plugins/php/index.py

234 lines
6.3 KiB

7 years ago
# coding:utf-8
import sys
import io
import os
import time
6 years ago
import re
reload(sys)
sys.setdefaultencoding('utf8')
7 years ago
sys.path.append(os.getcwd() + "/class/core")
import public
7 years ago
app_debug = False
if public.getOs() == 'darwin':
app_debug = True
def getPluginName():
7 years ago
return 'php'
7 years ago
def getPluginDir():
return public.getPluginDir() + '/' + getPluginName()
def getServerDir():
return public.getServerDir() + '/' + getPluginName()
def getInitDFile():
if app_debug:
return '/tmp/' + getPluginName()
return '/etc/init.d/' + getPluginName()
7 years ago
7 years ago
def getArgs():
6 years ago
args = sys.argv[3:]
7 years ago
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 getConf(version):
6 years ago
path = getServerDir() + '/' + version + '/etc/php.ini'
7 years ago
return path
7 years ago
def status(version):
7 years ago
cmd = "ps -ef|grep 'php/" + version + \
"' |grep -v grep | grep -v python | awk '{print $2}'"
data = public.execShell(cmd)
7 years ago
if data[0] == '':
return 'stop'
return 'start'
7 years ago
def contentReplace(content, version):
7 years ago
service_path = public.getServerDir()
7 years ago
content = content.replace('{$SERVER_PATH}', service_path)
content = content.replace('{$PHP_VERSION}', version)
return content
def phpFpmReplace(version):
7 years ago
tpl_php_fpm = getPluginDir() + '/conf/php-fpm.conf'
service_php_fpm = getServerDir() + '/' + version + '/etc/php-fpm.conf'
content = public.readFile(tpl_php_fpm)
7 years ago
content = contentReplace(content, version)
7 years ago
public.writeFile(service_php_fpm, content)
7 years ago
def phpFpmWwwReplace(version):
7 years ago
service_path = public.getServerDir()
tpl_php_fpmwww = getPluginDir() + '/conf/www.conf'
service_php_fpm_dir = getServerDir() + '/' + version + '/etc/php-fpm.d/'
service_php_fpmwww = service_php_fpm_dir + '/www.conf'
if not os.path.exists(service_php_fpm_dir):
os.mkdir(service_php_fpm_dir)
content = public.readFile(tpl_php_fpmwww)
7 years ago
content = contentReplace(content, version)
7 years ago
public.writeFile(service_php_fpmwww, content)
7 years ago
7 years ago
def initDreplace(version):
7 years ago
7 years ago
file_tpl = getConf(version)
service_path = public.getServerDir()
7 years ago
7 years ago
initD_path = getServerDir() + '/init.d'
if not os.path.exists(initD_path):
os.mkdir(initD_path)
file_bin = initD_path + '/php' + version
content = public.readFile(file_tpl)
7 years ago
content = contentReplace(content, version)
7 years ago
public.writeFile(file_bin, content)
public.execShell('chmod +x ' + file_bin)
7 years ago
7 years ago
phpFpmWwwReplace(version)
7 years ago
phpFpmReplace(version)
7 years ago
7 years ago
return file_bin
def phpOp(version, method):
file = initDreplace(version)
data = public.execShell(file + ' ' + method)
7 years ago
print data
7 years ago
if data[1] == '':
7 years ago
return 'ok'
return 'fail'
7 years ago
def start(version):
return phpOp(version, 'start')
def stop(version):
return phpOp(version, 'stop')
7 years ago
7 years ago
def restart(version):
return phpOp(version, 'restart')
7 years ago
7 years ago
def reload(version):
return phpOp(version, 'reload')
7 years ago
7 years ago
6 years ago
def fpmLog(version):
return getServerDir() + '/' + version + '/var/log/php-fpm.log'
def fpmSlowLog(version):
return getServerDir() + '/' + version + '/var/log/php-fpm-slow.log'
6 years ago
def getPhpConf(version):
gets = [
{'name': 'short_open_tag', 'type': 1, 'ps': '短标签支持'},
{'name': 'asp_tags', 'type': 1, 'ps': 'ASP标签支持'},
{'name': 'max_execution_time', 'type': 2, 'ps': '最大脚本运行时间'},
{'name': 'max_input_time', 'type': 2, 'ps': '最大输入时间'},
{'name': 'memory_limit', 'type': 2, 'ps': '脚本内存限制'},
{'name': 'post_max_size', 'type': 2, 'ps': 'POST数据最大尺寸'},
{'name': 'file_uploads', 'type': 1, 'ps': '是否允许上传文件'},
{'name': 'upload_max_filesize', 'type': 2, 'ps': '允许上传文件的最大尺寸'},
{'name': 'max_file_uploads', 'type': 2, 'ps': '允许同时上传文件的最大数量'},
{'name': 'default_socket_timeout', 'type': 2, 'ps': 'Socket超时时间'},
{'name': 'error_reporting', 'type': 3, 'ps': '错误级别'},
{'name': 'display_errors', 'type': 1, 'ps': '是否输出详细错误信息'},
{'name': 'cgi.fix_pathinfo', 'type': 0, 'ps': '是否开启pathinfo'},
{'name': 'date.timezone', 'type': 3, 'ps': '时区'}
7 years ago
]
6 years ago
phpini = public.readFile(getServerDir() + '/' + version + '/etc/php.ini')
result = []
for g in gets:
rep = g['name'] + '\s*=\s*([0-9A-Za-z_& ~]+)(\s*;?|\r?\n)'
tmp = re.search(rep, phpini)
if not tmp:
7 years ago
continue
6 years ago
g['value'] = tmp.groups()[0]
result.append(g)
7 years ago
return public.getJson(result)
6 years ago
def submitPhpConf(version):
gets = ['display_errors', 'cgi.fix_pathinfo', 'date.timezone', 'short_open_tag',
'asp_tags', 'max_execution_time', 'max_input_time', 'memory_limit',
'post_max_size', 'file_uploads', 'upload_max_filesize', 'max_file_uploads',
'default_socket_timeout', 'error_reporting']
args = getArgs()
filename = getServerDir() + '/' + version + '/etc/php.ini'
phpini = public.readFile(filename)
for g in gets:
if g in args:
rep = g + '\s*=\s*(.+)\r?\n'
val = g + ' = ' + args[g] + '\n'
phpini = re.sub(rep, val, phpini)
public.writeFile(filename, phpini)
public.execShell(getServerDir() + '/init.d/php' + version + ' reload')
return public.returnJson(True, '设置成功')
7 years ago
if __name__ == "__main__":
6 years ago
if len(sys.argv) < 3:
print 'missing parameters'
exit(0)
7 years ago
func = sys.argv[1]
7 years ago
version = sys.argv[2]
if func == 'status':
print status(version)
7 years ago
elif func == 'start':
7 years ago
print start(version)
7 years ago
elif func == 'stop':
7 years ago
print stop(version)
7 years ago
elif func == 'restart':
7 years ago
print restart(version)
7 years ago
elif func == 'reload':
7 years ago
print reload(version)
6 years ago
elif func == 'fpm_log':
print fpmLog(version)
elif func == 'fpm_slow_log':
print fpmSlowLog(version)
7 years ago
elif func == 'conf':
7 years ago
print getConf(version)
6 years ago
elif func == 'get_php_conf':
print getPhpConf(version)
elif func == 'submit_php_conf':
print submitPhpConf(version)
7 years ago
else:
print "fail"