Avoid live KDocs status on page load

This commit is contained in:
2026-01-07 14:12:54 +08:00
parent 8c150dcb7c
commit ad847888f8
22 changed files with 77 additions and 73 deletions

View File

@@ -850,14 +850,18 @@ def get_kdocs_status_api():
uploader = get_kdocs_uploader()
status = uploader.get_status()
live = uploader.refresh_login_status()
if live.get("success"):
logged_in = bool(live.get("logged_in"))
status["logged_in"] = logged_in
status["last_login_ok"] = logged_in
status["login_required"] = not logged_in
if live.get("error"):
status["last_error"] = live.get("error")
live = str(request.args.get("live", "")).lower() in ("1", "true", "yes")
if live:
live_status = uploader.refresh_login_status()
if live_status.get("success"):
logged_in = bool(live_status.get("logged_in"))
status["logged_in"] = logged_in
status["last_login_ok"] = logged_in
status["login_required"] = not logged_in
if live_status.get("error"):
status["last_error"] = live_status.get("error")
else:
status["logged_in"] = True if status.get("last_login_ok") else False if status.get("last_login_ok") is False else None
return jsonify(status)
except Exception as e:
return jsonify({"error": f"获取状态失败: {e}"}), 500