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.
87 lines
2.0 KiB
87 lines
2.0 KiB
# coding: utf-8
|
|
|
|
import os
|
|
import sys
|
|
import time
|
|
import string
|
|
import json
|
|
import hashlib
|
|
import shlex
|
|
import datetime
|
|
import subprocess
|
|
import re
|
|
import hashlib
|
|
from random import Random
|
|
|
|
import mw
|
|
import db
|
|
|
|
from flask import redirect
|
|
|
|
|
|
def init():
|
|
|
|
initDB()
|
|
initInitD()
|
|
initUserInfo()
|
|
|
|
|
|
def local():
|
|
result = checkClose()
|
|
if result:
|
|
return result
|
|
|
|
|
|
# 检查面板是否关闭
|
|
def checkClose():
|
|
if os.path.exists('data/close.pl'):
|
|
return redirect('/close')
|
|
|
|
|
|
def initDB():
|
|
try:
|
|
sql = db.Sql().dbfile('default')
|
|
csql = mw.readFile('data/sql/default.sql')
|
|
csql_list = csql.split(';')
|
|
for index in range(len(csql_list)):
|
|
sql.execute(csql_list[index], ())
|
|
|
|
except Exception as ex:
|
|
print(str(ex))
|
|
|
|
|
|
def initInitD():
|
|
script = mw.getRunDir() + '/scripts/init.d/mw.tpl'
|
|
script_bin = mw.getRunDir() + '/scripts/init.d/mw'
|
|
# if os.path.exists(script_bin):
|
|
# return
|
|
|
|
content = mw.readFile(script)
|
|
content = content.replace("{$SERVER_PATH}", mw.getRunDir())
|
|
|
|
mw.writeFile(script_bin, content)
|
|
mw.execShell('chmod +x ' + script_bin)
|
|
|
|
mw.setHostAddr(mw.getLocalIp())
|
|
|
|
if not mw.isAppleSystem():
|
|
initd_bin = '/etc/init.d/mw'
|
|
if not os.path.exists(initd_bin):
|
|
import shutil
|
|
shutil.copyfile(script_bin, initd_bin)
|
|
mw.execShell('chmod +x ' + initd_bin)
|
|
# 加入自启动
|
|
mw.execShell('chkconfig --add mw')
|
|
mw.execShell('systemctl enable mw')
|
|
mw.execShell('systemctl daemon-reload')
|
|
|
|
|
|
def initUserInfo():
|
|
|
|
data = mw.M('users').where('id=?', (1,)).getField('password')
|
|
if data == '21232f297a57a5a743894a0e4a801fc3':
|
|
pwd = mw.getRandomString(8).lower()
|
|
file_pw = mw.getRunDir() + '/data/default.pl'
|
|
mw.writeFile(file_pw, pwd)
|
|
mw.M('users').where('id=?', (1,)).setField(
|
|
'password', mw.md5(pwd))
|
|
|