zhenxun_bot/plugins/statistics_handle.py

177 lines
6.6 KiB
Python
Raw Normal View History

2021-06-30 19:50:55 +08:00
from nonebot import on_command
2021-07-30 21:21:51 +08:00
from nonebot.adapters.cqhttp import Bot, GroupMessageEvent, MessageEvent
2021-06-30 19:50:55 +08:00
from models.group_info import GroupInfo
from nonebot.typing import T_State
from pathlib import Path
from configs.path_config import DATA_PATH, TTF_PATH
import matplotlib.pyplot as plt
from utils.utils import get_message_text
2021-07-30 21:21:51 +08:00
from utils.image_utils import fig2b64
from utils.message_builder import image
2021-06-30 19:50:55 +08:00
from configs.config import plugins2info_dict
from matplotlib.font_manager import FontProperties
2021-07-30 21:21:51 +08:00
plt.rcParams["font.family"] = ["SimHei", "FangSong", "KaiTi"]
plt.rcParams["font.sans-serif"] = ["SimHei", "FangSong", "KaiTi"]
plt.rcParams["axes.unicode_minus"] = False
2021-06-30 19:50:55 +08:00
2021-07-30 21:21:51 +08:00
font = FontProperties(fname=f"{TTF_PATH}/yz.ttf", size=10)
2021-06-30 19:50:55 +08:00
try:
import ujson as json
except ModuleNotFoundError:
import json
2021-07-30 21:21:51 +08:00
__plugin_name__ = "功能调用统计"
__plugin_usage__ = "用法: 无"
2021-06-30 19:50:55 +08:00
2021-07-30 21:21:51 +08:00
statistics = on_command(
"功能调用统计",
aliases={
"日功能调用统计",
"周功能调用统计",
"月功能调用统计",
"我的功能调用统计",
"我的日功能调用统计",
"我的周功能调用统计",
"我的月功能调用统计",
},
priority=5,
block=True,
)
2021-06-30 19:50:55 +08:00
2021-07-30 21:21:51 +08:00
statistics_group_file = Path(f"{DATA_PATH}/_prefix_count.json")
statistics_user_file = Path(f"{DATA_PATH}/_prefix_user_count.json")
2021-06-30 19:50:55 +08:00
@statistics.handle()
2021-07-30 21:21:51 +08:00
async def _(bot: Bot, event: MessageEvent, state: T_State):
2021-06-30 19:50:55 +08:00
msg = get_message_text(event.json())
2021-07-30 21:21:51 +08:00
if state["_prefix"]["raw_command"][:2] == "我的":
itype = "user"
key = str(event.user_id)
state["_prefix"]["raw_command"] = state["_prefix"]["raw_command"][2:]
if not statistics_user_file.exists():
await statistics.finish("统计文件不存在...", at_sender=True)
else:
if not isinstance(event, GroupMessageEvent):
await statistics.finish("请在群内调用此功能...")
itype = "group"
key = str(event.group_id)
if not statistics_group_file.exists():
await statistics.finish("统计文件不存在...", at_sender=True)
plugin = ""
if state["_prefix"]["raw_command"][0] == "":
arg = "day_statistics"
elif state["_prefix"]["raw_command"][0] == "":
arg = "week_statistics"
elif state["_prefix"]["raw_command"][0] == "":
arg = "month_statistics"
2021-06-30 19:50:55 +08:00
else:
2021-07-30 21:21:51 +08:00
arg = "total_statistics"
2021-06-30 19:50:55 +08:00
if msg:
2021-07-30 21:21:51 +08:00
for x in plugins2info_dict.keys():
if msg in plugins2info_dict[x]["cmd"]:
plugin = plugins2info_dict[x]["cmd"][0]
2021-06-30 19:50:55 +08:00
break
else:
2021-07-30 21:21:51 +08:00
if arg not in ["day_statistics", "total_statistics"]:
await statistics.finish("未找到此功能的调用...", at_sender=True)
if itype == "group":
data: dict = json.load(open(statistics_group_file, "r", encoding="utf8"))
if not data[arg].get(str(event.group_id)):
await statistics.finish("该群统计数据不存在...", at_sender=True)
else:
data: dict = json.load(open(statistics_user_file, "r", encoding="utf8"))
if not data[arg].get(str(event.user_id)):
await statistics.finish("该用户统计数据不存在...", at_sender=True)
day_index = data["day_index"]
data = data[arg][key]
if itype == "group":
name = await GroupInfo.get_group_info(event.group_id)
name = name.group_name if name else str(event.group_id)
else:
name = event.sender.card if event.sender.card else event.sender.nickname
img = generate_statistics_img(data, arg, name, plugin, day_index)
2021-06-30 19:50:55 +08:00
await statistics.send(image(b64=img))
plt.cla()
2021-07-30 21:21:51 +08:00
def generate_statistics_img(
data: dict, arg: str, name: str, plugin: str, day_index: int
):
if arg == "day_statistics":
init_bar_graph(data, f"{name} 日功能调用统计")
elif arg == "week_statistics":
2021-06-30 19:50:55 +08:00
if plugin:
current_week = day_index % 7
week_lst = []
if current_week == 0:
week_lst = [1, 2, 3, 4, 5, 6, 7]
else:
for i in range(current_week + 1, 7):
week_lst.append(str(i))
for i in range(current_week + 1):
week_lst.append(str(i))
count = []
for i in range(7):
if int(week_lst[i]) == 7:
2021-07-30 21:21:51 +08:00
try:
count.append(data[str(0)][plugin])
except KeyError:
count.append(0)
2021-06-30 19:50:55 +08:00
else:
2021-07-30 21:21:51 +08:00
try:
count.append(data[str(week_lst[i])][plugin])
except KeyError:
count.append(0)
week_lst = ["7" if i == "0" else i for i in week_lst]
2021-06-30 19:50:55 +08:00
plt.plot(week_lst, count)
2021-07-30 21:21:51 +08:00
plt.title(f"{name}{plugin} 功能调用统计【为7天统计】", FontProperties=font)
2021-06-30 19:50:55 +08:00
else:
2021-07-30 21:21:51 +08:00
init_bar_graph(update_data(data), f"{name} 周功能调用统计【为7天统计】")
elif arg == "month_statistics":
2021-06-30 19:50:55 +08:00
if plugin:
day_index = day_index % 30
day_lst = []
for i in range(day_index + 1, 30):
day_lst.append(i)
for i in range(day_index + 1):
day_lst.append(i)
count = [data[str(day_lst[i])][plugin] for i in range(30)]
day_lst = [str(x + 1) for x in day_lst]
2021-07-30 21:21:51 +08:00
plt.title(f"{name}{plugin} 功能调用统计【为30天统计】", FontProperties=font)
2021-06-30 19:50:55 +08:00
plt.plot(day_lst, count)
else:
2021-07-30 21:21:51 +08:00
init_bar_graph(update_data(data), f"{name} 月功能调用统计【为30天统计】")
elif arg == "total_statistics":
init_bar_graph(data, f"{name} 功能调用统计")
2021-06-30 19:50:55 +08:00
return fig2b64(plt)
2021-07-30 21:21:51 +08:00
def init_bar_graph(data: dict, title: str, ha: str = "left", va: str = "center"):
plt.tick_params(axis="y", labelsize=7)
2021-06-30 19:50:55 +08:00
tmp_x = list(data.keys())
tmp_y = list(data.values())
x = [tmp_x[i] for i in range(len(tmp_y)) if tmp_y[i]]
y = [tmp_y[i] for i in range(len(tmp_y)) if tmp_y[i]]
plt.barh(x, y)
2021-07-30 21:21:51 +08:00
plt.title(f"{title}", FontProperties=font)
2021-06-30 19:50:55 +08:00
for y, x in zip(y, x):
plt.text(y, x, s=str(y), ha=ha, va=va, fontsize=8)
def update_data(data: dict):
tmp_dict = {}
for day in data.keys():
for plugin_name in data[day].keys():
# print(f'{day}{plugin_name} = {data[day][plugin_name]}')
if data[day][plugin_name] is not None:
if tmp_dict.get(plugin_name) is None:
tmp_dict[plugin_name] = 1
else:
tmp_dict[plugin_name] += data[day][plugin_name]
return tmp_dict