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/web/utils/config.py

89 lines
3.2 KiB

# coding:utf-8
# ---------------------------------------------------------------------------------
# MW-Linux面板
# ---------------------------------------------------------------------------------
# copyright (c) 2018-∞(https://github.com/midoks/mdserver-web) All rights reserved.
# ---------------------------------------------------------------------------------
# Author: midoks <midoks@163.com>
# ---------------------------------------------------------------------------------
import os
import core.mw as mw
import thisdb
def getUnauthStatus(
code= '0'
):
code = str(code)
data = {}
data['code'] = code
if code == '0':
data['text'] = "默认-安全入口错误提示"
elif code == '400':
data['text'] = "400-客户端请求错误"
elif code == '401':
data['text'] = "401-未授权访问"
elif code == '403':
data['text'] = "403-拒绝访问"
elif code == '404':
data['text'] = "404-页面不存在"
elif code == '408':
data['text'] = "408-客户端超时"
elif code == '416':
data['text'] = "416-无效的请求"
else:
data['code'] = '0'
data['text'] = "默认-安全入口错误提示"
return data
def getGlobalVar():
'''
获取全局变量
'''
data = {}
data['title'] = thisdb.getOption('title', default='后羿面板')
data['ip'] = thisdb.getOption('server_ip', default='127.0.0.1')
data['site_path'] = thisdb.getOption('site_path', default=mw.getFatherDir()+'/wwwroot')
data['backup_path'] = thisdb.getOption('backup_path', default=mw.getFatherDir()+'/backup')
data['admin_path'] = '/'+thisdb.getOption('admin_path', default='')
data['debug'] = thisdb.getOption('debug', default='close')
data['admin_close'] = thisdb.getOption('admin_close', default='no')
data['site_count'] = thisdb.getSitesCount()
data['port'] = mw.getHostPort()
__file = mw.getCommonFile()
if os.path.exists(__file['ipv6']):
data['ipv6'] = 'checked'
else:
data['ipv6'] = ''
# 获取ROOT用户名
data['username'] = mw.M('users').where("id=?", (1,)).getField('name')
# 获取未认证状态信息
unauthorized_status = thisdb.getOption('unauthorized_status', default='0')
data['unauthorized_status'] = getUnauthStatus(code=unauthorized_status)
data['basic_auth'] = thisdb.getOptionByJson('basic_auth', default={'open':False})
data['two_step_verification'] = thisdb.getOptionByJson('two_step_verification', default={'open':False})
# 服务器时间
sformat = 'date +"%Y-%m-%d %H:%M:%S %Z %z"'
data['systemdate'] = mw.execShell(sformat)[0].strip()
data['hook_menu'] = thisdb.getOptionByJson('hook_menu',type='hook',default=[])
data['hook_global_static'] = thisdb.getOptionByJson('hook_global_static',type='hook',default=[])
# 邮件通知设置
data['notify_email'] = thisdb.getOptionByJson('notify_email', default={'open':False}, type='notify')
data['notify_tgbot'] = thisdb.getOptionByJson('notify_tgbot', default={'open':False}, type='notify')
data['panel_ssl'] = thisdb.getOptionByJson('panel_ssl', default={'open':False})
data['panel_domain'] = thisdb.getOption('panel_domain', default='')
return data