From d4ab4357a4eaf61dcab6bba427e620b9c5333e42 Mon Sep 17 00:00:00 2001 From: zhaoqingang <zhaoqg0118@163.com> Date: 星期四, 13 二月 2025 17:45:06 +0800 Subject: [PATCH] tmp --- app/service/v2/app_driver/chat_data.py | 25 +++++++++++++++++++++---- 1 files changed, 21 insertions(+), 4 deletions(-) diff --git a/app/service/v2/app_driver/chat_data.py b/app/service/v2/app_driver/chat_data.py index dad38e2..52e6883 100644 --- a/app/service/v2/app_driver/chat_data.py +++ b/app/service/v2/app_driver/chat_data.py @@ -18,13 +18,17 @@ async def chat_ping(self, url, params, headers): res = await self.http_get(url, params, headers) - return res.status_code + if res.status_code != 200: + return 0 + if res.json().get("code") == "unauthorized" or res.json().get("code") == 401: + return 0 + return 200 async def chat_post(self, url, data, headers): res = await self.http_post(url, data, headers) - if res.status_code == 200: + if res.status_code == 200 or res.status_code == 201: return res.json() else: return {} @@ -47,6 +51,12 @@ password = RagflowCrypto(settings.PUBLIC_KEY, settings.PRIVATE_KEY).encrypt(password) return password + @staticmethod + async def get_chat_headers(token): + return { + 'Content-Type': 'application/json', + 'Authorization': token + } @@ -69,9 +79,16 @@ 'Content-Type': 'application/json', 'Authorization': f"Bearer {token}" } - ans = await chat.chat_parameters(url, params, headers) - print(ans) + # ans = await chat.chat_parameters(url, params, headers) + # print(ans) + ping_url = "http://192.168.20.116:11080/v1/system/version" + # ping_url = "http://192.168.20.119:13002/console/api/workspaces" + user_token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiNjEzNzdiYzctZTViYy00YjhiLTgxYTYtNWZkOTVhODVlMmE4IiwiZXhwIjoxNzM5MjU3Njk1LCJpc3MiOiJTRUxGX0hPU1RFRCIsInN1YiI6IkNvbnNvbGUgQVBJIFBhc3Nwb3J0In0.w7xQrepd1dYR4iPXcbuthIZjdm45bTJFbolOM_SE9aQ" + # token = "Bearer {}" + token = "{}" + res = await chat.chat_ping(ping_url, {}, await chat.get_chat_headers(token.format(user_token))) + print(res) import asyncio -- Gitblit v1.8.0