mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-14 21:52:56 +08:00
Some checks failed
检查bot是否运行正常 / bot check (push) Waiting to run
Sequential Lint and Type Check / ruff-call (push) Waiting to run
Sequential Lint and Type Check / pyright-call (push) Blocked by required conditions
Release Drafter / Update Release Draft (push) Waiting to run
Force Sync to Aliyun / sync (push) Waiting to run
Update Version / update-version (push) Waiting to run
CodeQL Code Security Analysis / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Has been cancelled
CodeQL Code Security Analysis / Analyze (${{ matrix.language }}) (none, python) (push) Has been cancelled
* ♻️ refactor(UI): 重构UI渲染服务为组件化分层架构 ♻️ **架构重构** - UI渲染服务重构为组件化分层架构 - 解耦主题管理、HTML生成、截图功能 ✨ **新增功能** - `zhenxun.ui` 统一入口,提供 `render`、`markdown`、`vstack` 等API - `RenderableComponent` 基类和渲染协议抽象 - 新增主题管理器和截图引擎模块 ⚙️ **配置优化** - UI配置迁移至 `superuser/ui_manager.py` - 新增"重载UI主题"管理指令 🔧 **性能改进** - 优化渲染缓存,支持组件级透明缓存 - 所有UI组件适配新渲染流程 * 🚨 auto fix by pre-commit hooks --------- Co-authored-by: webjoin111 <455457521@qq.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
130 lines
4.4 KiB
Python
130 lines
4.4 KiB
Python
from tortoise.functions import Count
|
|
|
|
from zhenxun.models.group_console import GroupConsole
|
|
from zhenxun.models.group_member_info import GroupInfoUser
|
|
from zhenxun.models.plugin_info import PluginInfo
|
|
from zhenxun.models.statistics import Statistics
|
|
from zhenxun.utils.echart_utils import ChartUtils
|
|
from zhenxun.utils.echart_utils.models import Barh
|
|
from zhenxun.utils.enum import PluginType
|
|
from zhenxun.utils.time_utils import TimeUtils
|
|
|
|
|
|
class StatisticsManage:
|
|
@classmethod
|
|
async def get_statistics(
|
|
cls,
|
|
plugin_name: str | None,
|
|
is_global: bool,
|
|
search_type: str | None,
|
|
user_id: str | None = None,
|
|
group_id: str | None = None,
|
|
):
|
|
day = None
|
|
day_type = ""
|
|
if search_type == "day":
|
|
day = 1
|
|
day_type = "日"
|
|
elif search_type == "month":
|
|
day = 30
|
|
day_type = "月"
|
|
elif search_type == "week":
|
|
day = 7
|
|
day_type = "周"
|
|
if day_type:
|
|
day_type += f"({day}天)"
|
|
title = ""
|
|
if user_id:
|
|
"""查用户"""
|
|
query = GroupInfoUser.filter(user_id=user_id)
|
|
if group_id:
|
|
query = query.filter(group_id=group_id)
|
|
user = await query.first()
|
|
title = f"{user.user_name if user else user_id} {day_type}功能调用统计"
|
|
elif group_id:
|
|
"""查群组"""
|
|
group = await GroupConsole.get_group(group_id=group_id)
|
|
title = f"{group.group_name if group else group_id} {day_type}功能调用统计"
|
|
else:
|
|
title = "功能调用统计"
|
|
if is_global and not user_id:
|
|
title = f"全局 {title}"
|
|
return await cls.get_global_statistics(plugin_name, day, title)
|
|
if user_id:
|
|
return await cls.get_my_statistics(user_id, group_id, day, title)
|
|
if group_id:
|
|
return await cls.get_group_statistics(group_id, day, title)
|
|
return None
|
|
|
|
@classmethod
|
|
async def get_global_statistics(
|
|
cls, plugin_name: str | None, day: int | None, title: str
|
|
) -> bytes | str:
|
|
query = Statistics
|
|
if plugin_name:
|
|
query = query.filter(plugin_name=plugin_name)
|
|
if day:
|
|
query = query.filter(create_time__gte=TimeUtils.get_day_start())
|
|
data_list = (
|
|
await query.annotate(count=Count("id"))
|
|
.group_by("plugin_name")
|
|
.values_list("plugin_name", "count")
|
|
)
|
|
return (
|
|
await cls.__build_image(data_list, title)
|
|
if data_list
|
|
else "统计数据为空..."
|
|
)
|
|
|
|
@classmethod
|
|
async def get_my_statistics(
|
|
cls, user_id: str, group_id: str | None, day: int | None, title: str
|
|
):
|
|
query = Statistics.filter(user_id=user_id)
|
|
if group_id:
|
|
query = query.filter(group_id=group_id)
|
|
if day:
|
|
query = query.filter(create_time__gte=TimeUtils.get_day_start())
|
|
data_list = (
|
|
await query.annotate(count=Count("id"))
|
|
.group_by("plugin_name")
|
|
.values_list("plugin_name", "count")
|
|
)
|
|
return (
|
|
await cls.__build_image(data_list, title)
|
|
if data_list
|
|
else "统计数据为空..."
|
|
)
|
|
|
|
@classmethod
|
|
async def get_group_statistics(cls, group_id: str, day: int | None, title: str):
|
|
query = Statistics.filter(group_id=group_id)
|
|
if day:
|
|
query = query.filter(create_time__gte=TimeUtils.get_day_start())
|
|
data_list = (
|
|
await query.annotate(count=Count("id"))
|
|
.group_by("plugin_name")
|
|
.values_list("plugin_name", "count")
|
|
)
|
|
return (
|
|
await cls.__build_image(data_list, title)
|
|
if data_list
|
|
else "统计数据为空..."
|
|
)
|
|
|
|
@classmethod
|
|
async def __build_image(cls, data_list: list[tuple[str, int]], title: str) -> bytes:
|
|
module2count = {x[0]: x[1] for x in data_list}
|
|
plugin_info = await PluginInfo.filter(
|
|
module__in=module2count.keys(),
|
|
load_status=True,
|
|
plugin_type=PluginType.NORMAL,
|
|
).all()
|
|
x_index = []
|
|
data = []
|
|
for plugin in plugin_info:
|
|
x_index.append(plugin.name)
|
|
data.append(module2count.get(plugin.module, 0))
|
|
barh = Barh(data=data, category_data=x_index, title=title)
|
|
return await ChartUtils.barh(barh)
|