This commit is contained in:
Mr Chen 2024-04-30 11:15:00 +08:00
parent b99a9d7d2f
commit 78a032a18b
2 changed files with 9 additions and 5 deletions

View File

@ -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

View File

@ -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)