优化IO问题
This commit is contained in:
@@ -1,7 +1,5 @@
|
|||||||
from loguru import logger
|
from loguru import logger
|
||||||
import requests
|
|
||||||
import re
|
import re
|
||||||
from json import dumps as jsonDumps
|
|
||||||
from typing import Dict, Any, List, Optional, Tuple
|
from typing import Dict, Any, List, Optional, Tuple
|
||||||
|
|
||||||
from base.plugin_common.message_plugin_interface import MessagePluginInterface
|
from base.plugin_common.message_plugin_interface import MessagePluginInterface
|
||||||
@@ -10,133 +8,142 @@ from utils.decorator.plugin_decorators import plugin_stats_decorator
|
|||||||
from utils.robot_cmd.robot_command import Feature, PermissionStatus, GroupBotManager
|
from utils.robot_cmd.robot_command import Feature, PermissionStatus, GroupBotManager
|
||||||
from wechat_ipad import WechatAPIClient
|
from wechat_ipad import WechatAPIClient
|
||||||
|
|
||||||
|
import aiohttp
|
||||||
|
import asyncio
|
||||||
|
from typing import Optional, List, Dict, Any
|
||||||
|
|
||||||
|
|
||||||
class QL:
|
class QL:
|
||||||
def __init__(self, address: str, id: str, secret: str) -> None:
|
def __init__(self, address: str, id: str, secret: str) -> None:
|
||||||
"""
|
"""初始化"""
|
||||||
初始化
|
|
||||||
"""
|
|
||||||
self.address = address
|
self.address = address
|
||||||
self.id = id
|
self.id = id
|
||||||
self.secret = secret
|
self.secret = secret
|
||||||
self.valid = True
|
self.valid = True
|
||||||
self.auth = None
|
self.auth = None
|
||||||
|
self._session: Optional[aiohttp.ClientSession] = None
|
||||||
|
|
||||||
def log(self, content: str) -> None:
|
async def login(self) -> bool:
|
||||||
"""
|
"""异步登录"""
|
||||||
日志
|
|
||||||
"""
|
|
||||||
print(content)
|
|
||||||
|
|
||||||
def login(self) -> bool:
|
|
||||||
"""
|
|
||||||
登录
|
|
||||||
"""
|
|
||||||
url = f"{self.address}/open/auth/token?client_id={self.id}&client_secret={self.secret}"
|
url = f"{self.address}/open/auth/token?client_id={self.id}&client_secret={self.secret}"
|
||||||
try:
|
try:
|
||||||
# 添加超时参数
|
async with aiohttp.ClientSession().get(url, timeout=aiohttp.ClientTimeout(total=15)) as response:
|
||||||
rjson = requests.get(url, timeout=(5, 15)).json()
|
if response.status == 200:
|
||||||
if (rjson['code'] == 200):
|
rjson = await response.json()
|
||||||
|
if rjson['code'] == 200:
|
||||||
self.auth = f"{rjson['data']['token_type']} {rjson['data']['token']}"
|
self.auth = f"{rjson['data']['token_type']} {rjson['data']['token']}"
|
||||||
self.valid = True
|
self.valid = True
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
self.log(f"登录失败:{rjson['message']}")
|
logger.info(f"登录失败:{rjson['message']}")
|
||||||
|
self.valid = False
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
logger.info(f"登录失败:HTTP {response.status}")
|
||||||
self.valid = False
|
self.valid = False
|
||||||
return False
|
return False
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.valid = False
|
self.valid = False
|
||||||
self.log(f"登录失败:{str(e)}")
|
logger.info(f"登录失败:{str(e)}")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def getEnvs(self) -> list:
|
async def getEnvs(self) -> list:
|
||||||
"""
|
"""异步获取环境变量"""
|
||||||
获取环境变量
|
|
||||||
"""
|
|
||||||
# 每次操作前先登录,确保token有效
|
# 每次操作前先登录,确保token有效
|
||||||
if not self.login():
|
if not await self.login():
|
||||||
return []
|
return []
|
||||||
|
|
||||||
url = f"{self.address}/open/envs?searchValue="
|
url = f"{self.address}/open/envs?searchValue="
|
||||||
headers = {"Authorization": self.auth}
|
headers = {"Authorization": self.auth}
|
||||||
try:
|
try:
|
||||||
# 添加超时参数
|
async with aiohttp.ClientSession().get(url, headers=headers, timeout=aiohttp.ClientTimeout(total=15)) as response:
|
||||||
rjson = requests.get(url, headers=headers, timeout=(5, 15)).json()
|
if response.status == 200:
|
||||||
if (rjson['code'] == 200):
|
rjson = await response.json()
|
||||||
|
if rjson['code'] == 200:
|
||||||
return rjson['data']
|
return rjson['data']
|
||||||
else:
|
else:
|
||||||
self.log(f"获取环境变量失败:{rjson['message']}")
|
logger.info(f"获取环境变量失败:{rjson['message']}")
|
||||||
|
return []
|
||||||
|
else:
|
||||||
|
logger.info(f"获取环境变量失败:HTTP {response.status}")
|
||||||
return []
|
return []
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.log(f"获取环境变量失败:{str(e)}")
|
logger.info(f"获取环境变量失败:{str(e)}")
|
||||||
return []
|
return []
|
||||||
|
|
||||||
def deleteEnvs(self, ids: list) -> bool:
|
async def deleteEnvs(self, ids: list) -> bool:
|
||||||
"""
|
"""异步删除环境变量"""
|
||||||
删除环境变量
|
|
||||||
"""
|
|
||||||
# 每次操作前先登录,确保token有效
|
# 每次操作前先登录,确保token有效
|
||||||
if not self.login():
|
if not await self.login():
|
||||||
return False
|
return False
|
||||||
|
|
||||||
url = f"{self.address}/open/envs"
|
url = f"{self.address}/open/envs"
|
||||||
headers = {"Authorization": self.auth, "content-type": "application/json"}
|
headers = {"Authorization": self.auth, "content-type": "application/json"}
|
||||||
try:
|
try:
|
||||||
rjson = requests.delete(url, headers=headers, data=jsonDumps(ids)).json()
|
async with aiohttp.ClientSession().delete(url, headers=headers, json=ids,
|
||||||
if (rjson['code'] == 200):
|
timeout=aiohttp.ClientTimeout(total=15)) as response:
|
||||||
self.log(f"删除环境变量成功:{len(ids)}")
|
if response.status == 200:
|
||||||
|
rjson = await response.json()
|
||||||
|
if rjson['code'] == 200:
|
||||||
|
logger.info(f"删除环境变量成功:{len(ids)}")
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
self.log(f"删除环境变量失败:{rjson['message']}")
|
logger.info(f"删除环境变量失败:{rjson['message']}")
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
logger.info(f"删除环境变量失败:HTTP {response.status}")
|
||||||
return False
|
return False
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.log(f"删除环境变量失败:{str(e)}")
|
logger.info(f"删除环境变量失败:{str(e)}")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def addEnvs(self, envs: list) -> bool:
|
async def addEnvs(self, envs: list) -> bool:
|
||||||
"""
|
"""异步添加环境变量"""
|
||||||
新建环境变量
|
if not await self.login():
|
||||||
"""
|
|
||||||
# 每次操作前先登录,确保token有效
|
|
||||||
if not self.login():
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
url = f"{self.address}/open/envs"
|
url = f"{self.address}/open/envs"
|
||||||
headers = {"Authorization": self.auth, "content-type": "application/json"}
|
headers = {"Authorization": self.auth, "content-type": "application/json"}
|
||||||
try:
|
try:
|
||||||
# 添加超时参数
|
async with aiohttp.ClientSession().post(url, headers=headers, json=envs,
|
||||||
rjson = requests.post(url, headers=headers, data=jsonDumps(envs), timeout=(5, 15)).json()
|
timeout=aiohttp.ClientTimeout(total=15)) as response:
|
||||||
if (rjson['code'] == 200):
|
if response.status == 200:
|
||||||
self.log(f"新建环境变量成功:{len(envs)}")
|
rjson = await response.json()
|
||||||
|
if rjson['code'] == 200:
|
||||||
|
logger.info(f"添加环境变量成功:{len(envs)}")
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
self.log(f"新建环境变量失败:{rjson['message']}")
|
logger.info(f"添加环境变量失败:{rjson['message']}")
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
logger.info(f"添加环境变量失败:HTTP {response.status}")
|
||||||
return False
|
return False
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.log(f"新建环境变量失败:{str(e)}")
|
logger.info(f"添加环境变量失败:{str(e)}")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def updateEnv(self, env: dict) -> bool:
|
async def updateEnv(self, env: dict) -> bool:
|
||||||
"""
|
"""异步更新环境变量"""
|
||||||
更新环境变量
|
if not await self.login():
|
||||||
"""
|
|
||||||
# 每次操作前先登录,确保token有效
|
|
||||||
if not self.login():
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
url = f"{self.address}/open/envs"
|
url = f"{self.address}/open/envs"
|
||||||
headers = {"Authorization": self.auth, "content-type": "application/json"}
|
headers = {"Authorization": self.auth, "content-type": "application/json"}
|
||||||
try:
|
try:
|
||||||
# 添加超时参数
|
async with aiohttp.ClientSession().put(url, headers=headers, json=env, timeout=aiohttp.ClientTimeout(total=15)) as response:
|
||||||
rjson = requests.put(url, headers=headers, data=jsonDumps(env), timeout=(5, 15)).json()
|
if response.status == 200:
|
||||||
if (rjson['code'] == 200):
|
rjson = await response.json()
|
||||||
self.log(f"更新环境变量成功")
|
if rjson['code'] == 200:
|
||||||
|
logger.info(f"更新环境变量成功:{env.get('id')}")
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
self.log(f"更新环境变量失败:{rjson['message']}")
|
logger.info(f"更新环境变量失败:{rjson['message']}")
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
logger.info(f"更新环境变量失败:HTTP {response.status}")
|
||||||
return False
|
return False
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.log(f"更新环境变量失败:{str(e)}")
|
logger.info(f"更新环境变量失败:{str(e)}")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import subprocess
|
import subprocess
|
||||||
|
import time
|
||||||
|
|
||||||
import markdown
|
import markdown
|
||||||
from playwright.async_api import async_playwright
|
from playwright.async_api import async_playwright
|
||||||
@@ -235,7 +236,8 @@ async def convert_md_str_to_image(md_content, output_image):
|
|||||||
"""
|
"""
|
||||||
将 Markdown 字符串转换为图片(异步)。
|
将 Markdown 字符串转换为图片(异步)。
|
||||||
"""
|
"""
|
||||||
temp_html = 'temp_output.html'
|
timestamp = int(time.time())
|
||||||
|
temp_html = f"temp_output_{timestamp}.html"
|
||||||
md_str_to_html(md_content, temp_html)
|
md_str_to_html(md_content, temp_html)
|
||||||
await html_to_image(temp_html, output_image)
|
await html_to_image(temp_html, output_image)
|
||||||
os.remove(temp_html)
|
os.remove(temp_html)
|
||||||
|
|||||||
Reference in New Issue
Block a user