pull/561/head
Mr Chen 1 year ago
parent b99a9d7d2f
commit 78a032a18b
  1. 5
      class/core/mw.py
  2. 9
      plugins/mongodb/index.py

@ -908,6 +908,11 @@ def aesDecrypt_Crypto(data, key, vi):
text_decrypted = text_decrypted.decode('utf8').rstrip() # 去掉补位的右侧空格
return text_decrypted
def getDefault(data,val,def_val=''):
if val in data:
return data[val]
return def_val
def encodeImage(imgsrc, newsrc):
# 图片加密
import struct

@ -220,7 +220,6 @@ def runDocInfo():
result["dbs"] = showDbList
return mw.getJson(result)
def runReplInfo():
import pymongo
@ -242,11 +241,11 @@ def runReplInfo():
if 'secondary' in repl and not repl['secondary']:
result['status'] = ''
result['setName'] = repl['setName']
result['primary'] = repl['primary']
result['me'] = repl['me']
result['setName'] = mw.getDefault(repl,'setName', '')
result['primary'] = mw.getDefault(repl,'primary', '')
result['me'] = mw.getDefault(repl,'me', '')
hosts = repl['hosts']
hosts = mw.getDefault(repl,'hosts', '')
result['hosts'] = ','.join(hosts)

Loading…
Cancel
Save