diff --git a/src/plugins/Menu/__init__.py b/src/plugins/Menu/__init__.py index 13e3c18..4af9dae 100644 --- a/src/plugins/Menu/__init__.py +++ b/src/plugins/Menu/__init__.py @@ -1,7 +1,12 @@ import base64 import traceback -from typing import Union +import re import jinja2 +import aiofiles +from nonebot.log import logger +from pathlib import Path +from typing import Union +from nonebot.matcher import Matcher from nonebot.params import CommandArg from nonebot import on_command from nonebot.adapters.onebot.v11 import Bot as V11Bot @@ -9,14 +14,8 @@ from nonebot.adapters.onebot.v11 import MessageSegment as V11MsgSeg from nonebot.adapters.onebot.v12 import Bot as V12Bot from nonebot.adapters.onebot.v12 import MessageSegment as V12MsgSeg -from nonebot.log import logger -from nonebot.matcher import Matcher -from pathlib import Path from nonebot_plugin_htmlrender import html_to_pic -import aiofiles -# import aiohttp -import re import json dir_path = Path(__file__).parent @@ -55,7 +54,7 @@ async def _(bot: Union[V11Bot, V12Bot], matcher: Matcher, arg: V11Msg = CommandA if not msg: # 参数为空,主菜单 img_bytes = await async_open_file(dir_path / "main.png") - base64_str = "base64://" + base64.b64encode(img_bytes).decode() + base64_str = f"base64://{base64.b64encode(img_bytes).decode()}" await matcher.finish(V11MsgSeg.image(base64_str)) match_result = re.match(r"^(?P.*?)$", msg) @@ -73,20 +72,17 @@ async def _(bot: Union[V11Bot, V12Bot], matcher: Matcher, arg: V11Msg = CommandA if not plugin_dict: await matcher.finish("插件序号不存在") else: - plugin_dict = {} - for key, value in plugin_list.items(): - # 模糊搜索 - if plugin_name in value["name"]: - plugin_dict[key] = value + plugin_dict = { + key: value + for key, value in plugin_list.items() + if plugin_name in value["name"] + } if not plugin_dict: await matcher.finish("插件名过于模糊或不存在") try: - if plugin_dict: - result = await get_reply(plugin_dict) - else: - result = "插件名过于模糊或不存在" - except Exception as e: + result = await get_reply(plugin_dict) if plugin_dict else "插件名过于模糊或不存在" + except Exception: logger.warning(traceback.format_exc()) await matcher.finish("出错了,请稍后再试") diff --git a/src/plugins/cave/tool.py b/src/plugins/cave/tool.py index 2c64f8a..21e119c 100644 --- a/src/plugins/cave/tool.py +++ b/src/plugins/cave/tool.py @@ -4,7 +4,7 @@ def url_to_base64(image_url): - response = requests.get(image_url) + response = requests.get(image_url,timeout=5) image_data = response.content return base64.b64encode(image_data).decode("utf-8") diff --git a/src/plugins/ddcheck/__init__.py b/src/plugins/ddcheck/__init__.py index b3183b7..25dfe33 100644 --- a/src/plugins/ddcheck/__init__.py +++ b/src/plugins/ddcheck/__init__.py @@ -49,7 +49,7 @@ async def _( try: result = await get_reply(text) - except: + except Exception: logger.warning(traceback.format_exc()) await matcher.finish("出错了,请稍后再试") @@ -61,6 +61,4 @@ async def _( elif isinstance(bot, V12Bot): resp = await bot.upload_file(type="data", name="ddcheck", data=result) file_id = resp["file_id"] - await matcher.finish(V12MsgSeg.image(file_id)) - -# \ No newline at end of file + await matcher.finish(V12MsgSeg.image(file_id)) \ No newline at end of file diff --git a/src/plugins/ncm/__init__.py b/src/plugins/ncm/__init__.py index 87190f2..53b394e 100644 --- a/src/plugins/ncm/__init__.py +++ b/src/plugins/ncm/__init__.py @@ -13,11 +13,12 @@ from nonebot.matcher import Matcher from nonebot.params import CommandArg, RegexGroup, Arg from nonebot.rule import Rule +from nonebot.plugin import PluginMetadata from .data_source import nncm, ncm_config, setting, Q, cmd # =======nonebot-plugin-help======= -__plugin_meta__ = nonebot.plugin.PluginMetadata( +__plugin_meta__ = PluginMetadata( name='网易云点歌', description='网易云无损音乐下载/点歌', usage=( @@ -41,45 +42,35 @@ # ===============Rule============= async def song_is_open(event: Union[GroupMessageEvent, PrivateMessageEvent]) -> bool: if isinstance(event, GroupMessageEvent): - info = setting.search(Q["group_id"] == event.group_id) - if info: + if info := setting.search(Q["group_id"] == event.group_id): return info[0]["song"] - else: - setting.insert({"group_id": event.group_id, "song": False, "list": False}) - return False + setting.insert({"group_id": event.group_id, "song": False, "list": False}) + return False elif isinstance(event, PrivateMessageEvent): - info = setting.search(Q["user_id"] == event.user_id) - if info: + if info := setting.search(Q["user_id"] == event.user_id): return info[0]["song"] - else: - setting.insert({"user_id": event.user_id, "song": True, "list": True}) - return True + setting.insert({"user_id": event.user_id, "song": True, "list": True}) + return True async def playlist_is_open(event: Union[GroupMessageEvent, PrivateMessageEvent]) -> bool: if isinstance(event, GroupMessageEvent): - info = setting.search(Q["group_id"] == event.group_id) - if info: + if info := setting.search(Q["group_id"] == event.group_id): return info[0]["list"] - else: - setting.insert({"group_id": event.group_id, "song": False, "list": False}) - return False + setting.insert({"group_id": event.group_id, "song": False, "list": False}) + return False elif isinstance(event, PrivateMessageEvent): - info = setting.search(Q["user_id"] == event.user_id) - if info: + if info := setting.search(Q["user_id"] == event.user_id): return info[0]["list"] - else: - setting.insert({"user_id": event.user_id, "song": True, "list": True}) - return True + setting.insert({"user_id": event.user_id, "song": True, "list": True}) + return True async def check_search() -> bool: - info = setting.search(Q["global"] == "search") - if info: + if info := setting.search(Q["global"] == "search"): return info[0]["value"] - else: - setting.insert({"global": "search", "value": True}) - return True + setting.insert({"global": "search", "value": True}) + return True async def music_set_rule(event: Union[GroupMessageEvent, PrivateMessageEvent]) -> bool: @@ -202,15 +193,12 @@ async def set_receive(bot: Bot, event: Union[GroupMessageEvent, PrivateMessageEv if len(args) == 1: mold = args[0] if isinstance(event, GroupMessageEvent): - info = setting.search(Q["group_id"] == event.group_id) - # logger.info(info) - if info: + if info := setting.search(Q["group_id"] == event.group_id): if mold in TRUE: info[0]["song"] = True info[0]["list"] = True setting.update(info[0], Q["group_id"] == event.group_id) - msg = "已开启自动下载功能" - await bot.send(event=event, message=Message(MessageSegment.text(msg))) + await bot.send(event=event, message=Message(MessageSegment.text("已开启自动下载功能"))) elif mold in FALSE: info[0]["song"] = False info[0]["list"] = False @@ -218,21 +206,17 @@ async def set_receive(bot: Bot, event: Union[GroupMessageEvent, PrivateMessageEv msg = "已关闭自动下载功能" await bot.send(event=event, message=Message(MessageSegment.text(msg))) logger.debug(f"用户<{event.sender.nickname}>执行操作成功") - else: - if mold in TRUE: - setting.insert({"group_id": event.group_id, "song": True, "list": True}) - elif mold in FALSE: - setting.insert({"group_id": event.group_id, "song": False, "list": False}) + elif mold in TRUE: + setting.insert({"group_id": event.group_id, "song": True, "list": True}) + elif mold in FALSE: + setting.insert({"group_id": event.group_id, "song": False, "list": False}) elif isinstance(event, PrivateMessageEvent): - info = setting.search(Q["user_id"] == event.user_id) - # logger.info(info) - if info: + if info := setting.search(Q["user_id"] == event.user_id): if mold in TRUE: info[0]["song"] = True info[0]["list"] = True setting.update(info[0], Q["user_id"] == event.user_id) - msg = "已开启下载功能" - await bot.send(event=event, message=Message(MessageSegment.text(msg))) + await bot.send(event=event, message=Message(MessageSegment.text("已开启下载功能"))) elif mold in FALSE: info[0]["song"] = False info[0]["list"] = False @@ -240,37 +224,31 @@ async def set_receive(bot: Bot, event: Union[GroupMessageEvent, PrivateMessageEv msg = "已关闭下载功能" await bot.send(event=event, message=Message(MessageSegment.text(msg))) logger.debug(f"用户<{event.sender.nickname}>执行操作成功") - else: - if mold in TRUE: - setting.insert({"user_id": event.user_id, "song": True, "list": True}) - elif mold in FALSE: - setting.insert({"user_id": event.user_id, "song": False, "list": False}) + elif mold in TRUE: + setting.insert({"user_id": event.user_id, "song": True, "list": True}) + elif mold in FALSE: + setting.insert({"user_id": event.user_id, "song": False, "list": False}) elif len(args) == 2 and args[0] == "search": mold = args[1] - info = setting.search(Q["global"] == "search") - if info: + if info := setting.search(Q["global"] == "search"): if mold in TRUE: info[0]["value"] = True setting.update(info[0], Q["global"] == "search") - msg = "已开启点歌功能" - await bot.send(event=event, message=Message(MessageSegment.text(msg))) + await bot.send(event=event, message=Message(MessageSegment.text("已开启点歌功能"))) elif mold in FALSE: info[0]["value"] = False setting.update(info[0], Q["global"] == "search") msg = "已关闭点歌功能" await bot.send(event=event, message=Message(MessageSegment.text(msg))) logger.debug(f"用户<{event.sender.nickname}>执行操作成功") - else: - if mold in TRUE: - setting.insert({"global": "search", "value": True}) - elif mold in FALSE: - setting.insert({"global": "search", "value": False}) + elif mold in TRUE: + setting.insert({"global": "search", "value": True}) + elif mold in FALSE: + setting.insert({"global": "search", "value": False}) elif len(args) == 3 and args[0] == "private": qq = args[1] mold = args[2] - info = setting.search(Q["user_id"] == qq) - # logger.info(info) - if info: + if info := setting.search(Q["user_id"] == qq): if mold in TRUE: info[0]["song"] = True info[0]["list"] = True @@ -284,11 +262,10 @@ async def set_receive(bot: Bot, event: Union[GroupMessageEvent, PrivateMessageEv msg = f"已关闭用户{qq}的下载功能" await bot.send(event=event, message=Message(MessageSegment.text(msg))) logger.debug(f"用户<{event.sender.nickname}>执行操作成功") - else: - if mold in TRUE: - setting.insert({"user_id": event.user_id, "song": True, "list": True}) - elif mold in FALSE: - setting.insert({"user_id": event.user_id, "song": False, "list": False}) + elif mold in TRUE: + setting.insert({"user_id": event.user_id, "song": True, "list": True}) + elif mold in FALSE: + setting.insert({"user_id": event.user_id, "song": False, "list": False}) else: msg = f"{cmd}ncm:获取命令菜单\r\n说明:网易云歌曲分享到群内后回复机器人即可下载\r\n" \ f"{cmd}ncm t:开启解析\r\n{cmd}ncm f:关闭解析\n{cmd}点歌 歌名:点歌" diff --git a/src/plugins/ncm/data_source.py b/src/plugins/ncm/data_source.py index 04b681f..2646756 100644 --- a/src/plugins/ncm/data_source.py +++ b/src/plugins/ncm/data_source.py @@ -15,13 +15,26 @@ import nonebot from nonebot.utils import run_sync -from pyncm import apis, Session, GetCurrentSession, DumpSessionAsString, LoadSessionFromString, SetCurrentSession +from pyncm import ( + apis, + Session, + GetCurrentSession, + DumpSessionAsString, + LoadSessionFromString, + SetCurrentSession, +) from pyncm.apis.cloudsearch import SONG, USER, PLAYLIST from nonebot.log import logger -from nonebot.adapters.onebot.v11 import (MessageSegment, Message, - ActionFailed, NetworkError, Bot, - GroupMessageEvent, PrivateMessageEvent) +from nonebot.adapters.onebot.v11 import ( + MessageSegment, + Message, + ActionFailed, + NetworkError, + Bot, + GroupMessageEvent, + PrivateMessageEvent, +) from .config import ncm_config from tinydb import TinyDB, Query @@ -44,7 +57,8 @@ cmd = list(nonebot.get_driver().config.command_start)[0] -class NcmLoginFailedException(Exception): pass +class NcmLoginFailedException(Exception): + pass # ============主类============= @@ -54,52 +68,60 @@ def __init__(self): self.bot = None self.event = None - def get_session(self, bot: Bot, event: Union[GroupMessageEvent, PrivateMessageEvent]): + def get_session( + self, bot: Bot, event: Union[GroupMessageEvent, PrivateMessageEvent] + ): self.bot = bot self.event = event @staticmethod def save_user(session: str): - info = ncm_user_cache.search(Q["uid"] == "user") - if info: - info[0]['session'] = session + if info := ncm_user_cache.search(Q["uid"] == "user"): + info[0]["session"] = session ncm_user_cache.update(info[0], Q["uid"] == "user") else: ncm_user_cache.insert({"uid": "user", "session": session}) @staticmethod def load_user(info): - SetCurrentSession(LoadSessionFromString(info[0]['session'])) + SetCurrentSession(LoadSessionFromString(info[0]["session"])) def login(self): try: - self.api.login.LoginViaCellphone(phone=ncm_config.ncm_phone, password=ncm_config.ncm_password) + self.api.login.LoginViaCellphone( + phone=ncm_config.ncm_phone, password=ncm_config.ncm_password + ) self.get_user_info() except Exception as e: - if str(e) == str({'code': 400, 'message': '登陆失败,请进行安全验证'}): - logger.error("缺少安全验证,请将账号留空进行二维码登录") - logger.info("自动切换为二维码登录↓") - self.get_qrcode() - else: + if str(e) != str({"code": 400, "message": "登陆失败,请进行安全验证"}): raise e + logger.error("缺少安全验证,请将账号留空进行二维码登录") + logger.info("自动切换为二维码登录↓") + self.get_qrcode() def get_user_info(self): - logger.success(f"欢迎您网易云用户:{GetCurrentSession().nickname} [{GetCurrentSession().uid}]") + logger.success( + f"欢迎您网易云用户:{GetCurrentSession().nickname} [{GetCurrentSession().uid}]" + ) self.save_user(DumpSessionAsString(GetCurrentSession())) def get_phone_login(self): phone = ncm_config.ncm_phone ctcode = int(ncm_config.ncm_ctcode) - result = self.api.login.SetSendRegisterVerifcationCodeViaCellphone(cell=phone, ctcode=ctcode) - if not result.get('code', 0) == 200: + result = self.api.login.SetSendRegisterVerifcationCodeViaCellphone( + cell=phone, ctcode=ctcode + ) + if result.get("code", 0) != 200: logger.error(result) else: - logger.success('已发送验证码,输入验证码:') + logger.success("已发送验证码,输入验证码:") while True: captcha = int(input()) - verified = self.api.login.GetRegisterVerifcationStatusViaCellphone(phone, captcha, ctcode) - if verified.get('code', 0) == 200: + verified = self.api.login.GetRegisterVerifcationStatusViaCellphone( + phone, captcha, ctcode + ) + if verified.get("code", 0) == 200: break result = self.api.login.LoginViaCellphone(phone, captcha=captcha, ctcode=ctcode) self.get_user_info() @@ -117,11 +139,11 @@ def get_qrcode(self): uuid = self.api.login.LoginQrcodeUnikey()["unikey"] url = f"https://music.163.com/login?codekey={uuid}" img = qrcode.make(url) - img.save('ncm.png') + img.save("ncm.png") logger.info("二维码已经保存在当前目录下的ncm.png,请使用手机网易云客户端扫码登录。") while True: rsp = self.api.login.LoginQrcodeCheck(uuid) # 检测扫描状态 - if rsp["code"] == 803 or rsp["code"] == 800: + if rsp["code"] in [803, 800]: st = self.api.login.GetCurrentLoginStatus() logger.debug(st) self.api.login.WriteLoginInfo(st) @@ -131,28 +153,24 @@ def get_qrcode(self): def detail(self, ids: list) -> list: songs: list = self.api.track.GetTrackDetail(song_ids=ids)["songs"] - detail = [(data["name"] + "-" + ",".join([names["name"] for names in data["ar"]])) for data in songs] - return detail + return [ + (data["name"] + "-" + ",".join([names["name"] for names in data["ar"]])) + for data in songs + ] async def music_check(self, nid): nid = int(nid) - info = music.search(Q["id"] == nid) - if info: - path = Path(info[0]["file"]) - if path.is_file(): - return info[0] - else: - return await self.download(ids=[nid], check=True) - else: + if not (info := music.search(Q["id"] == nid)): return None + path = Path(info[0]["file"]) + return info[0] if path.is_file() else await self.download(ids=[nid], check=True) async def search_song(self, keyword: str, limit: int = 1) -> int: # 搜索歌曲 - res = self.api.cloudsearch.GetSearchResult(keyword=keyword, stype=SONG, limit=limit) + res = self.api.cloudsearch.GetSearchResult( + keyword=keyword, stype=SONG, limit=limit + ) logger.debug(f"搜索歌曲{keyword},返回结果:{res}") - if "result" in res.keys(): - data = res["result"]["songs"] - else: - data = res["songs"] + data = res["result"]["songs"] if "result" in res.keys() else res["songs"] if data: return data[0]["id"] @@ -160,13 +178,17 @@ async def search_user(self, keyword: str, limit: int = 1): # 搜索用户 self.api.cloudsearch.GetSearchResult(keyword=keyword, stype=USER, limit=limit) async def search_playlist(self, keyword: str, limit: int = 1): # 搜索歌单 - self.api.cloudsearch.GetSearchResult(keyword=keyword, stype=PLAYLIST, limit=limit) + self.api.cloudsearch.GetSearchResult( + keyword=keyword, stype=PLAYLIST, limit=limit + ) def check_message(self): """检查缓存中是否存在解析 :return: """ - info = ncm_check_cache.search(Q.message_id == self.event.dict()["reply"]["message_id"]) + info = ncm_check_cache.search( + Q.message_id == self.event.dict()["reply"]["message_id"] + ) return info[0] if info else None def get_song(self, nid: Union[int, str], message_id=None): @@ -176,34 +198,39 @@ def get_song(self, nid: Union[int, str], message_id=None): :param nid: :return: """ - if message_id: - mid = message_id - else: - mid = self.event.message_id - ncm_check_cache.insert({"message_id": mid, - "type": "song", - "nid": nid, - "lid": 0, - "ids": [], - "lmsg": "", - "time": int(time.time())}) + mid = message_id or self.event.message_id + ncm_check_cache.insert( + { + "message_id": mid, + "type": "song", + "nid": nid, + "lid": 0, + "ids": [], + "lmsg": "", + "time": int(time.time()), + } + ) def get_playlist(self, lid: Union[int, str]): data = self.api.playlist.GetPlaylistInfo(lid) # logger.info(data) if data["code"] == 200: raw = data["playlist"] - tags = ",".join(raw['tags']) - songs = [i['id'] for i in raw['trackIds']] - ncm_check_cache.insert({"message_id": self.event.message_id, - "type": "playlist", - "nid": 0, - "lid": lid, - "ids": songs, - "lmsg": f"歌单:{raw['name']}\r\n创建者:{raw['creator']['nickname']}\r\n歌曲总数:{raw['trackCount']}\r\n" - f"标签:{tags}\r\n播放次数:{raw['playCount']}\r\n收藏:{raw['subscribedCount']}\r\n" - f"评论:{raw['commentCount']}\r\n分享:{raw['shareCount']}\r\nListID:{lid}", - "time": int(time.time())}) + tags = ",".join(raw["tags"]) + songs = [i["id"] for i in raw["trackIds"]] + ncm_check_cache.insert( + { + "message_id": self.event.message_id, + "type": "playlist", + "nid": 0, + "lid": lid, + "ids": songs, + "lmsg": f"歌单:{raw['name']}\r\n创建者:{raw['creator']['nickname']}\r\n歌曲总数:{raw['trackCount']}\r\n" + f"标签:{tags}\r\n播放次数:{raw['playCount']}\r\n收藏:{raw['subscribedCount']}\r\n" + f"评论:{raw['commentCount']}\r\n分享:{raw['shareCount']}\r\nListID:{lid}", + "time": int(time.time()), + } + ) async def upload_group_data_file(self, data): await self.upload_group_file(file=data["file"], name=data["filename"]) @@ -213,39 +240,67 @@ async def upload_private_data_file(self, data): async def upload_group_file(self, file, name): try: - await self.bot.upload_group_file(group_id=self.event.group_id, - file=file, name=name) + await self.bot.upload_group_file( + group_id=self.event.group_id, file=file, name=name + ) except (ActionFailed, NetworkError) as e: logger.error(e) - if isinstance(e, ActionFailed) and e.info["wording"] == "server" \ - " requires unsupported ftn upload": - await self.bot.send(event=self.event, message=Message(MessageSegment.text( - "[ERROR] 文件上传失败\r\n[原因] 机器人缺少上传文件的权限\r\n[解决办法] " - "请将机器人设置为管理员或者允许群员上传文件"))) + if ( + isinstance(e, ActionFailed) + and e.info["wording"] == "server" " requires unsupported ftn upload" + ): + await self.bot.send( + event=self.event, + message=Message( + MessageSegment.text( + "[ERROR] 文件上传失败\r\n[原因] 机器人缺少上传文件的权限\r\n[解决办法] " + "请将机器人设置为管理员或者允许群员上传文件" + ) + ), + ) elif isinstance(e, NetworkError): - await self.bot.send(event=self.event, message=Message(MessageSegment.text("[ERROR]文件上传失败\r\n[原因] " - "上传超时(一般来说还在传,建议等待五分钟)"))) + await self.bot.send( + event=self.event, + message=Message( + MessageSegment.text( + "[ERROR]文件上传失败\r\n[原因] " "上传超时(一般来说还在传,建议等待五分钟)" + ) + ), + ) async def upload_private_file(self, file, name): try: - await self.bot.upload_private_file(user_id=self.event.user_id, - file=file, name=name) + await self.bot.upload_private_file( + user_id=self.event.user_id, file=file, name=name + ) except (ActionFailed, NetworkError) as e: logger.error(e) if isinstance(e, NetworkError): - await self.bot.send(event=self.event, message=Message(MessageSegment.text( - "[ERROR] 文件上传失败\r\n[原因] 上传超时(一般来说还在传,建议等待五分钟)"))) + await self.bot.send( + event=self.event, + message=Message( + MessageSegment.text( + "[ERROR] 文件上传失败\r\n[原因] 上传超时(一般来说还在传,建议等待五分钟)" + ) + ), + ) @run_sync def get_zip(self, lid, filenames: list): - zip_file_new = f'{lid}.zip' - with zipfile.ZipFile(str(Path.cwd().joinpath("music").joinpath(zip_file_new)), 'w', zipfile.ZIP_DEFLATED) as z: + zip_file_new = f"{lid}.zip" + with zipfile.ZipFile( + str(Path.cwd().joinpath("music").joinpath(zip_file_new)), + "w", + zipfile.ZIP_DEFLATED, + ) as z: for f in filenames: z.write(str(f), f.name) return zip_file_new async def download(self, ids: list, check=False, lid=0, is_zip=False): # 下载音乐 - data: list = self.api.track.GetTrackAudio(song_ids=ids, bitrate=3200 * 1000)["data"] + data: list = self.api.track.GetTrackAudio(song_ids=ids, bitrate=3200 * 1000)[ + "data" + ] name: list = self.detail(ids) filenames = [] not_zips = [] @@ -256,25 +311,24 @@ async def download(self, ids: list, check=False, lid=0, is_zip=False): # 下载 url = data[i]["url"] nid = data[i]["id"] filename = f"{name[i]}.{data[i]['type']}" - filename = re.sub('[\/:*?"<>|]', '-', filename) + filename = re.sub('[\/:*?"<>|]', "-", filename) file = Path.cwd().joinpath("music").joinpath(filename) config = { "id": int(nid), "file": str(file), # 获取文件位置 "filename": filename, # 获取文件名 "from": "song" if len(ids) == 1 else "list", # 判断来自单曲还是歌单 - "time": datetime.now().strftime("%Y-%m-%d %H:%M:%S") # 获取时间 + "time": datetime.now().strftime("%Y-%m-%d %H:%M:%S"), # 获取时间 } filenames.append(file) not_zips.append(config) - info = music.search(Q["id"] == nid) - if info: # 数据库储存 + if info := music.search(Q["id"] == nid): music.update(config, Q["id"] == nid) else: music.insert(config) async with httpx.AsyncClient() as client: # 下载歌曲 async with client.stream("GET", url=url) as r: - async with async_open(file, 'wb') as out_file: + async with async_open(file, "wb") as out_file: async for chunk in r.aiter_bytes(): await out_file.write(chunk) logger.debug(f"Download:{filename}") @@ -284,8 +338,7 @@ async def download(self, ids: list, check=False, lid=0, is_zip=False): # 下载 nncm = Ncm() -info = ncm_user_cache.search(Q.uid == "user") -if info: +if info := ncm_user_cache.search(Q.uid == "user"): logger.info("检测到缓存,自动加载用户") nncm.load_user(info) nncm.get_user_info() diff --git a/src/plugins/nonebot_plugin_addFriend/__init__.py b/src/plugins/nonebot_plugin_addFriend/__init__.py index 8a148f2..5045694 100644 --- a/src/plugins/nonebot_plugin_addFriend/__init__.py +++ b/src/plugins/nonebot_plugin_addFriend/__init__.py @@ -6,6 +6,7 @@ # @Software: PyCharm from datetime import datetime + try: import ujson as json except ModuleNotFoundError: @@ -13,362 +14,444 @@ import re from asyncio import sleep -from os.path import dirname,exists +from os.path import dirname, exists from typing import Union -from nonebot import on_command,on_request,on_notice,require -from nonebot.adapters.onebot.v11 import Bot, MessageEvent,PrivateMessageEvent,GroupMessageEvent, MessageSegment,RequestEvent,GroupRequestEvent, FriendRequestEvent,NoticeEvent,GroupDecreaseNoticeEvent,GroupIncreaseNoticeEvent +from nonebot import on_command, on_request, on_notice, require +from nonebot.adapters.onebot.v11 import ( + Bot, + MessageEvent, + PrivateMessageEvent, + GroupMessageEvent, + MessageSegment, + RequestEvent, + GroupRequestEvent, + FriendRequestEvent, + NoticeEvent, + GroupDecreaseNoticeEvent, + GroupIncreaseNoticeEvent, +) from nonebot.message import event_preprocessor from nonebot import get_driver from nonebot.permission import SUPERUSER from nonebot.adapters.onebot.v11.permission import GROUP_ADMIN, GROUP_OWNER from nonebot.params import CommandArg from nonebot.adapters import Message -from .configUtil import config,requestorDict,basedir,numPath,configPath,requestorPath,writeData,blackLogPath -from .utils import getReferIdList,read_data,sendMsg,getExist,parseMsg,isNormalAdd,writeLog,filterFriend,parseTime +from .configUtil import ( + config, + requestorDict, + basedir, + numPath, + configPath, + requestorPath, + writeData, + blackLogPath, +) +from .utils import ( + getReferIdList, + read_data, + sendMsg, + getExist, + parseMsg, + isNormalAdd, + writeLog, + filterFriend, + parseTime, +) + # try: # scheduler = require('nonebot_plugin_apscheduler').scheduler # except: # import nonebot_plugin_apscheduler # scheduler = nonebot_plugin_apscheduler.scheduler -#初始化完毕,num文件单独初始化 +# 初始化完毕,num文件单独初始化 parseRequest = on_request(priority=1, block=True) + + # @event_preprocessor @parseRequest.handle() async def _(bot: Bot, event: RequestEvent): - num,now,old=read_data(numPath) - time=str(now) - if isinstance(event,FriendRequestEvent): - notice_msg=config["friend_msg"]["notice_msg"] - welcome_msg=config["friend_msg"]["welcome_msg"] + num, now, old = read_data(numPath) + time = str(now) + if isinstance(event, FriendRequestEvent): + notice_msg = config["friend_msg"]["notice_msg"] + welcome_msg = config["friend_msg"]["welcome_msg"] id = str(event.user_id) - autoType='friend' - agreeAutoApprove=config['agreeAutoApprove'][autoType] - addInfo=await bot.get_stranger_info(user_id=int(id),no_cache=True) - msg=id+notice_msg+event.comment+'\n时间:{}'.format(time) - elif isinstance(event,GroupRequestEvent): - if event.sub_type!='invite': + autoType = "friend" + agreeAutoApprove = config["agreeAutoApprove"][autoType] + addInfo = await bot.get_stranger_info(user_id=int(id), no_cache=True) + msg = id + notice_msg + event.comment + "\n时间:{}".format(time) + elif isinstance(event, GroupRequestEvent): + if event.sub_type != "invite": print(event.sub_type) return print(event.sub_type) - notice_msg=config["group_msg"]["notice_msg"] - welcome_msg=config["group_msg"]["welcome_msg"] + notice_msg = config["group_msg"]["notice_msg"] + welcome_msg = config["group_msg"]["welcome_msg"] id = str(event.group_id) - autoType='group' - agreeAutoApprove=config['agreeAutoApprove'][autoType] + autoType = "group" + agreeAutoApprove = config["agreeAutoApprove"][autoType] await sleep(0.5) - addInfo=await bot.get_group_info(group_id=int(id),no_cache=True) - print(autoType,addInfo,agreeAutoApprove) - msg='群号'+id+','+event.get_user_id()+notice_msg+event.comment+'\n时间:{}'.format(time) - if addInfo["member_count"]!=0: - status='\n或因群人数少,已经添加成功' - await sendMsg(bot,config['recipientList'],msg+status,0) + addInfo = await bot.get_group_info(group_id=int(id), no_cache=True) + print(autoType, addInfo, agreeAutoApprove) + msg = ( + "群号" + + id + + "," + + event.get_user_id() + + notice_msg + + event.comment + + "\n时间:{}".format(time) + ) + if addInfo["member_count"] != 0: + status = "\n或因群人数少,已经添加成功" + await sendMsg(bot, config["recipientList"], msg + status, 0) await bot.send_private_msg(user_id=event.user_id, message=welcome_msg) return else: return - agreeAutoApprove,status=isNormalAdd(config,autoType,addInfo,agreeAutoApprove) - if agreeAutoApprove==-1: + agreeAutoApprove, status = isNormalAdd(config, autoType, addInfo, agreeAutoApprove) + if agreeAutoApprove == -1: await event.reject(bot) - await sendMsg(bot,config['recipientList'],msg+status,0) #黑名单警告,转发给设定的人 - forwardId=config["blackDict"]["forward"].get(id) - if forwardId!=None and autoType=="group": - friendList=await getReferIdList(bot,'user_id') + await sendMsg(bot, config["recipientList"], msg + status, 0) # 黑名单警告,转发给设定的人 + forwardId = config["blackDict"]["forward"].get(id) + if forwardId != None and autoType == "group": + friendList = await getReferIdList(bot, "user_id") if forwardId in friendList: - await bot.send_private_msg(user_id=forwardId,message=msg+status) + await bot.send_private_msg(user_id=forwardId, message=msg + status) else: del config["blackDict"]["forward"][id] - writeLog(blackLogPath,msg+status+'\n') + writeLog(blackLogPath, msg + status + "\n") return - if not filterFriend(event.comment,autoType,config['allowAddFriednText']): #验证信息 - status='\n未通过验证消息,已拒绝' - await sendMsg(bot,config['recipientList'],msg+status,0)#不记录 + if not filterFriend(event.comment, autoType, config["allowAddFriednText"]): # 验证信息 + status = "\n未通过验证消息,已拒绝" + await sendMsg(bot, config["recipientList"], msg + status, 0) # 不记录 await event.reject(bot) return - num=parseTime(config['numControl'],num,old,now) - if agreeAutoApprove==0 or num==-1: - if num==-1: - status='\n此时增满{}人,未能再自动添加'.format(config['numControl']['maxNum']) + num = parseTime(config["numControl"], num, old, now) + if agreeAutoApprove == 0 or num == -1: + if num == -1: + status = "\n此时增满{}人,未能再自动添加".format(config["numControl"]["maxNum"]) else: - status='\n未允许自动添加' - requestorDict[autoType][id]={'flag':event.flag,'comment':event.comment,"notice_msg":notice_msg,'staus':status,'requestorId':event.user_id,'time':time} - writeData(requestorPath,requestorDict) - await sendMsg(bot,config['recipientList'],msg+status,0) + status = "\n未允许自动添加" + requestorDict[autoType][id] = { + "flag": event.flag, + "comment": event.comment, + "notice_msg": notice_msg, + "staus": status, + "requestorId": event.user_id, + "time": time, + } + writeData(requestorPath, requestorDict) + await sendMsg(bot, config["recipientList"], msg + status, 0) else: - #既自动添加又条件合适 - with open(numPath,'w',encoding='utf-8') as fp: - fp.write(str(num)+','+str(now)) + # 既自动添加又条件合适 + with open(numPath, "w", encoding="utf-8") as fp: + fp.write(str(num) + "," + str(now)) await event.approve(bot) - await sendMsg(bot,config['recipientList'],msg+status,0) - #等待腾讯服务器更新 + await sendMsg(bot, config["recipientList"], msg + status, 0) + # 等待腾讯服务器更新 await sleep(1.5) await bot.send_private_msg(user_id=event.user_id, message=welcome_msg) +againReadConfig = on_command( + "重载配置", + aliases={"更改自动同意", "更改最大加好友数量", "更改查看加返回数量", "更改加好友时间单位"}, + priority=5, + block=True, + permission=SUPERUSER, +) + -againReadConfig= on_command("重载配置",aliases={"更改自动同意","更改最大加好友数量","更改查看加返回数量","更改加好友时间单位"},priority=5,block=True,permission=SUPERUSER) @againReadConfig.handle() -async def _(bot: Bot, event: MessageEvent,args: Message = CommandArg()): +async def _(bot: Bot, event: MessageEvent, args: Message = CommandArg()): global config - with open(configPath,'r',encoding='utf-8') as fp: - config=json.loads(fp.read()) - text=event.get_plaintext().strip() - argsText=args.extract_plain_text() - commandText=getExist('',text,argsText) + with open(configPath, "r", encoding="utf-8") as fp: + config = json.loads(fp.read()) + text = event.get_plaintext().strip() + argsText = args.extract_plain_text() + commandText = getExist("", text, argsText) print(commandText) if "更改自动同意" in commandText: print(1) - text=args.extract_plain_text() - if '群聊' in argsText: - argsText=argsText.replace('群聊','').strip() - autoType='group' - elif '好友' in argsText: - argsText=argsText.replace('好友','').strip() - autoType='friend' + text = args.extract_plain_text() + if "群聊" in argsText: + argsText = argsText.replace("群聊", "").strip() + autoType = "group" + elif "好友" in argsText: + argsText = argsText.replace("好友", "").strip() + autoType = "friend" else: - autoType='all' - if argsText.isdigit() and autoType!='all': - if int(argsText)>0: - config['agreeAutoApprove'][autoType]=1 + autoType = "all" + if argsText.isdigit() and autoType != "all": + if int(argsText) > 0: + config["agreeAutoApprove"][autoType] = 1 else: - config['agreeAutoApprove'][autoType]=0 - elif autoType=='all': - setList=argsText.split() - i=0 - setKeyList=list(config['agreeAutoApprove'].keys()) + config["agreeAutoApprove"][autoType] = 0 + elif autoType == "all": + setList = argsText.split() + i = 0 + setKeyList = list(config["agreeAutoApprove"].keys()) for set in setList[:2]: if set.isdigit(): - if int(set)>0: - config['agreeAutoApprove'][setKeyList[i]]=1 + if int(set) > 0: + config["agreeAutoApprove"][setKeyList[i]] = 1 else: - config['agreeAutoApprove'][setKeyList[i]]=0 - i+=1 + config["agreeAutoApprove"][setKeyList[i]] = 0 + i += 1 else: - await againReadConfig.finish('格式') - resMsg='更改成功,为\n{}'.format(config['agreeAutoApprove']) + await againReadConfig.finish("格式") + resMsg = "更改成功,为\n{}".format(config["agreeAutoApprove"]) elif "更改最大加好友数量" in commandText: print(2) if argsText.isdigit(): - maxNum=int(argsText) - if maxNum>0: - config['numControl']['maxNum']=maxNum + maxNum = int(argsText) + if maxNum > 0: + config["numControl"]["maxNum"] = maxNum else: - config['numControl']['maxNum']=0 - resMsg='更改成功,为{}'.format(config['numControl']['maxNum']) + config["numControl"]["maxNum"] = 0 + resMsg = "更改成功,为{}".format(config["numControl"]["maxNum"]) elif "更改加好友时间单位" in commandText: - - print(argsText,1) - if '时' in argsText: - config['numControl']['unit']='h' - elif '分' in argsText: - config['numControl']['unit']='m' + print(argsText, 1) + if "时" in argsText: + config["numControl"]["unit"] = "h" + elif "分" in argsText: + config["numControl"]["unit"] = "m" else: - config['numControl']['unit']='d' - resMsg='更改成功,为{}'.format(config['numControl']['unit']) + config["numControl"]["unit"] = "d" + resMsg = "更改成功,为{}".format(config["numControl"]["unit"]) elif "更改查看加返回数量" in commandText: print(3) if argsText.isdigit(): - maxViewNum=int(argsText) - if maxViewNum>0 and maxViewNum<120: - config['maxViewNum']=maxViewNum - resMsg='更改成功,为\n{}'.format(config['maxViewNum']) + maxViewNum = int(argsText) + if maxViewNum > 0 and maxViewNum < 120: + config["maxViewNum"] = maxViewNum + resMsg = "更改成功,为\n{}".format(config["maxViewNum"]) else: print(4) - resMsg='重载成功:\n{}'.format(config) - if '重载配置' not in commandText: - writeData(configPath,config) - resMsg=await parseMsg(commandText,resMsg) + resMsg = "重载成功:\n{}".format(config) + if "重载配置" not in commandText: + writeData(configPath, config) + resMsg = await parseMsg(commandText, resMsg) await againReadConfig.finish(resMsg) -addFriend = on_command("同意加",aliases={'拒绝加','查看加'},priority=5,block=True) +addFriend = on_command("同意加", aliases={"拒绝加", "查看加"}, priority=5, block=True) + + @addFriend.handle() -async def _(bot: Bot, event: MessageEvent,args: Message = CommandArg()): - if event.get_user_id() not in config['recipientList']: - await addFriend.finish('无权限') - text=event.get_plaintext().strip() - argsText=args.extract_plain_text().strip() - commandText=getExist("",text,argsText) - if '群' in commandText: - autoType='group' +async def _(bot: Bot, event: MessageEvent, args: Message = CommandArg()): + if event.get_user_id() not in config["recipientList"]: + await addFriend.finish("无权限") + text = event.get_plaintext().strip() + argsText = args.extract_plain_text().strip() + commandText = getExist("", text, argsText) + if "群" in commandText: + autoType = "group" else: - autoType='friend' + autoType = "friend" if "同意加" in commandText: - approve=True - status='添加成功' - elif '拒绝' in commandText: - approve=False - status='拒绝成功' + approve = True + status = "添加成功" + elif "拒绝" in commandText: + approve = False + status = "拒绝成功" else: - num=argsText + num = argsText if num.isdigit(): - num=int(num) + num = int(num) else: - num=config['maxViewNum'] - requestorValueList=list(requestorDict[autoType].values())[:num] - requestorInfos=str(requestorValueList) - resMsg=await parseMsg(commandText,requestorInfos) + num = config["maxViewNum"] + requestorValueList = list(requestorDict[autoType].values())[:num] + requestorInfos = str(requestorValueList) + resMsg = await parseMsg(commandText, requestorInfos) await againReadConfig.finish(resMsg) - if argsText=='': - await addFriend.finish('格式') + if argsText == "": + await addFriend.finish("格式") # 预处理完毕,开始设置参数 - argsText=argsText.split() - QQOrGroupId=argsText[0] - if requestorDict[autoType].get(QQOrGroupId)==None: - await addFriend.finish('没有此请求') - - flag=requestorDict[autoType][QQOrGroupId]['flag'] - notice_msg=requestorDict[autoType][QQOrGroupId]['notice_msg'] - comment=requestorDict[autoType][QQOrGroupId]['comment'] - requestorId=requestorDict[autoType][QQOrGroupId]['requestorId'] - time=requestorDict[autoType][QQOrGroupId]['time'] + argsText = argsText.split() + QQOrGroupId = argsText[0] + if requestorDict[autoType].get(QQOrGroupId) == None: + await addFriend.finish("没有此请求") + + flag = requestorDict[autoType][QQOrGroupId]["flag"] + notice_msg = requestorDict[autoType][QQOrGroupId]["notice_msg"] + comment = requestorDict[autoType][QQOrGroupId]["comment"] + requestorId = requestorDict[autoType][QQOrGroupId]["requestorId"] + time = requestorDict[autoType][QQOrGroupId]["time"] # 参数设置完毕,开始处理请求 try: - if autoType=="group": - resMsg='群号{},邀请者{}'.format(QQOrGroupId,requestorId)+notice_msg+comment+'\n时间:{}\n'.format(time) - msgType='group_msg' - groupList=await getReferIdList(bot) + if autoType == "group": + resMsg = ( + "群号{},邀请者{}".format(QQOrGroupId, requestorId) + + notice_msg + + comment + + "\n时间:{}\n".format(time) + ) + msgType = "group_msg" + groupList = await getReferIdList(bot) if int(QQOrGroupId) in groupList: - status='已经添加成功,勿复添加' + status = "已经添加成功,勿复添加" else: - await bot.set_group_add_request(flag=flag,approve=approve) + await bot.set_group_add_request(flag=flag, approve=approve) else: - resMsg=QQOrGroupId+notice_msg+comment+'\n{}\n'.format(time) - msgType='friend_msg' - friendList=await getReferIdList(bot,'user_id') + resMsg = QQOrGroupId + notice_msg + comment + "\n{}\n".format(time) + msgType = "friend_msg" + friendList = await getReferIdList(bot, "user_id") if int(QQOrGroupId) in friendList: - status='已经添加成功,勿复添加' + status = "已经添加成功,勿复添加" else: - if len(argsText)>=2 and argsText[1]!='' and approve==True: - remark=argsText[1] + if len(argsText) >= 2 and argsText[1] != "" and approve == True: + remark = argsText[1] # 备注似乎无用 - await bot.set_friend_add_request(flag=flag,approve=approve,remark=remark) + await bot.set_friend_add_request( + flag=flag, approve=approve, remark=remark + ) else: - await bot.set_friend_add_request(flag=flag,approve=approve) + await bot.set_friend_add_request(flag=flag, approve=approve) except: - status='为何手动添加而后又删好友或退群又来这里同意?' + status = "为何手动添加而后又删好友或退群又来这里同意?" finally: # 请求处理完毕,开始更易数据 del requestorDict[autoType][QQOrGroupId] - writeData(requestorPath,requestorDict) - resMsg+=status + writeData(requestorPath, requestorDict) + resMsg += status # 数据更易完毕,开始用户交互,返回结果,发送欢迎 await addFriend.send(resMsg) # await bot.send_private_msg(user_id=event.user_id, message=resMsg) # await sendMsg(bot,config['recipientList'],resMsg,0) - if status=='添加成功': + if status == "添加成功": # 等待腾讯数据更新 await sleep(1.5) - welcome_msg=config[msgType]['welcome_msg'] + welcome_msg = config[msgType]["welcome_msg"] await bot.send_private_msg(user_id=requestorId, message=welcome_msg) + # @scheduler.scheduled_job('interval', hour=1, id='check_outdate', timezone="Asia/Shanghai") -delRequestorDict = on_command("清理请求表",priority=5, block=True,permission=SUPERUSER) +delRequestorDict = on_command("清理请求表", priority=5, block=True, permission=SUPERUSER) + + @delRequestorDict.handle() -async def check_outdate(bot:Bot, event: MessageEvent): - delList=[] - for requestorType in requestorDict: - if requestorType!='friend': - ReferIdList=await getReferIdList(bot,'group_id') +async def check_outdate(bot: Bot, event: MessageEvent): + delList = [] + for requestorType in requestorDict: + if requestorType != "friend": + ReferIdList = await getReferIdList(bot, "group_id") else: - ReferIdList=await getReferIdList(bot,'user_id') - requestorList=list(requestorDict[requestorType]) + ReferIdList = await getReferIdList(bot, "user_id") + requestorList = list(requestorDict[requestorType]) print(ReferIdList) for requestor in requestorList: if int(requestor) in ReferIdList: delList.append(requestor) del requestorDict[requestorType][requestor] - writeData(requestorPath,requestorDict) - msg='已清理如下:\n'+str(delList)[1:-1].replace(', ',' ') + writeData(requestorPath, requestorDict) + msg = "已清理如下:\n" + str(delList)[1:-1].replace(", ", " ") await delRequestorDict.send(msg) -reFriendReqNum = on_command("重置好友请求",block=True,priority=5,permission=SUPERUSER) +reFriendReqNum = on_command("重置好友请求", block=True, priority=5, permission=SUPERUSER) + + @reFriendReqNum.handle() async def _(bot: Bot, event: MessageEvent): - text=event.get_plaintext().strip() - max=config['numControl']['maxNum'] - num,now,old=read_data(numPath) - if parseTime(config['numControl'],num,old,now)!=-1: - await reFriendReqNum.send(message='未增满{}人,人数为{}上次添加时间{}'.format(max,num,now)) - if '为' in text: - plaintext=re.findall('[0-9]',text) - if len(plaintext)==0: - num='0' + text = event.get_plaintext().strip() + max = config["numControl"]["maxNum"] + num, now, old = read_data(numPath) + if parseTime(config["numControl"], num, old, now) != -1: + await reFriendReqNum.send(message="未增满{}人,人数为{}上次添加时间{}".format(max, num, now)) + if "为" in text: + plaintext = re.findall("[0-9]", text) + if len(plaintext) == 0: + num = "0" else: - num=plaintext[0] + num = plaintext[0] else: - num='0' - with open(numPath,'w',encoding='utf-8') as fp: - fp.write(num+','+str(now)) - await reFriendReqNum.finish('重置成功,为{}'.format(num)) + num = "0" + with open(numPath, "w", encoding="utf-8") as fp: + fp.write(num + "," + str(now)) + await reFriendReqNum.finish("重置成功,为{}".format(num)) + + +addRecipient = on_command( + "添加请求接收者", aliases={"删除请求接收者"}, block=True, priority=5, permission=SUPERUSER +) + -addRecipient = on_command("添加请求接收者",aliases={"删除请求接收者"},block=True,priority=5,permission=SUPERUSER) @addRecipient.handle() -async def _(bot: Bot, event: MessageEvent,args: Message = CommandArg()): - friend_list=await getReferIdList(bot,'user_id') +async def _(bot: Bot, event: MessageEvent, args: Message = CommandArg()): + friend_list = await getReferIdList(bot, "user_id") print(friend_list) - text=event.get_plaintext().strip() - argsText=args.extract_plain_text() - recipient=argsText - if recipient=='': - await addRecipient.send('格式') + text = event.get_plaintext().strip() + argsText = args.extract_plain_text() + recipient = argsText + if recipient == "": + await addRecipient.send("格式") if int(recipient) in friend_list: - if getExist('添加',text,argsText): - op='添加' - if recipient not in config['recipientList']: - config['recipientList'].append(recipient) + if getExist("添加", text, argsText): + op = "添加" + if recipient not in config["recipientList"]: + config["recipientList"].append(recipient) else: - op='删除' - if recipient in config['recipientList']: - config['recipientList'].remove(recipient) - writeData(configPath,config) - await addRecipient.send(op+'{}成功'.format(recipient)) + op = "删除" + if recipient in config["recipientList"]: + config["recipientList"].remove(recipient) + writeData(configPath, config) + await addRecipient.send(op + "{}成功".format(recipient)) else: - await addRecipient.finish('不是{}的好友或者格式错误'.format(config['botName'])) - + await addRecipient.finish("不是{}的好友或者格式错误".format(config["botName"])) +agreeForward = on_command("设置bot私聊转发", block=True, priority=5, permission=SUPERUSER) -agreeForward = on_command("设置bot私聊转发",block=True,priority=5,permission=SUPERUSER) @agreeForward.handle() async def _(bot: Bot, event: MessageEvent): # forwardSet=config['forwardSet'] - if config['forwardSet']==0: - config['forwardSet']=1 - msg='开启成功哦' + if config["forwardSet"] == 0: + config["forwardSet"] = 1 + msg = "开启成功哦" else: - config['forwardSet']=0 - msg='关闭成功哦' - writeData(configPath,config) + config["forwardSet"] = 0 + msg = "关闭成功哦" + writeData(configPath, config) await agreeForward.send(msg) -msgControl=[0,datetime.now(),1] + +msgControl = [0, datetime.now(), 1] + + @event_preprocessor -async def sendPrivate(bot:Bot,event: PrivateMessageEvent): - if config['recipientList']==[] or config['forwardSet']==0: +async def sendPrivate(bot: Bot, event: PrivateMessageEvent): + if config["recipientList"] == [] or config["forwardSet"] == 0: return - if msgControl[2]==0: # - if (datetime.now()-msgControl[1]).seconds>20: - msgControl[2]=1 + if msgControl[2] == 0: # + if (datetime.now() - msgControl[1]).seconds > 20: + msgControl[2] = 1 else: return - msgControl[0]+=1 - if msgControl[0]/((datetime.now()-msgControl[1]).seconds+1)>10: - msgControl[2]=0 - msgControl[1]=datetime.now() - msgControl[0]=0 - if event.get_user_id()!=config['recipientList'][0]: - plaintext=event.get_message() - await bot.send_private_msg(user_id=int(config['recipientList'][0]),message='叮~私聊消息\nqq:{}\n昵称:{}\n消息:{}'.format(event.user_id,event.sender.nickname,plaintext),auto_escape=False) + msgControl[0] += 1 + if msgControl[0] / ((datetime.now() - msgControl[1]).seconds + 1) > 10: + msgControl[2] = 0 + msgControl[1] = datetime.now() + msgControl[0] = 0 + if event.get_user_id() != config["recipientList"][0]: + plaintext = event.get_message() + await bot.send_private_msg( + user_id=int(config["recipientList"][0]), + message="叮~私聊消息\nqq:{}\n昵称:{}\n消息:{}".format( + event.user_id, event.sender.nickname, plaintext + ), + auto_escape=False, + ) +friendHelp = on_command("加好友帮助", block=True, priority=5, permission=SUPERUSER) -friendHelp=on_command("加好友帮助",block=True,priority=5,permission=SUPERUSER) @friendHelp.handle() async def _(bot: Bot, event: MessageEvent): - msg='重载配置\n更改自动同意,更改最大加好友数量,更改查看加返回数量,更改加好友时间单位\n同意加,拒绝加,查看加(群、好友)\n清理请求表\n重置好友请求\n添加请求接收者,删除请求接收者' - await friendHelp.send(msg) \ No newline at end of file + msg = "重载配置\n更改自动同意,更改最大加好友数量,更改查看加返回数量,更改加好友时间单位\n同意加,拒绝加,查看加(群、好友)\n清理请求表\n重置好友请求\n添加请求接收者,删除请求接收者" + await friendHelp.send(msg) diff --git a/src/plugins/nonebot_plugin_addFriend/num.txt b/src/plugins/nonebot_plugin_addFriend/num.txt index 0590451..381f984 100644 --- a/src/plugins/nonebot_plugin_addFriend/num.txt +++ b/src/plugins/nonebot_plugin_addFriend/num.txt @@ -1 +1 @@ -2,2023-12-31 18:26:04.481825 \ No newline at end of file +0,2024-01-07 22:49:52.680101 \ No newline at end of file diff --git a/src/plugins/nonebot_plugin_addFriend/requestor.json b/src/plugins/nonebot_plugin_addFriend/requestor.json index 997d8f1..7aa9bc8 100644 --- a/src/plugins/nonebot_plugin_addFriend/requestor.json +++ b/src/plugins/nonebot_plugin_addFriend/requestor.json @@ -1 +1 @@ -{"friend": {"3366314645": {"flag": "1690881264000000", "comment": "你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3366314645, "time": "2023-08-01 17:22:01.292336"}, "2473920360": {"flag": "1691069923000000", "comment": "6", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2473920360, "time": "2023-08-03 21:39:09.808010"}, "2019271154": {"flag": "1691071201000000", "comment": "我是纠结于我那号没了", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2019271154, "time": "2023-08-03 22:02:50.955709"}, "2316488927": {"flag": "1691301773000000", "comment": "我是日月泽", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2316488927, "time": "2023-08-06 14:03:53.330418"}, "3555156292": {"flag": "1691305313000000", "comment": "制作表情包", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3555156292, "time": "2023-08-06 15:04:41.311567"}, "3520349790": {"flag": "1691314504000000", "comment": "我是尚鱔若水", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3520349790, "time": "2023-08-06 17:35:16.476177"}, "3210204685": {"flag": "1691317615000000", "comment": "我是后退", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3210204685, "time": "2023-08-06 18:26:56.154059"}, "3026967346": {"flag": "1691320365000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3026967346, "time": "2023-08-06 19:16:20.834395"}, "3429680579": {"flag": "1691320855000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3429680579, "time": "2023-08-06 19:21:58.296967"}, "1148838702": {"flag": "1691321318000000", "comment": "我是IJN little Akagi", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1148838702, "time": "2023-08-06 19:31:32.152282"}, "3578822087": {"flag": "1703336584000000", "comment": "我是颻", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3578822087, "time": "2023-12-23 21:03:04.792050"}, "3614689217": {"flag": "1691550275000000", "comment": "我是Goo_Tal", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3614689217, "time": "2023-08-09 11:04:35.268945"}, "3166168122": {"flag": "1691584112000000", "comment": "我是懒大羊", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3166168122, "time": "2023-08-09 20:30:26.922089"}, "2303316042": {"flag": "1691585518000000", "comment": "我是命运", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2303316042, "time": "2023-08-09 20:53:06.713139"}, "3597956856": {"flag": "1691641049000000", "comment": "我是unknOwn", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3597956856, "time": "2023-08-10 12:17:29.407026"}, "57163553": {"flag": "1691662261000000", "comment": "我是朴正熙他小号", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 57163553, "time": "2023-08-10 18:11:22.851496"}, "1063064333": {"flag": "1691745281000000", "comment": "……", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1063064333, "time": "2023-08-11 17:14:54.419589"}, "1510170938": {"flag": "1691745635000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1510170938, "time": "2023-08-11 17:27:50.268334"}, "1096741477": {"flag": "1691751250000000", "comment": " ", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1096741477, "time": "2023-08-11 18:54:21.685378"}, "3378272010": {"flag": "1691824429000000", "comment": "我是真真萌新🇨🇳", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3378272010, "time": "2023-08-12 15:14:06.999870"}, "2060595483": {"flag": "1691830707000000", "comment": "我是鹿行川", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2060595483, "time": "2023-08-12 16:58:27.933504"}, "3196945875": {"flag": "1691830414000000", "comment": "宝宝同意一下叭", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3196945875, "time": "2023-08-12 16:54:14.697495"}, "3200508776": {"flag": "1691843522000000", "comment": "我是", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3200508776, "time": "2023-08-12 20:34:27.287366"}, "3249474422": {"flag": "1691845606000000", "comment": "我是。。。。", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3249474422, "time": "2023-08-12 21:07:36.083797"}, "2043711161": {"flag": "1691913745000000", "comment": "我是叶赫那拉.博月", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2043711161, "time": "2023-08-13 16:02:44.480084"}, "1206880084": {"flag": "1691992237000000", "comment": "我是河南第一深情🌷", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1206880084, "time": "2023-08-14 13:50:39.841484"}, "1870482966": {"flag": "1692010029000000", "comment": "我是我是捷克斯洛伐克", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1870482966, "time": "2023-08-14 18:47:33.502912"}, "3550477368": {"flag": "1692015061000000", "comment": "我是希望永恒", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3550477368, "time": "2023-08-14 20:30:25.882629"}, "3011768201": {"flag": "1692017015000000", "comment": "😭😭😭", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3011768201, "time": "2023-08-14 20:43:35.791538"}, "2476048489": {"flag": "1692022065000000", "comment": "咕噜噜", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2476048489, "time": "2023-08-14 22:12:30.494154"}, "3591174039": {"flag": "1692022715000000", "comment": "我是宇都宮喜久江", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3591174039, "time": "2023-08-14 22:18:35.629554"}, "1615991754": {"flag": "1692024017000000", "comment": "我是", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1615991754, "time": "2023-08-14 22:40:17.447220"}, "485159068": {"flag": "1692026223000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 485159068, "time": "2023-08-14 23:21:16.956828"}, "2729390436": {"flag": "1692026842000000", "comment": "我是列车会准点吗", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2729390436, "time": "2023-08-14 23:29:02.356859"}, "2283260036": {"flag": "1692034206000000", "comment": "我是", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2283260036, "time": "2023-08-15 01:30:35.520587"}, "3361543328": {"flag": "1692040951000000", "comment": "我是", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3361543328, "time": "2023-08-15 03:22:31.535797"}, "2706361081": {"flag": "1692093720000000", "comment": "我是TITR", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2706361081, "time": "2023-08-15 18:02:47.125011"}, "2861354784": {"flag": "1692098323000000", "comment": "我爷爷", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2861354784, "time": "2023-08-15 19:18:43.459482"}, "939829378": {"flag": "1692099727000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 939829378, "time": "2023-08-15 19:42:08.051145"}, "2726039762": {"flag": "1692154314000000", "comment": "我是Tea_CH", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2726039762, "time": "2023-08-16 10:51:55.239918"}, "3042195162": {"flag": "1692155135000000", "comment": "我是Zai𝐳𝓪Ꭵ-𝟑𝟏𝟐", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3042195162, "time": "2023-08-16 11:05:35.439158"}, "2403743131": {"flag": "1692156594000000", "comment": "交", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2403743131, "time": "2023-08-16 11:29:54.703787"}, "2174846579": {"flag": "1692157337000000", "comment": "我是", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2174846579, "time": "2023-08-16 11:42:17.559446"}, "1227797603": {"flag": "1692158880000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1227797603, "time": "2023-08-16 12:09:52.953303"}, "2558470375": {"flag": "1692160363000000", "comment": "我是Fixed Stars Cheese", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2558470375, "time": "2023-08-16 12:32:43.654425"}, "1284919514": {"flag": "1692161014000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1284919514, "time": "2023-08-16 12:44:32.476565"}, "1690859387": {"flag": "1692180442000000", "comment": "快点同意好友😡", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1690859387, "time": "2023-08-16 18:09:48.979295"}, "3430813376": {"flag": "1692197998000000", "comment": "我是月ノミゾ知ル", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3430813376, "time": "2023-08-16 23:00:52.109951"}, "3180982425": {"flag": "1692198574000000", "comment": "您好,我想让您bot来我群", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3180982425, "time": "2023-08-16 23:12:01.009572"}, "2916415982": {"flag": "1692199168000000", "comment": "是Teox.悦rpiのゲ", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2916415982, "time": "2023-08-16 23:19:34.889823"}, "751394849": {"flag": "1703399684000000", "comment": "我是Hangover", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 751394849, "time": "2023-12-24 14:34:44.396570"}, "3132334229": {"flag": "1692330468000000", "comment": "能加机器人吗", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3132334229, "time": "2023-08-18 11:53:06.118238"}, "3433640946": {"flag": "1692340503000000", "comment": "我是", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3433640946, "time": "2023-08-18 14:36:29.834936"}, "86675216": {"flag": "1692344826000000", "comment": "我是。", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 86675216, "time": "2023-08-18 15:48:22.312301"}, "298957160": {"flag": "1692352747000000", "comment": "我是WalkerTurkey", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 298957160, "time": "2023-08-18 17:59:57.293266"}, "3514801895": {"flag": "1692354970000000", "comment": "我是come爱久田泉奈", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3514801895, "time": "2023-08-18 18:38:31.987193"}, "1625573617": {"flag": "1692355654000000", "comment": "tordy", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1625573617, "time": "2023-08-18 18:49:52.167765"}, "2448116969": {"flag": "1692524272000000", "comment": "我是你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2448116969, "time": "2023-08-20 17:39:30.253937"}, "2583055615": {"flag": "1692406234000000", "comment": "我是三木谷路", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2583055615, "time": "2023-08-19 08:50:47.245774"}, "3657566538": {"flag": "1692406503000000", "comment": "我是WZC", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3657566538, "time": "2023-08-19 08:55:11.113476"}, "639495727": {"flag": "1692406555000000", "comment": "(?)", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 639495727, "time": "2023-08-19 08:58:47.975306"}, "3245855273": {"flag": "1692410536000000", "comment": "我是烨烨", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3245855273, "time": "2023-08-19 10:02:16.477952"}, "87853811": {"flag": "1692501877000000", "comment": "空白", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 87853811, "time": "2023-08-20 11:24:55.648366"}, "3356611457": {"flag": "1692518381000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3356611457, "time": "2023-08-20 16:00:19.910191"}, "39713397": {"flag": "1692523359000000", "comment": "我是黄某人", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 39713397, "time": "2023-08-20 17:22:58.960707"}, "1179087025": {"flag": "1692524975000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1179087025, "time": "2023-08-20 17:50:58.619678"}, "3305093283": {"flag": "1692547846000000", "comment": "我是⩘⩗​", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3305093283, "time": "2023-08-21 00:14:40.188470"}, "3272457094": {"flag": "1692548574000000", "comment": "我是小萌新", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3272457094, "time": "2023-08-21 00:25:04.405106"}, "1002898241": {"flag": "1692592648000000", "comment": "我是信之Z", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1002898241, "time": "2023-08-21 12:37:39.112160"}, "1693762705": {"flag": "1692604048000000", "comment": "我是ㄔ", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1693762705, "time": "2023-08-21 15:47:29.452160"}, "2311434418": {"flag": "1692609891000000", "comment": "我是(恐龙(须佐能乎))", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2311434418, "time": "2023-08-21 17:24:53.564442"}, "10043007": {"flag": "1692625014000000", "comment": "我是", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 10043007, "time": "2023-08-21 21:36:55.653765"}, "2825626653": {"flag": "1692691106000000", "comment": "我是一只胡桃(一只sixdust)", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2825626653, "time": "2023-08-22 16:05:16.684744"}, "3139453720": {"flag": "1692631162000000", "comment": "我是尘终", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3139453720, "time": "2023-08-21 23:19:23.212196"}, "1364275374": {"flag": "1692631531000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1364275374, "time": "2023-08-21 23:25:32.617722"}, "3052427173": {"flag": "1692687631000000", "comment": "你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3052427173, "time": "2023-08-22 15:01:03.221201"}, "1244758762": {"flag": "1692701782000000", "comment": "我是蒼空の雨柔子", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1244758762, "time": "2023-08-22 18:56:44.547379"}, "255615990": {"flag": "1692703422000000", "comment": "我是🐸", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 255615990, "time": "2023-08-22 19:26:32.800864"}, "2153739924": {"flag": "1692703273000000", "comment": "我是傻鸟", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2153739924, "time": "2023-08-22 19:21:14.053363"}, "203595547": {"flag": "1692727123000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 203595547, "time": "2023-08-23 01:58:59.287314"}, "3347428037": {"flag": "1692732614000000", "comment": "我是。", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3347428037, "time": "2023-08-23 03:30:14.505355"}, "1527485238": {"flag": "1692731839000000", "comment": "我是十几个个博士", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1527485238, "time": "2023-08-23 03:17:20.050266"}, "3079384033": {"flag": "1692759387000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3079384033, "time": "2023-08-23 10:57:43.881587"}, "1708199722": {"flag": "1692761485000000", "comment": "我是树叶", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1708199722, "time": "2023-08-23 11:31:39.325427"}, "3652444511": {"flag": "1692765680000000", "comment": "我是y_笙", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3652444511, "time": "2023-08-23 12:44:46.879976"}, "2992785968": {"flag": "1692794751000000", "comment": "我是玖", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2992785968, "time": "2023-08-23 20:46:31.556512"}, "495158917": {"flag": "1692855586000000", "comment": "来发包体", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 495158917, "time": "2023-08-24 13:39:54.378844"}, "2664419485": {"flag": "1692856025000000", "comment": "我是丈育", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2664419485, "time": "2023-08-24 13:47:05.850501"}, "1730474274": {"flag": "1692856526000000", "comment": "你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1730474274, "time": "2023-08-24 13:55:26.617197"}, "3629699397": {"flag": "1692861033000000", "comment": "我是zixi_ovo", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3629699397, "time": "2023-08-24 15:10:33.316581"}, "653219801": {"flag": "1692861837000000", "comment": "我是小穆鸽鸽", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 653219801, "time": "2023-08-24 15:23:58.165020"}, "3558964691": {"flag": "1692891799000000", "comment": "我是中卷", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3558964691, "time": "2023-08-24 23:44:13.718875"}, "3076849105": {"flag": "1692931896000000", "comment": "我是绯红杆菌", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3076849105, "time": "2023-08-25 10:51:45.466894"}, "2264849051": {"flag": "1692966698000000", "comment": "。", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2264849051, "time": "2023-08-25 20:31:47.001068"}, "79029686": {"flag": "1692967994000000", "comment": "FRICK YOU ALL(捧读)", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 79029686, "time": "2023-08-25 20:53:46.028652"}, "823875787": {"flag": "1693028338000000", "comment": "我是甜心小柯一枚😘", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 823875787, "time": "2023-08-26 13:39:21.175071"}, "278041054": {"flag": "1693035303000000", "comment": "我是谂", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 278041054, "time": "2023-08-26 15:38:55.337236"}, "3348912949": {"flag": "1693110911000000", "comment": "我是险恶的社会", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3348912949, "time": "2023-08-27 12:36:39.046468"}, "2682747563": {"flag": "1693112164000000", "comment": "(。・ω・。)ノ♡", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2682747563, "time": "2023-08-27 12:57:05.184135"}, "1693884596": {"flag": "1693129391000000", "comment": "我是ㅤㅤ", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1693884596, "time": "2023-08-27 17:47:34.885807"}, "2624957221": {"flag": "1693112503000000", "comment": "我是新纪元大神集合体:小昂昂", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2624957221, "time": "2023-08-27 13:02:05.648027"}, "2788748676": {"flag": "1693127888000000", "comment": "锦衣卫", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2788748676, "time": "2023-08-27 17:18:27.083047"}, "647639013": {"flag": "1693131696000000", "comment": "我是伊地知虹夏official", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 647639013, "time": "2023-08-27 18:21:37.256371"}, "246037201": {"flag": "1693131762000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 246037201, "time": "2023-08-27 18:23:10.611708"}, "3379799406": {"flag": "1693131907000000", "comment": "机器人我要邀请你进群(", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3379799406, "time": "2023-08-27 18:27:36.040196"}, "3545319560": {"flag": "1693132159000000", "comment": "我是事白勺", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3545319560, "time": "2023-08-27 18:29:48.383389"}, "3564149762": {"flag": "1693150522000000", "comment": "我是Space Turbulence", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3564149762, "time": "2023-08-27 23:36:25.032529"}, "2167551252": {"flag": "1693151656000000", "comment": "你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2167551252, "time": "2023-08-27 23:54:16.603926"}, "3297951487": {"flag": "1693408183000000", "comment": "我是奇奇", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3297951487, "time": "2023-08-30 23:12:16.560661"}, "918295890": {"flag": "1694247468000000", "comment": "你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 918295890, "time": "2023-09-09 16:19:15.727216"}, "2249497355": {"flag": "1694249345000000", "comment": "我是馒头", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2249497355, "time": "2023-09-09 16:53:39.280757"}, "3149817258": {"flag": "1694250475000000", "comment": "我是不道", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3149817258, "time": "2023-09-09 17:17:39.752899"}, "295228232": {"flag": "1694269604000000", "comment": "我是沉爱", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 295228232, "time": "2023-09-09 22:26:45.284650"}, "285391595": {"flag": "1694920501000000", "comment": "我是梦雪9277", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 285391595, "time": "2023-09-17 11:15:02.329920"}, "2802874919": {"flag": "1694921191000000", "comment": "我是泰拉麻花", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2802874919, "time": "2023-09-17 11:26:31.544107"}, "2374215392": {"flag": "1694921333000000", "comment": "我是Error", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2374215392, "time": "2023-09-17 11:28:57.461410"}, "979882792": {"flag": "1694923107000000", "comment": "你说的对 但是我要玩原神", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 979882792, "time": "2023-09-17 11:59:38.673322"}, "746299121": {"flag": "1694925992000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 746299121, "time": "2023-09-17 12:51:28.662472"}, "2708421357": {"flag": "1695533443000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2708421357, "time": "2023-09-24 13:31:17.786767"}, "2707037965": {"flag": "1695909112000000", "comment": "我是精神错乱鳝丝", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2707037965, "time": "2023-09-28 21:51:59.967501"}, "1077998037": {"flag": "1696001516000000", "comment": "👿👿快点趋势", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1077998037, "time": "2023-09-29 23:32:59.164007"}, "2033015497": {"flag": "1696003442000000", "comment": "我是唐离", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2033015497, "time": "2023-09-30 00:04:03.102971"}, "2272150468": {"flag": "1696040059000000", "comment": "椒桃", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2272150468, "time": "2023-09-30 10:18:55.393228"}, "65159832": {"flag": "1696040828000000", "comment": "233333333333333", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 65159832, "time": "2023-09-30 10:29:38.688357"}, "1798252821": {"flag": "1696041509000000", "comment": "我是真正的耗子出现在你面前", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1798252821, "time": "2023-09-30 10:40:47.853253"}, "2468655725": {"flag": "1696042830000000", "comment": "我是🤨", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2468655725, "time": "2023-09-30 11:00:30.445372"}, "3658194083": {"flag": "1696042968000000", "comment": "我是混沌杉", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3658194083, "time": "2023-09-30 11:05:11.030768"}, "2356676164": {"flag": "1696053518000000", "comment": "我是DaFuq!?Boom!", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2356676164, "time": "2023-09-30 13:59:16.797190"}, "1686512300": {"flag": "1696055570000000", "comment": "🤓", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1686512300, "time": "2023-09-30 14:32:59.407667"}, "2304026423": {"flag": "1696057068000000", "comment": "我是o", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2304026423, "time": "2023-09-30 15:00:09.034996"}, "1793984627": {"flag": "1701868260000000", "comment": "我是小瑞", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1793984627, "time": "2023-12-06 21:11:16.299343"}, "3094654088": {"flag": "1701871476000000", "comment": "请输入文本", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3094654088, "time": "2023-12-06 22:04:47.401521"}, "1346353437": {"flag": "1702113503000000", "comment": "你好,机器人", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1346353437, "time": "2023-12-09 17:24:21.050722"}, "2857449720": {"flag": "1702115271000000", "comment": "我是叶岚", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2857449720, "time": "2023-12-09 17:47:54.437775"}, "775414559": {"flag": "1702131304000000", "comment": "我是樘轲", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 775414559, "time": "2023-12-09 22:15:04.777025"}, "3204751533": {"flag": "1702136723000000", "comment": "想用机器人...", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3204751533, "time": "2023-12-09 23:46:04.561900"}, "2706676077": {"flag": "1702225047000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2706676077, "time": "2023-12-11 00:26:11.815658"}, "1745036066": {"flag": "1702644467000000", "comment": "我是试波·ASUKA·兰格雷", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1745036066, "time": "2023-12-15 20:48:32.155579"}, "3340599188": {"flag": "1703394515000000", "comment": "我是🍉", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3340599188, "time": "2023-12-24 13:08:52.070680"}, "2740376813": {"flag": "1702732445000000", "comment": "我是", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2740376813, "time": "2023-12-16 21:14:05.415374"}, "385611263": {"flag": "1702732767000000", "comment": "我是燕小衫", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 385611263, "time": "2023-12-16 21:19:28.263373"}, "1516657588": {"flag": "1702734704000000", "comment": "我是平等的hate每一个人", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1516657588, "time": "2023-12-16 21:51:44.125088"}, "318590080": {"flag": "1702737318000000", "comment": "唉朋友,说一下事", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 318590080, "time": "2023-12-16 22:35:25.106482"}, "3632458544": {"flag": "1702802216000000", "comment": "我是柠缘.", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3632458544, "time": "2023-12-17 16:38:57.988762"}, "3356136957": {"flag": "1702802651000000", "comment": "我是阳帆", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3356136957, "time": "2023-12-17 16:46:44.029674"}, "1265237107": {"flag": "1702873257000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1265237107, "time": "2023-12-18 12:21:42.287113"}, "563778584": {"flag": "1702829312000000", "comment": "😃", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 563778584, "time": "2023-12-18 00:08:42.550461"}, "2779398323": {"flag": "1702875222000000", "comment": "我是blueberry", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2779398323, "time": "2023-12-18 12:53:46.751195"}, "1083623274": {"flag": "1703417498000000", "comment": "我是", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1083623274, "time": "2023-12-24 19:31:38.586064"}, "58273493": {"flag": "1703067631000000", "comment": "我是人", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 58273493, "time": "2023-12-20 18:27:17.898896"}, "732586915": {"flag": "1703072343000000", "comment": "阿米诺斯", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 732586915, "time": "2023-12-20 19:42:28.829430"}, "1600389931": {"flag": "1703161754000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1600389931, "time": "2023-12-21 20:29:24.380148"}, "3649686977": {"flag": "1703162412000000", "comment": "我是静夜思", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3649686977, "time": "2023-12-21 20:40:23.297562"}, "1120365460": {"flag": "1703166071000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1120365460, "time": "2023-12-21 21:42:32.859878"}, "914863020": {"flag": "1703243424000000", "comment": "我是花落若相惜", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 914863020, "time": "2023-12-22 19:10:25.120137"}, "195086908": {"flag": "1703333069000000", "comment": "我是紷天", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 195086908, "time": "2023-12-23 20:05:23.617686"}, "2824854195": {"flag": "1703333918000000", "comment": "我是燕归何方.", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2824854195, "time": "2023-12-23 20:18:38.781062"}, "239182965": {"flag": "1703334984000000", "comment": "墨竹怎么了", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 239182965, "time": "2023-12-23 20:36:25.078192"}, "2010471935": {"flag": "1703336633000000", "comment": "我是陨落/星空", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2010471935, "time": "2023-12-23 21:03:53.857623"}, "3237046589": {"flag": "1703336895000000", "comment": "我是猹", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3237046589, "time": "2023-12-23 21:08:15.862382"}, "3444179231": {"flag": "1703336955000000", "comment": "我是镜流厨", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3444179231, "time": "2023-12-23 21:09:15.235817"}, "2108275198": {"flag": "1703337689000000", "comment": "我是予あなた", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2108275198, "time": "2023-12-23 21:21:29.933039"}, "1761239011": {"flag": "1703338064000000", "comment": "我为什么要介绍", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1761239011, "time": "2023-12-23 21:27:50.312187"}, "64296511": {"flag": "1703339248000000", "comment": "你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 64296511, "time": "2023-12-23 21:47:36.384717"}, "177589838": {"flag": "1703339424000000", "comment": "我是الأوهام لا حدود لها", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 177589838, "time": "2023-12-23 21:52:19.433830"}, "1450625289": {"flag": "1703349754000000", "comment": "我是江枫渔火.", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1450625289, "time": "2023-12-24 00:46:37.704191"}, "3393147410": {"flag": "1703394889000000", "comment": "我是好吃的叉烧饭", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3393147410, "time": "2023-12-24 13:14:49.642929"}, "2665719042": {"flag": "1703396188000000", "comment": "我是🍪", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2665719042, "time": "2023-12-24 13:36:28.920982"}, "3656261329": {"flag": "1703400034000000", "comment": "我是杨骐鸣", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3656261329, "time": "2023-12-24 14:40:35.202027"}, "279215883": {"flag": "1703410937000000", "comment": "我是CRH380AM", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 279215883, "time": "2023-12-24 17:42:26.265392"}, "213084906": {"flag": "1703420909000000", "comment": "我是 你愣爹", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 213084906, "time": "2023-12-24 20:28:44.519274"}, "2452547647": {"flag": "1703423199000000", "comment": "对美元", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2452547647, "time": "2023-12-24 21:13:33.152003"}, "1481034179": {"flag": "1703988270000000", "comment": "我是banana", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1481034179, "time": "2023-12-31 10:04:56.666795"}, "408760785": {"flag": "1703988473000000", "comment": "你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 408760785, "time": "2023-12-31 10:08:30.493599"}, "3100129374": {"flag": "1704008559000000", "comment": "。", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3100129374, "time": "2023-12-31 15:42:44.948807"}, "744266167": {"flag": "1704007338000000", "comment": "我是sky_Hollow", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 744266167, "time": "2023-12-31 15:22:38.738257"}, "506838923": {"flag": "1704008664000000", "comment": "我是我是小翼的狗", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 506838923, "time": "2023-12-31 15:44:33.616257"}, "3170455924": {"flag": "1704009984000000", "comment": "我是。。。。。。", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3170455924, "time": "2023-12-31 16:07:16.265870"}, "2372361622": {"flag": "1704010239000000", "comment": "wu?", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2372361622, "time": "2023-12-31 16:10:51.769863"}}, "group": {"826305786": {"flag": "1689901715806933", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1022716728, "time": "2023-07-21 09:08:35.985138"}, "758034077": {"flag": "1689907502963573", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1022716728, "time": "2023-07-21 10:45:03.143161"}, "736789086": {"flag": "1691994440606781", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2579695952, "time": "2023-08-14 14:27:20.753425"}, "873373238": {"flag": "1690246420904746", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1022716728, "time": "2023-07-25 08:53:41.070639"}, "1142570642": {"flag": "1702118333150675", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3556835928, "time": "2023-12-09 18:38:53.296305"}, "695774136": {"flag": "1690555265158003", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3592882748, "time": "2023-07-28 22:41:05.482669"}, "364432393": {"flag": "1690421701217152", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2893258271, "time": "2023-07-27 09:35:01.408045"}, "818961543": {"flag": "1692900084523239", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3024316045, "time": "2023-08-25 02:01:24.680566"}, "904451082": {"flag": "1690594099094302", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3024316045, "time": "2023-07-29 09:28:19.384875"}, "811507067": {"flag": "1691115876368001", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2739366186, "time": "2023-08-04 10:24:36.541507"}, "597241846": {"flag": "1690786750298717", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2024485305, "time": "2023-07-31 14:59:10.528007"}, "902382780": {"flag": "1690795891493296", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2893258271, "time": "2023-07-31 17:31:33.009690"}, "747966872": {"flag": "1690936210591651", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3494696571, "time": "2023-08-02 08:30:10.770147"}, "748298062": {"flag": "1690943628872630", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2107341878, "time": "2023-08-02 10:33:49.103809"}, "742513523": {"flag": "1690947819951184", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2604677898, "time": "2023-08-02 11:43:40.165948"}, "145362782": {"flag": "1691075331519447", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2107341878, "time": "2023-08-03 23:08:51.663317"}, "951964612": {"flag": "1691110876843825", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2116614691, "time": "2023-08-04 09:01:17.003620"}, "636960095": {"flag": "1693302037200128", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 629528440, "time": "2023-08-29 17:40:37.409433"}, "822983460": {"flag": "1691111052391962", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 629528440, "time": "2023-08-04 09:04:12.533080"}, "679846235": {"flag": "1691122578752439", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1829439753, "time": "2023-08-04 12:16:18.902948"}, "921044380": {"flag": "1691157124585317", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2664214326, "time": "2023-08-04 21:52:05.547582"}, "390156532": {"flag": "1691559790328217", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 724565079, "time": "2023-08-09 13:43:10.821299"}, "294435613": {"flag": "1691241827781326", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 724565079, "time": "2023-08-05 21:23:47.934721"}, "431413682": {"flag": "1691308818224961", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 326422306, "time": "2023-08-06 16:00:18.404968"}, "365337314": {"flag": "1691309256671933", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2316488927, "time": "2023-08-06 16:07:36.802379"}, "832671733": {"flag": "1691310089039183", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1811617967, "time": "2023-08-06 16:21:29.193180"}, "1079511437": {"flag": "1691311146175865", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3145329074, "time": "2023-08-06 16:39:06.360636"}, "274539869": {"flag": "1691312691398070", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1829439753, "time": "2023-08-06 17:04:51.557514"}, "720739927": {"flag": "1691321125888730", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3026967346, "time": "2023-08-06 19:25:26.039017"}, "1051309450": {"flag": "1691314783937437", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3520349790, "time": "2023-08-06 17:39:44.089833"}, "810894886": {"flag": "1691320941908061", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1829439753, "time": "2023-08-06 19:22:22.110469"}, "892881650": {"flag": "1691337169022375", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3024316045, "time": "2023-08-06 23:52:49.224854"}, "364741240": {"flag": "1691367164679394", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1148838702, "time": "2023-08-07 08:12:44.893168"}, "343509051": {"flag": "1691378027875914", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1447494750, "time": "2023-08-07 11:13:48.059221"}, "607744931": {"flag": "1691404371434549", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2316488927, "time": "2023-08-07 18:32:51.579902"}, "485354046": {"flag": "1703913685586006", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2608516940, "time": "2023-12-30 13:21:25.709997"}, "763936515": {"flag": "1691504126481193", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3024316045, "time": "2023-08-08 22:15:26.736592"}, "787509528": {"flag": "1691507087611632", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2459358157, "time": "2023-08-08 23:04:48.088008"}, "932298934": {"flag": "1691586848935080", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1811617967, "time": "2023-08-10 10:46:54.543857"}, "470634224": {"flag": "1691543864515705", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 352933274, "time": "2023-08-09 09:17:44.843690"}, "904730027": {"flag": "1691547856503686", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2422024548, "time": "2023-08-09 10:24:16.696793"}, "316257255": {"flag": "1691579685287648", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3162408017, "time": "2023-08-09 19:14:45.421489"}, "622785234": {"flag": "1691583920602534", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1829439753, "time": "2023-08-10 08:04:17.653578"}, "702759281": {"flag": "1691632940210489", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3011344989, "time": "2023-08-10 10:02:20.363574"}, "273358901": {"flag": "1692322996192367", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3573567122, "time": "2023-08-18 09:43:16.744236"}, "140460663": {"flag": "1691642780836092", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2739366186, "time": "2023-08-10 12:46:23.225000"}, "791931854": {"flag": "1691644313965424", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1523226651, "time": "2023-08-10 13:11:57.466710"}, "490872332": {"flag": "1691656966416898", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2120962356, "time": "2023-08-10 16:42:47.584212"}, "436882121": {"flag": "1691662305201799", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 57163553, "time": "2023-08-10 18:11:45.419343"}, "859129725": {"flag": "1691670500093497", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 341694824, "time": "2023-08-10 20:28:20.302630"}, "823784615": {"flag": "1691670797542197", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3597956856, "time": "2023-08-10 20:33:18.954266"}, "744673883": {"flag": "1691676781532724", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2459358157, "time": "2023-08-10 22:13:02.904682"}, "942336692": {"flag": "1691681256454500", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3466494002, "time": "2023-08-10 23:27:36.570176"}, "897778064": {"flag": "1691772897336325", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3528622213, "time": "2023-08-12 00:54:58.824320"}, "975619532": {"flag": "1691720598164584", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1811617967, "time": "2023-08-11 10:23:18.346765"}, "775992816": {"flag": "1692029008168408", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3441696478, "time": "2023-08-15 00:03:28.355820"}, "152666722": {"flag": "1692884649703525", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2316488927, "time": "2023-08-24 21:44:29.773659"}, "523677949": {"flag": "1691752764464964", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2422024548, "time": "2023-08-11 19:19:24.638318"}, "906671123": {"flag": "1691754294335972", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3162408017, "time": "2023-08-11 19:44:54.466436"}, "624129547": {"flag": "1691768232791303", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 762256556, "time": "2023-08-12 15:42:18.817576"}, "903784002": {"flag": "1691818156966030", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2316488927, "time": "2023-08-12 13:29:17.997898"}, "877294907": {"flag": "1691824421539695", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 198498270, "time": "2023-08-12 15:13:41.781872"}, "303639015": {"flag": "1691826138521350", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 198498270, "time": "2023-08-12 15:57:59.444688"}, "929917083": {"flag": "1691922629382953", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3162408017, "time": "2023-08-13 18:30:31.427458"}, "815414253": {"flag": "1691901557823629", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1523226651, "time": "2023-08-13 12:39:17.993832"}, "174708796": {"flag": "1691907298810498", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1131454997, "time": "2023-08-13 14:14:58.979737"}, "340074013": {"flag": "1691911773025821", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2422024548, "time": "2023-08-13 15:29:33.192679"}, "62129413": {"flag": "1691913763462029", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2043711161, "time": "2023-08-13 16:02:43.596649"}, "133182074": {"flag": "1691937149196261", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2722064402, "time": "2023-08-13 22:32:29.380131"}, "640482091": {"flag": "1691937172891728", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3110365206, "time": "2023-08-13 22:32:53.068072"}, "467304622": {"flag": "1691980486462261", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1811617967, "time": "2023-08-14 10:34:46.606154"}, "236637993": {"flag": "1691983335434715", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 85521620, "time": "2023-08-14 11:22:15.765949"}, "608384975": {"flag": "1691985049187958", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2815143212, "time": "2023-08-14 11:50:49.362939"}, "592894542": {"flag": "1691985736075573", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2815143212, "time": "2023-08-14 12:02:16.981527"}, "697318797": {"flag": "1692005777603428", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1842306465, "time": "2023-08-14 17:36:17.762101"}, "110226500": {"flag": "1692011514329161", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2907054075, "time": "2023-08-14 19:11:55.759567"}, "767796428": {"flag": "1692020938752347", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2189929027, "time": "2023-08-14 21:48:58.980394"}, "752718265": {"flag": "1692022348787964", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 198498270, "time": "2023-08-14 22:12:28.983248"}, "329897640": {"flag": "1692598593932381", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1179087025, "time": "2023-08-21 14:16:34.043898"}, "200730545": {"flag": "1692067199370990", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3314096478, "time": "2023-08-15 10:39:59.576224"}, "892181985": {"flag": "1692085362264536", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3361543328, "time": "2023-08-15 15:42:42.772634"}, "689158426": {"flag": "1692089284430467", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2771411271, "time": "2023-08-15 16:48:04.595197"}, "345054313": {"flag": "1692092951122152", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1782275114, "time": "2023-08-15 17:49:11.331617"}, "856710821": {"flag": "1692151691003275", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2120404579, "time": "2023-08-16 10:08:11.143859"}, "867652526": {"flag": "1692154182567922", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1850238974, "time": "2023-08-16 10:49:42.761888"}, "897437702": {"flag": "1692332183407636", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1850238974, "time": "2023-08-18 12:16:23.541703"}, "808115274": {"flag": "1692155178175143", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3042195162, "time": "2023-08-16 11:06:18.337728"}, "720507697": {"flag": "1692157378491300", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2174846579, "time": "2023-08-16 11:42:58.726873"}, "816677415": {"flag": "1703519283053049", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1227797603, "time": "2023-12-25 23:48:03.233445"}, "745531182": {"flag": "1692342245992908", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 744904607, "time": "2023-08-18 15:04:06.160472"}, "704183425": {"flag": "1702145572941690", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3457979899, "time": "2023-12-10 02:12:53.127309"}, "631227516": {"flag": "1693147404032666", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2140275643, "time": "2023-08-27 22:43:24.172797"}, "908439534": {"flag": "1692203507541688", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3180982425, "time": "2023-08-17 00:31:47.852552"}, "1170270063": {"flag": "1692522599103789", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3195881538, "time": "2023-08-20 17:10:01.836419"}, "654905145": {"flag": "1692237573014368", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1782275114, "time": "2023-08-17 09:59:33.203272"}, "562295307": {"flag": "1692240210970175", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3430813376, "time": "2023-08-17 10:43:31.137357"}, "654995098": {"flag": "1692324083812002", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3202297223, "time": "2023-08-18 10:01:23.938577"}, "757128718": {"flag": "1692348920382320", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1811617967, "time": "2023-08-18 16:55:20.633944"}, "751164947": {"flag": "1692349917517620", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 198498270, "time": "2023-08-18 17:11:57.660796"}, "901027604": {"flag": "1702891849463471", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 298957160, "time": "2023-12-18 17:30:50.242686"}, "771514066": {"flag": "1692350453346492", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2793057967, "time": "2023-08-18 17:20:54.534543"}, "375609874": {"flag": "1692352035990688", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3569997044, "time": "2023-08-18 17:47:16.650715"}, "874010698": {"flag": "1692364646073904", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1784676002, "time": "2023-08-18 21:17:51.019427"}, "542062546": {"flag": "1692353203119231", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1784676002, "time": "2023-08-18 18:06:54.789096"}, "817283751": {"flag": "1692361056498912", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2593506216, "time": "2023-08-18 20:17:39.105955"}, "633947123": {"flag": "1692377021825352", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3281758814, "time": "2023-08-19 00:43:41.958379"}, "485538685": {"flag": "1692403718334383", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2593506216, "time": "2023-08-19 08:08:38.426638"}, "539816987": {"flag": "1692403825827602", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2188223078, "time": "2023-08-19 08:10:26.172906"}, "893180454": {"flag": "1692404542944940", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2142861386, "time": "2023-08-19 08:22:23.146901"}, "728693139": {"flag": "1692515184021757", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1790006022, "time": "2023-08-20 15:06:24.283544"}, "790867106": {"flag": "1692517217728428", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2188223078, "time": "2023-08-20 15:40:48.004229"}, "496567228": {"flag": "1692520447151634", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1625573617, "time": "2023-08-20 16:34:07.356820"}, "691895322": {"flag": "1693214478131764", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3340016430, "time": "2023-08-28 17:21:18.525486"}, "876386806": {"flag": "1692784278045022", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2422024548, "time": "2023-08-23 17:51:18.290534"}, "851875818": {"flag": "1692775995574014", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1693762705, "time": "2023-08-23 15:33:15.883957"}, "721489870": {"flag": "1692616688110273", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 255615990, "time": "2023-08-21 19:18:08.242831"}, "490225354": {"flag": "1692851607447327", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3085866680, "time": "2023-08-24 12:33:27.831746"}, "708780164": {"flag": "1692623583860829", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3085866680, "time": "2023-08-21 21:13:04.039231"}, "808331158": {"flag": "1692623778365062", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3085866680, "time": "2023-08-21 21:16:18.536664"}, "192041683": {"flag": "1692715733846422", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 10043007, "time": "2023-08-22 22:48:54.340771"}, "881926135": {"flag": "1692665133035969", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3389824957, "time": "2023-08-22 08:45:33.217223"}, "891534557": {"flag": "1692677883047591", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3070343264, "time": "2023-08-22 12:18:03.196461"}, "928752417": {"flag": "1692684943911434", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2060595483, "time": "2023-08-22 14:15:44.046036"}, "598100173": {"flag": "1692699683396303", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2981861584, "time": "2023-08-22 18:21:23.642881"}, "954192104": {"flag": "1693207853223235", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3085866680, "time": "2023-08-28 15:30:53.453028"}, "781876203": {"flag": "1692702749111978", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3598834918, "time": "2023-08-22 19:12:29.598027"}, "737162691": {"flag": "1692709005588052", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1244758762, "time": "2023-08-22 20:56:48.965228"}, "307677715": {"flag": "1692741958811677", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2825626653, "time": "2023-08-23 06:05:59.014167"}, "780620228": {"flag": "1692759463370169", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2825626653, "time": "2023-08-23 10:57:43.582990"}, "546285256": {"flag": "1692851218345806", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3347428037, "time": "2023-08-24 12:26:58.542669"}, "717225218": {"flag": "1692759553505314", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2825626653, "time": "2023-08-23 10:59:13.718009"}, "721407720": {"flag": "1692759557138025", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3079384033, "time": "2023-08-23 10:59:17.344516"}, "625552449": {"flag": "1692767513715431", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3245855273, "time": "2023-08-23 13:11:53.920729"}, "818372421": {"flag": "1692781683609328", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3310464736, "time": "2023-08-23 17:08:04.238991"}, "683925443": {"flag": "1692797120545920", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3489378713, "time": "2023-08-23 21:25:20.685100"}, "642883229": {"flag": "1692797169803484", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3489378713, "time": "2023-08-23 21:26:09.962305"}, "869867288": {"flag": "1694920442736492", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3575415934, "time": "2023-09-17 11:14:02.910797"}, "667868495": {"flag": "1692806362583242", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3079384033, "time": "2023-08-23 23:59:22.943115"}, "791979405": {"flag": "1692809364838028", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2825626653, "time": "2023-08-24 00:49:24.976883"}, "785910201": {"flag": "1692837681541837", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 167549589, "time": "2023-08-24 08:41:21.734676"}, "427894861": {"flag": "1692851311912011", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3347428037, "time": "2023-08-24 12:28:32.378294"}, "313334973": {"flag": "1692858256140109", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2287589216, "time": "2023-08-24 14:24:16.647369"}, "893879669": {"flag": "1692863142427261", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1915034631, "time": "2023-08-24 15:45:42.656339"}, "329792024": {"flag": "1692925759767437", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3166125294, "time": "2023-08-25 09:09:19.985016"}, "542567887": {"flag": "1692962138864051", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1096904661, "time": "2023-08-25 19:15:39.058202"}, "827219517": {"flag": "1694874741837266", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2745414403, "time": "2023-09-16 22:32:22.239936"}, "548643130": {"flag": "1693015856523689", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1018363485, "time": "2023-08-26 10:10:56.832236"}, "558777298": {"flag": "1693027819870812", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2172649319, "time": "2023-08-26 13:30:20.006600"}, "638598168": {"flag": "1693028384494401", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 823875787, "time": "2023-08-26 13:39:44.847620"}, "680741661": {"flag": "1693051244218523", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2145889305, "time": "2023-08-26 20:00:47.505777"}, "606723784": {"flag": "1693068767413942", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3083397916, "time": "2023-08-27 00:52:47.620797"}, "621692319": {"flag": "1693106462347471", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3193722980, "time": "2023-08-27 11:21:02.704219"}, "702469282": {"flag": "1701654245559584", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1693884596, "time": "2023-12-04 09:44:05.734396"}, "244756078": {"flag": "1693143831152060", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 227575593, "time": "2023-08-27 21:43:51.622678"}, "860141935": {"flag": "1693224236711923", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 647129071, "time": "2023-08-28 20:03:56.843997"}, "590260771": {"flag": "1693231020976593", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2682747563, "time": "2023-08-28 21:57:06.923673"}, "772351957": {"flag": "1693394448373104", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3080794378, "time": "2023-08-30 19:21:19.231536"}, "188362658": {"flag": "1701700494342288", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2608516940, "time": "2023-12-04 22:34:54.499171"}, "901199024": {"flag": "1694187616128227", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2608516940, "time": "2023-09-08 23:40:16.277334"}, "743142654": {"flag": "1694357837864135", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 248063738, "time": "2023-09-10 22:57:18.083037"}, "921905840": {"flag": "1694199451176267", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3080794378, "time": "2023-09-09 02:57:31.283994"}, "528656225": {"flag": "1694217233661980", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 639495727, "time": "2023-09-09 07:53:53.826741"}, "712289728": {"flag": "1694234263042095", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 227575593, "time": "2023-09-09 12:39:12.771810"}, "137464082": {"flag": "1694234277618789", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 227575593, "time": "2023-09-09 12:39:24.844100"}, "857087507": {"flag": "1696064565037308", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3079384033, "time": "2023-09-30 17:02:45.194164"}, "924793292": {"flag": "1694358898311869", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3528761953, "time": "2023-09-10 23:14:58.519638"}, "128528260": {"flag": "1694430709473873", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2108886360, "time": "2023-09-11 19:11:49.612526"}, "627389556": {"flag": "1703239367108093", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 239182965, "time": "2023-12-22 18:02:47.332623"}, "1170321520": {"flag": "1694527706195687", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 918295890, "time": "2023-09-12 22:08:26.701604"}, "343887241": {"flag": "1694529397792194", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2818016446, "time": "2023-09-12 22:36:38.121646"}, "1142946695": {"flag": "1703347449191735", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3444179231, "time": "2023-12-24 00:04:09.349491"}, "774661360": {"flag": "1694829851600602", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2208682590, "time": "2023-09-16 10:04:12.143507"}, "300969482": {"flag": "1694838159233017", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2738404324, "time": "2023-09-16 12:22:39.593799"}, "768907308": {"flag": "1694847969829131", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 823875787, "time": "2023-09-16 15:06:10.041855"}, "884974945": {"flag": "1694850499688440", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3444179231, "time": "2023-09-16 15:48:19.902500"}, "895348873": {"flag": "1694858071419695", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2276002878, "time": "2023-09-16 17:54:31.639022"}, "908403543": {"flag": "1694870218395873", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3110449989, "time": "2023-09-16 21:16:58.973073"}, "768742148": {"flag": "1694906615732016", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3488143135, "time": "2023-09-17 07:23:35.919408"}, "345928233": {"flag": "1694920576637343", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 285391595, "time": "2023-09-17 11:16:17.022459"}, "618526479": {"flag": "1694923234875982", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 979882792, "time": "2023-09-17 12:00:35.054496"}, "866491414": {"flag": "1694928870676763", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3085866680, "time": "2023-09-17 13:34:30.852684"}, "767424319": {"flag": "1694932540107802", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3556835928, "time": "2023-09-17 14:35:40.313920"}, "1022715553": {"flag": "1694937012574177", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2089781097, "time": "2023-09-17 15:50:12.833010"}, "927441966": {"flag": "1695393596173926", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2843234417, "time": "2023-09-22 22:39:56.423844"}, "509509150": {"flag": "1694967086125843", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2825626653, "time": "2023-09-18 00:11:26.279320"}, "705815854": {"flag": "1695262527509754", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 472568351, "time": "2023-09-21 10:15:27.671493"}, "750142789": {"flag": "1695390401813050", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 767210091, "time": "2023-09-22 21:46:42.075447"}, "724255136": {"flag": "1695626824969559", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2330053791, "time": "2023-09-25 15:27:05.147642"}, "461248292": {"flag": "1695615827789716", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 918295890, "time": "2023-09-25 12:23:47.924175"}, "627643186": {"flag": "1695826305589241", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 918295890, "time": "2023-09-27 22:51:45.767799"}, "868750846": {"flag": "1695908551353137", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3166891167, "time": "2023-09-28 21:42:31.854698"}, "835408658": {"flag": "1695908838820583", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2406186089, "time": "2023-09-28 21:47:19.393455"}, "524887734": {"flag": "1695909077097780", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 923526525, "time": "2023-09-28 21:51:17.292840"}, "931594464": {"flag": "1695914427819135", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 639495727, "time": "2023-09-28 23:20:28.018516"}, "140905897": {"flag": "1695996195580841", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1690615348, "time": "2023-09-29 22:03:15.740437"}, "878358410": {"flag": "1696131473656749", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2413943352, "time": "2023-10-01 11:37:53.843642"}, "885787986": {"flag": "1696073913513639", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3166891167, "time": "2023-09-30 19:40:32.142069"}, "913367553": {"flag": "1696121851372211", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1798252821, "time": "2023-10-01 08:57:31.527247"}, "371464963": {"flag": "1696126838530891", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1356709503, "time": "2023-10-01 10:21:02.236222"}, "784599681": {"flag": "1696131572872818", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2413943352, "time": "2023-10-01 11:39:33.232096"}, "855347292": {"flag": "1696136597019851", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3350932589, "time": "2023-10-01 13:03:17.398839"}, "790683560": {"flag": "1701616946625356", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2824854195, "time": "2023-12-03 23:22:26.785534"}, "905516559": {"flag": "1701622977142492", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2276002878, "time": "2023-12-04 01:02:57.303122"}, "935788080": {"flag": "1701699628107565", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3322412138, "time": "2023-12-04 22:20:28.270966"}, "864553221": {"flag": "1701773140050658", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1958135885, "time": "2023-12-05 18:45:40.213942"}, "143241462": {"flag": "1701781889496987", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3636018016, "time": "2023-12-05 21:11:29.659987"}, "286060237": {"flag": "1701825011015667", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2276002878, "time": "2023-12-06 09:10:11.223445"}, "929458535": {"flag": "1701831381668002", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1508707313, "time": "2023-12-06 10:56:21.800209"}, "935630064": {"flag": "1701866169687777", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2438296324, "time": "2023-12-06 20:36:09.950230"}, "764502814": {"flag": "1702013903628256", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 918295890, "time": "2023-12-08 13:38:23.791594"}, "1030826471": {"flag": "1702034156726204", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3444179231, "time": "2023-12-08 19:15:56.889745"}, "912987461": {"flag": "1702042251813967", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1639390020, "time": "2023-12-08 21:30:51.998916"}, "476554233": {"flag": "1702102326265081", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1131183961, "time": "2023-12-09 14:12:06.404794"}, "972164135": {"flag": "1702109007537770", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 384165250, "time": "2023-12-09 16:03:27.693072"}, "783348227": {"flag": "1702109684694426", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2590661859, "time": "2023-12-09 16:14:44.880415"}, "749295107": {"flag": "1702114280689138", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3111244174, "time": "2023-12-09 17:31:20.857521"}, "778466805": {"flag": "1702123134123717", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3639930091, "time": "2023-12-09 19:58:54.439356"}, "733324164": {"flag": "1702219751620275", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 372818898, "time": "2023-12-10 22:49:12.122853"}, "941820173": {"flag": "1702137045073836", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3204751533, "time": "2023-12-09 23:50:45.279089"}, "738792048": {"flag": "1702177627428557", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 730571926, "time": "2023-12-10 11:07:07.592569"}, "322595003": {"flag": "1702189319897914", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1639390020, "time": "2023-12-10 14:22:00.079246"}, "849325988": {"flag": "1702211907405276", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2608516940, "time": "2023-12-10 20:38:27.585865"}, "746734771": {"flag": "1702272034276729", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 177534913, "time": "2023-12-11 13:20:34.416914"}, "906770184": {"flag": "1703081581205620", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2429153011, "time": "2023-12-20 22:13:01.369511"}, "790858527": {"flag": "1703435803745271", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3045245078, "time": "2023-12-25 00:36:43.898340"}, "753534612": {"flag": "1702347376546838", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3136026042, "time": "2023-12-12 10:16:16.706290"}, "700368180": {"flag": "1702361363841569", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3110439775, "time": "2023-12-12 14:09:24.023319"}, "758943011": {"flag": "1702392657862808", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3381569892, "time": "2023-12-12 22:50:58.172581"}, "864610037": {"flag": "1702393485458638", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1090839884, "time": "2023-12-12 23:04:45.628183"}, "753227042": {"flag": "1702730208214240", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 470808812, "time": "2023-12-16 20:36:48.418488"}, "868718986": {"flag": "1702730243614127", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 470808812, "time": "2023-12-16 20:37:23.776862"}, "512574452": {"flag": "1702730640001365", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2489314246, "time": "2023-12-16 20:44:00.196461"}, "905874431": {"flag": "1702813269845504", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2749638363, "time": "2023-12-17 19:41:10.097629"}, "290052192": {"flag": "1702826584243513", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2515409005, "time": "2023-12-17 23:23:04.422838"}, "779212300": {"flag": "1703513619622644", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2388871922, "time": "2023-12-25 22:13:39.833061"}, "737776934": {"flag": "1702909111592871", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2388871922, "time": "2023-12-18 22:18:31.782203"}, "933622954": {"flag": "1703333975359172", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2824854195, "time": "2023-12-23 20:19:35.493990"}, "928445434": {"flag": "1703237753646553", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1083623274, "time": "2023-12-22 17:35:54.083689"}, "744526003": {"flag": "1703085510363448", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 318590080, "time": "2023-12-20 23:18:30.664775"}, "874247091": {"flag": "1703220765613829", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 744266167, "time": "2023-12-22 12:52:54.691573"}, "346415085": {"flag": "1703250928328482", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3328036975, "time": "2023-12-22 21:15:28.506719"}, "611985038": {"flag": "1703299135199173", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3111244174, "time": "2023-12-23 10:38:55.363383"}, "733839011": {"flag": "1703304185142797", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3638361566, "time": "2023-12-23 12:03:05.396709"}, "754102171": {"flag": "1703305772325421", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3349427217, "time": "2023-12-23 12:29:32.580128"}, "439897623": {"flag": "1703305837939425", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3349427217, "time": "2023-12-23 12:30:38.161892"}, "214323192": {"flag": "1703952900474518", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2181717284, "time": "2023-12-31 00:15:01.014049"}, "943152011": {"flag": "1703320304957915", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3349427217, "time": "2023-12-23 16:31:45.155696"}, "763127660": {"flag": "1703324537733919", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2120962356, "time": "2023-12-23 17:42:17.943246"}, "770813535": {"flag": "1703334473021742", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1990248284, "time": "2023-12-23 20:27:53.196000"}, "825857143": {"flag": "1703335753887858", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 239182965, "time": "2023-12-23 20:49:14.084122"}, "482664406": {"flag": "1703338259646045", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2544028137, "time": "2023-12-23 21:30:59.795742"}, "829590531": {"flag": "1703352603286786", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1450625289, "time": "2023-12-24 01:30:03.463269"}, "707575627": {"flag": "1703399913275335", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 751394849, "time": "2023-12-24 14:38:33.474792"}, "869898352": {"flag": "1703410637160691", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3474269605, "time": "2023-12-24 17:37:17.318571"}, "732248619": {"flag": "1703512529541114", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 239182965, "time": "2023-12-25 21:55:29.768840"}, "627090292": {"flag": "1703559831208496", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2119397703, "time": "2023-12-26 11:03:51.359338"}, "692782189": {"flag": "1703991569139218", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2105285926, "time": "2023-12-31 10:59:29.287785"}, "934180647": {"flag": "1703998454840629", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1130326579, "time": "2023-12-31 12:54:15.416350"}, "397083749": {"flag": "1704007184519576", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1767017544, "time": "2023-12-31 15:19:44.682843"}}} \ No newline at end of file +{"friend": {"3520349790": {"flag": "1691314504000000", "comment": "我是尚鱔若水", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3520349790, "time": "2023-08-06 17:35:16.476177"}, "3166168122": {"flag": "1691584112000000", "comment": "我是懒大羊", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3166168122, "time": "2023-08-09 20:30:26.922089"}, "2303316042": {"flag": "1691585518000000", "comment": "我是命运", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2303316042, "time": "2023-08-09 20:53:06.713139"}, "1510170938": {"flag": "1691745635000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1510170938, "time": "2023-08-11 17:27:50.268334"}, "1096741477": {"flag": "1691751250000000", "comment": " ", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1096741477, "time": "2023-08-11 18:54:21.685378"}, "2060595483": {"flag": "1691830707000000", "comment": "我是鹿行川", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2060595483, "time": "2023-08-12 16:58:27.933504"}, "3249474422": {"flag": "1691845606000000", "comment": "我是。。。。", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3249474422, "time": "2023-08-12 21:07:36.083797"}, "1206880084": {"flag": "1691992237000000", "comment": "我是河南第一深情🌷", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1206880084, "time": "2023-08-14 13:50:39.841484"}, "1615991754": {"flag": "1692024017000000", "comment": "我是", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1615991754, "time": "2023-08-14 22:40:17.447220"}, "485159068": {"flag": "1692026223000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 485159068, "time": "2023-08-14 23:21:16.956828"}, "2729390436": {"flag": "1692026842000000", "comment": "我是列车会准点吗", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2729390436, "time": "2023-08-14 23:29:02.356859"}, "39713397": {"flag": "1692523359000000", "comment": "我是黄某人", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 39713397, "time": "2023-08-20 17:22:58.960707"}, "1179087025": {"flag": "1692524975000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1179087025, "time": "2023-08-20 17:50:58.619678"}, "3272457094": {"flag": "1692548574000000", "comment": "我是小萌新", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3272457094, "time": "2023-08-21 00:25:04.405106"}, "2311434418": {"flag": "1692609891000000", "comment": "我是(恐龙(须佐能乎))", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2311434418, "time": "2023-08-21 17:24:53.564442"}, "1364275374": {"flag": "1692631531000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1364275374, "time": "2023-08-21 23:25:32.617722"}, "3052427173": {"flag": "1692687631000000", "comment": "你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3052427173, "time": "2023-08-22 15:01:03.221201"}, "255615990": {"flag": "1692703422000000", "comment": "我是🐸", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 255615990, "time": "2023-08-22 19:26:32.800864"}, "2153739924": {"flag": "1692703273000000", "comment": "我是傻鸟", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2153739924, "time": "2023-08-22 19:21:14.053363"}, "1708199722": {"flag": "1692761485000000", "comment": "我是树叶", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1708199722, "time": "2023-08-23 11:31:39.325427"}, "3652444511": {"flag": "1692765680000000", "comment": "我是y_笙", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3652444511, "time": "2023-08-23 12:44:46.879976"}, "1730474274": {"flag": "1692856526000000", "comment": "你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1730474274, "time": "2023-08-24 13:55:26.617197"}, "3629699397": {"flag": "1692861033000000", "comment": "我是zixi_ovo", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3629699397, "time": "2023-08-24 15:10:33.316581"}, "278041054": {"flag": "1693035303000000", "comment": "我是谂", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 278041054, "time": "2023-08-26 15:38:55.337236"}, "2682747563": {"flag": "1693112164000000", "comment": "(。・ω・。)ノ♡", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2682747563, "time": "2023-08-27 12:57:05.184135"}, "1693884596": {"flag": "1693129391000000", "comment": "我是ㅤㅤ", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1693884596, "time": "2023-08-27 17:47:34.885807"}, "2624957221": {"flag": "1693112503000000", "comment": "我是新纪元大神集合体:小昂昂", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2624957221, "time": "2023-08-27 13:02:05.648027"}, "246037201": {"flag": "1693131762000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 246037201, "time": "2023-08-27 18:23:10.611708"}, "3379799406": {"flag": "1693131907000000", "comment": "机器人我要邀请你进群(", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3379799406, "time": "2023-08-27 18:27:36.040196"}, "3545319560": {"flag": "1693132159000000", "comment": "我是事白勺", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3545319560, "time": "2023-08-27 18:29:48.383389"}, "2802874919": {"flag": "1694921191000000", "comment": "我是泰拉麻花", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2802874919, "time": "2023-09-17 11:26:31.544107"}, "2374215392": {"flag": "1694921333000000", "comment": "我是Error", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2374215392, "time": "2023-09-17 11:28:57.461410"}, "979882792": {"flag": "1694923107000000", "comment": "你说的对 但是我要玩原神", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 979882792, "time": "2023-09-17 11:59:38.673322"}, "746299121": {"flag": "1694925992000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 746299121, "time": "2023-09-17 12:51:28.662472"}, "1798252821": {"flag": "1696041509000000", "comment": "我是真正的耗子出现在你面前", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1798252821, "time": "2023-09-30 10:40:47.853253"}, "2468655725": {"flag": "1696042830000000", "comment": "我是🤨", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2468655725, "time": "2023-09-30 11:00:30.445372"}, "1686512300": {"flag": "1696055570000000", "comment": "🤓", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1686512300, "time": "2023-09-30 14:32:59.407667"}, "2304026423": {"flag": "1696057068000000", "comment": "我是o", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2304026423, "time": "2023-09-30 15:00:09.034996"}, "1793984627": {"flag": "1701868260000000", "comment": "我是小瑞", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1793984627, "time": "2023-12-06 21:11:16.299343"}, "3094654088": {"flag": "1701871476000000", "comment": "请输入文本", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3094654088, "time": "2023-12-06 22:04:47.401521"}, "2706676077": {"flag": "1702225047000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2706676077, "time": "2023-12-11 00:26:11.815658"}, "563778584": {"flag": "1702829312000000", "comment": "😃", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 563778584, "time": "2023-12-18 00:08:42.550461"}, "58273493": {"flag": "1703067631000000", "comment": "我是人", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 58273493, "time": "2023-12-20 18:27:17.898896"}, "3649686977": {"flag": "1703162412000000", "comment": "我是静夜思", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3649686977, "time": "2023-12-21 20:40:23.297562"}, "1120365460": {"flag": "1703166071000000", "comment": "", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1120365460, "time": "2023-12-21 21:42:32.859878"}, "1761239011": {"flag": "1703338064000000", "comment": "我为什么要介绍", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1761239011, "time": "2023-12-23 21:27:50.312187"}, "64296511": {"flag": "1703339248000000", "comment": "你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 64296511, "time": "2023-12-23 21:47:36.384717"}, "2665719042": {"flag": "1703396188000000", "comment": "我是🍪", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2665719042, "time": "2023-12-24 13:36:28.920982"}, "3656261329": {"flag": "1703400034000000", "comment": "我是杨骐鸣", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3656261329, "time": "2023-12-24 14:40:35.202027"}, "1481034179": {"flag": "1703988270000000", "comment": "我是banana", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1481034179, "time": "2023-12-31 10:04:56.666795"}, "408760785": {"flag": "1703988473000000", "comment": "你好", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 408760785, "time": "2023-12-31 10:08:30.493599"}, "3100129374": {"flag": "1704008559000000", "comment": "。", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3100129374, "time": "2023-12-31 15:42:44.948807"}, "506838923": {"flag": "1704008664000000", "comment": "我是我是小翼的狗", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 506838923, "time": "2023-12-31 15:44:33.616257"}, "3170455924": {"flag": "1704009984000000", "comment": "我是。。。。。。", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3170455924, "time": "2023-12-31 16:07:16.265870"}, "2372361622": {"flag": "1704010239000000", "comment": "wu?", "notice_msg": "请求添加好友,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2372361622, "time": "2023-12-31 16:10:51.769863"}}, "group": {"826305786": {"flag": "1689901715806933", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1022716728, "time": "2023-07-21 09:08:35.985138"}, "758034077": {"flag": "1689907502963573", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1022716728, "time": "2023-07-21 10:45:03.143161"}, "873373238": {"flag": "1690246420904746", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1022716728, "time": "2023-07-25 08:53:41.070639"}, "818961543": {"flag": "1692900084523239", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3024316045, "time": "2023-08-25 02:01:24.680566"}, "904451082": {"flag": "1690594099094302", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3024316045, "time": "2023-07-29 09:28:19.384875"}, "597241846": {"flag": "1690786750298717", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2024485305, "time": "2023-07-31 14:59:10.528007"}, "747966872": {"flag": "1690936210591651", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3494696571, "time": "2023-08-02 08:30:10.770147"}, "748298062": {"flag": "1690943628872630", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2107341878, "time": "2023-08-02 10:33:49.103809"}, "636960095": {"flag": "1693302037200128", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 629528440, "time": "2023-08-29 17:40:37.409433"}, "294435613": {"flag": "1691241827781326", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 724565079, "time": "2023-08-05 21:23:47.934721"}, "365337314": {"flag": "1691309256671933", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2316488927, "time": "2023-08-06 16:07:36.802379"}, "832671733": {"flag": "1691310089039183", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1811617967, "time": "2023-08-06 16:21:29.193180"}, "892881650": {"flag": "1691337169022375", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3024316045, "time": "2023-08-06 23:52:49.224854"}, "364741240": {"flag": "1691367164679394", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1148838702, "time": "2023-08-07 08:12:44.893168"}, "343509051": {"flag": "1691378027875914", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1447494750, "time": "2023-08-07 11:13:48.059221"}, "763936515": {"flag": "1691504126481193", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3024316045, "time": "2023-08-08 22:15:26.736592"}, "787509528": {"flag": "1691507087611632", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2459358157, "time": "2023-08-08 23:04:48.088008"}, "932298934": {"flag": "1691586848935080", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1811617967, "time": "2023-08-10 10:46:54.543857"}, "702759281": {"flag": "1691632940210489", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3011344989, "time": "2023-08-10 10:02:20.363574"}, "140460663": {"flag": "1691642780836092", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2739366186, "time": "2023-08-10 12:46:23.225000"}, "791931854": {"flag": "1691644313965424", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1523226651, "time": "2023-08-10 13:11:57.466710"}, "490872332": {"flag": "1691656966416898", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2120962356, "time": "2023-08-10 16:42:47.584212"}, "436882121": {"flag": "1691662305201799", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 57163553, "time": "2023-08-10 18:11:45.419343"}, "823784615": {"flag": "1691670797542197", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3597956856, "time": "2023-08-10 20:33:18.954266"}, "744673883": {"flag": "1691676781532724", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2459358157, "time": "2023-08-10 22:13:02.904682"}, "942336692": {"flag": "1691681256454500", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3466494002, "time": "2023-08-10 23:27:36.570176"}, "897778064": {"flag": "1691772897336325", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3528622213, "time": "2023-08-12 00:54:58.824320"}, "975619532": {"flag": "1691720598164584", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1811617967, "time": "2023-08-11 10:23:18.346765"}, "775992816": {"flag": "1692029008168408", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3441696478, "time": "2023-08-15 00:03:28.355820"}, "152666722": {"flag": "1692884649703525", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2316488927, "time": "2023-08-24 21:44:29.773659"}, "523677949": {"flag": "1691752764464964", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2422024548, "time": "2023-08-11 19:19:24.638318"}, "624129547": {"flag": "1691768232791303", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 762256556, "time": "2023-08-12 15:42:18.817576"}, "903784002": {"flag": "1691818156966030", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2316488927, "time": "2023-08-12 13:29:17.997898"}, "877294907": {"flag": "1691824421539695", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 198498270, "time": "2023-08-12 15:13:41.781872"}, "303639015": {"flag": "1691826138521350", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 198498270, "time": "2023-08-12 15:57:59.444688"}, "815414253": {"flag": "1691901557823629", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1523226651, "time": "2023-08-13 12:39:17.993832"}, "174708796": {"flag": "1691907298810498", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1131454997, "time": "2023-08-13 14:14:58.979737"}, "340074013": {"flag": "1691911773025821", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2422024548, "time": "2023-08-13 15:29:33.192679"}, "62129413": {"flag": "1691913763462029", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2043711161, "time": "2023-08-13 16:02:43.596649"}, "133182074": {"flag": "1691937149196261", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2722064402, "time": "2023-08-13 22:32:29.380131"}, "640482091": {"flag": "1691937172891728", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3110365206, "time": "2023-08-13 22:32:53.068072"}, "467304622": {"flag": "1691980486462261", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1811617967, "time": "2023-08-14 10:34:46.606154"}, "608384975": {"flag": "1691985049187958", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2815143212, "time": "2023-08-14 11:50:49.362939"}, "592894542": {"flag": "1691985736075573", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2815143212, "time": "2023-08-14 12:02:16.981527"}, "110226500": {"flag": "1692011514329161", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2907054075, "time": "2023-08-14 19:11:55.759567"}, "767796428": {"flag": "1692020938752347", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2189929027, "time": "2023-08-14 21:48:58.980394"}, "752718265": {"flag": "1692022348787964", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 198498270, "time": "2023-08-14 22:12:28.983248"}, "329897640": {"flag": "1692598593932381", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1179087025, "time": "2023-08-21 14:16:34.043898"}, "689158426": {"flag": "1692089284430467", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2771411271, "time": "2023-08-15 16:48:04.595197"}, "345054313": {"flag": "1692092951122152", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1782275114, "time": "2023-08-15 17:49:11.331617"}, "856710821": {"flag": "1692151691003275", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2120404579, "time": "2023-08-16 10:08:11.143859"}, "867652526": {"flag": "1692154182567922", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1850238974, "time": "2023-08-16 10:49:42.761888"}, "897437702": {"flag": "1692332183407636", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1850238974, "time": "2023-08-18 12:16:23.541703"}, "808115274": {"flag": "1692155178175143", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3042195162, "time": "2023-08-16 11:06:18.337728"}, "720507697": {"flag": "1692157378491300", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2174846579, "time": "2023-08-16 11:42:58.726873"}, "745531182": {"flag": "1692342245992908", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 744904607, "time": "2023-08-18 15:04:06.160472"}, "631227516": {"flag": "1693147404032666", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2140275643, "time": "2023-08-27 22:43:24.172797"}, "908439534": {"flag": "1692203507541688", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3180982425, "time": "2023-08-17 00:31:47.852552"}, "1170270063": {"flag": "1692522599103789", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3195881538, "time": "2023-08-20 17:10:01.836419"}, "562295307": {"flag": "1692240210970175", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3430813376, "time": "2023-08-17 10:43:31.137357"}, "654995098": {"flag": "1692324083812002", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3202297223, "time": "2023-08-18 10:01:23.938577"}, "757128718": {"flag": "1692348920382320", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1811617967, "time": "2023-08-18 16:55:20.633944"}, "751164947": {"flag": "1692349917517620", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 198498270, "time": "2023-08-18 17:11:57.660796"}, "771514066": {"flag": "1692350453346492", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2793057967, "time": "2023-08-18 17:20:54.534543"}, "375609874": {"flag": "1692352035990688", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3569997044, "time": "2023-08-18 17:47:16.650715"}, "633947123": {"flag": "1692377021825352", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3281758814, "time": "2023-08-19 00:43:41.958379"}, "485538685": {"flag": "1692403718334383", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2593506216, "time": "2023-08-19 08:08:38.426638"}, "893180454": {"flag": "1692404542944940", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2142861386, "time": "2023-08-19 08:22:23.146901"}, "728693139": {"flag": "1692515184021757", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1790006022, "time": "2023-08-20 15:06:24.283544"}, "790867106": {"flag": "1692517217728428", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2188223078, "time": "2023-08-20 15:40:48.004229"}, "496567228": {"flag": "1692520447151634", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1625573617, "time": "2023-08-20 16:34:07.356820"}, "691895322": {"flag": "1693214478131764", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3340016430, "time": "2023-08-28 17:21:18.525486"}, "876386806": {"flag": "1692784278045022", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2422024548, "time": "2023-08-23 17:51:18.290534"}, "851875818": {"flag": "1692775995574014", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1693762705, "time": "2023-08-23 15:33:15.883957"}, "721489870": {"flag": "1692616688110273", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 255615990, "time": "2023-08-21 19:18:08.242831"}, "490225354": {"flag": "1692851607447327", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3085866680, "time": "2023-08-24 12:33:27.831746"}, "708780164": {"flag": "1692623583860829", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3085866680, "time": "2023-08-21 21:13:04.039231"}, "192041683": {"flag": "1692715733846422", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 10043007, "time": "2023-08-22 22:48:54.340771"}, "881926135": {"flag": "1692665133035969", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3389824957, "time": "2023-08-22 08:45:33.217223"}, "891534557": {"flag": "1692677883047591", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3070343264, "time": "2023-08-22 12:18:03.196461"}, "928752417": {"flag": "1692684943911434", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2060595483, "time": "2023-08-22 14:15:44.046036"}, "954192104": {"flag": "1693207853223235", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3085866680, "time": "2023-08-28 15:30:53.453028"}, "781876203": {"flag": "1692702749111978", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3598834918, "time": "2023-08-22 19:12:29.598027"}, "307677715": {"flag": "1692741958811677", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2825626653, "time": "2023-08-23 06:05:59.014167"}, "780620228": {"flag": "1692759463370169", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2825626653, "time": "2023-08-23 10:57:43.582990"}, "546285256": {"flag": "1692851218345806", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3347428037, "time": "2023-08-24 12:26:58.542669"}, "717225218": {"flag": "1692759553505314", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2825626653, "time": "2023-08-23 10:59:13.718009"}, "721407720": {"flag": "1692759557138025", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3079384033, "time": "2023-08-23 10:59:17.344516"}, "818372421": {"flag": "1692781683609328", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3310464736, "time": "2023-08-23 17:08:04.238991"}, "683925443": {"flag": "1692797120545920", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3489378713, "time": "2023-08-23 21:25:20.685100"}, "642883229": {"flag": "1692797169803484", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3489378713, "time": "2023-08-23 21:26:09.962305"}, "869867288": {"flag": "1694920442736492", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3575415934, "time": "2023-09-17 11:14:02.910797"}, "667868495": {"flag": "1692806362583242", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3079384033, "time": "2023-08-23 23:59:22.943115"}, "791979405": {"flag": "1692809364838028", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2825626653, "time": "2023-08-24 00:49:24.976883"}, "427894861": {"flag": "1692851311912011", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3347428037, "time": "2023-08-24 12:28:32.378294"}, "313334973": {"flag": "1692858256140109", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2287589216, "time": "2023-08-24 14:24:16.647369"}, "893879669": {"flag": "1692863142427261", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1915034631, "time": "2023-08-24 15:45:42.656339"}, "329792024": {"flag": "1692925759767437", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3166125294, "time": "2023-08-25 09:09:19.985016"}, "638598168": {"flag": "1693028384494401", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 823875787, "time": "2023-08-26 13:39:44.847620"}, "680741661": {"flag": "1693051244218523", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2145889305, "time": "2023-08-26 20:00:47.505777"}, "606723784": {"flag": "1693068767413942", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3083397916, "time": "2023-08-27 00:52:47.620797"}, "621692319": {"flag": "1693106462347471", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3193722980, "time": "2023-08-27 11:21:02.704219"}, "244756078": {"flag": "1693143831152060", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 227575593, "time": "2023-08-27 21:43:51.622678"}, "860141935": {"flag": "1693224236711923", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 647129071, "time": "2023-08-28 20:03:56.843997"}, "772351957": {"flag": "1693394448373104", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3080794378, "time": "2023-08-30 19:21:19.231536"}, "188362658": {"flag": "1701700494342288", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2608516940, "time": "2023-12-04 22:34:54.499171"}, "901199024": {"flag": "1694187616128227", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2608516940, "time": "2023-09-08 23:40:16.277334"}, "743142654": {"flag": "1694357837864135", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 248063738, "time": "2023-09-10 22:57:18.083037"}, "921905840": {"flag": "1694199451176267", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3080794378, "time": "2023-09-09 02:57:31.283994"}, "528656225": {"flag": "1694217233661980", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 639495727, "time": "2023-09-09 07:53:53.826741"}, "137464082": {"flag": "1694234277618789", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 227575593, "time": "2023-09-09 12:39:24.844100"}, "857087507": {"flag": "1696064565037308", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3079384033, "time": "2023-09-30 17:02:45.194164"}, "924793292": {"flag": "1694358898311869", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3528761953, "time": "2023-09-10 23:14:58.519638"}, "128528260": {"flag": "1694430709473873", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2108886360, "time": "2023-09-11 19:11:49.612526"}, "1170321520": {"flag": "1694527706195687", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 918295890, "time": "2023-09-12 22:08:26.701604"}, "343887241": {"flag": "1694529397792194", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2818016446, "time": "2023-09-12 22:36:38.121646"}, "774661360": {"flag": "1694829851600602", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2208682590, "time": "2023-09-16 10:04:12.143507"}, "300969482": {"flag": "1694838159233017", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2738404324, "time": "2023-09-16 12:22:39.593799"}, "768907308": {"flag": "1694847969829131", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 823875787, "time": "2023-09-16 15:06:10.041855"}, "884974945": {"flag": "1694850499688440", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3444179231, "time": "2023-09-16 15:48:19.902500"}, "895348873": {"flag": "1694858071419695", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2276002878, "time": "2023-09-16 17:54:31.639022"}, "908403543": {"flag": "1694870218395873", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3110449989, "time": "2023-09-16 21:16:58.973073"}, "768742148": {"flag": "1694906615732016", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3488143135, "time": "2023-09-17 07:23:35.919408"}, "345928233": {"flag": "1694920576637343", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 285391595, "time": "2023-09-17 11:16:17.022459"}, "618526479": {"flag": "1694923234875982", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 979882792, "time": "2023-09-17 12:00:35.054496"}, "866491414": {"flag": "1694928870676763", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3085866680, "time": "2023-09-17 13:34:30.852684"}, "767424319": {"flag": "1694932540107802", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3556835928, "time": "2023-09-17 14:35:40.313920"}, "1022715553": {"flag": "1694937012574177", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2089781097, "time": "2023-09-17 15:50:12.833010"}, "927441966": {"flag": "1695393596173926", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2843234417, "time": "2023-09-22 22:39:56.423844"}, "509509150": {"flag": "1694967086125843", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2825626653, "time": "2023-09-18 00:11:26.279320"}, "705815854": {"flag": "1695262527509754", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 472568351, "time": "2023-09-21 10:15:27.671493"}, "750142789": {"flag": "1695390401813050", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 767210091, "time": "2023-09-22 21:46:42.075447"}, "724255136": {"flag": "1695626824969559", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2330053791, "time": "2023-09-25 15:27:05.147642"}, "627643186": {"flag": "1695826305589241", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 918295890, "time": "2023-09-27 22:51:45.767799"}, "868750846": {"flag": "1695908551353137", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3166891167, "time": "2023-09-28 21:42:31.854698"}, "835408658": {"flag": "1695908838820583", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2406186089, "time": "2023-09-28 21:47:19.393455"}, "524887734": {"flag": "1695909077097780", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 923526525, "time": "2023-09-28 21:51:17.292840"}, "140905897": {"flag": "1695996195580841", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1690615348, "time": "2023-09-29 22:03:15.740437"}, "878358410": {"flag": "1696131473656749", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2413943352, "time": "2023-10-01 11:37:53.843642"}, "885787986": {"flag": "1696073913513639", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3166891167, "time": "2023-09-30 19:40:32.142069"}, "913367553": {"flag": "1696121851372211", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1798252821, "time": "2023-10-01 08:57:31.527247"}, "371464963": {"flag": "1696126838530891", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1356709503, "time": "2023-10-01 10:21:02.236222"}, "784599681": {"flag": "1696131572872818", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2413943352, "time": "2023-10-01 11:39:33.232096"}, "905516559": {"flag": "1701622977142492", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2276002878, "time": "2023-12-04 01:02:57.303122"}, "935788080": {"flag": "1701699628107565", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3322412138, "time": "2023-12-04 22:20:28.270966"}, "864553221": {"flag": "1701773140050658", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1958135885, "time": "2023-12-05 18:45:40.213942"}, "929458535": {"flag": "1701831381668002", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1508707313, "time": "2023-12-06 10:56:21.800209"}, "935630064": {"flag": "1701866169687777", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2438296324, "time": "2023-12-06 20:36:09.950230"}, "764502814": {"flag": "1702013903628256", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 918295890, "time": "2023-12-08 13:38:23.791594"}, "1030826471": {"flag": "1702034156726204", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3444179231, "time": "2023-12-08 19:15:56.889745"}, "476554233": {"flag": "1702102326265081", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1131183961, "time": "2023-12-09 14:12:06.404794"}, "749295107": {"flag": "1702114280689138", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 3111244174, "time": "2023-12-09 17:31:20.857521"}, "733324164": {"flag": "1702219751620275", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 372818898, "time": "2023-12-10 22:49:12.122853"}, "738792048": {"flag": "1702177627428557", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 730571926, "time": "2023-12-10 11:07:07.592569"}, "322595003": {"flag": "1702189319897914", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 1639390020, "time": "2023-12-10 14:22:00.079246"}, "790858527": {"flag": "1704640009640374", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3045245078, "time": "2024-01-07 23:06:49.787916"}, "737776934": {"flag": "1702909111592871", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2388871922, "time": "2023-12-18 22:18:31.782203"}, "346415085": {"flag": "1703250928328482", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3328036975, "time": "2023-12-22 21:15:28.506719"}, "611985038": {"flag": "1703299135199173", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3111244174, "time": "2023-12-23 10:38:55.363383"}, "733839011": {"flag": "1703304185142797", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3638361566, "time": "2023-12-23 12:03:05.396709"}, "754102171": {"flag": "1703305772325421", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3349427217, "time": "2023-12-23 12:29:32.580128"}, "439897623": {"flag": "1703305837939425", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3349427217, "time": "2023-12-23 12:30:38.161892"}, "214323192": {"flag": "1703952900474518", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2181717284, "time": "2023-12-31 00:15:01.014049"}, "943152011": {"flag": "1703320304957915", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 3349427217, "time": "2023-12-23 16:31:45.155696"}, "763127660": {"flag": "1703324537733919", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2120962356, "time": "2023-12-23 17:42:17.943246"}, "829590531": {"flag": "1703352603286786", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1450625289, "time": "2023-12-24 01:30:03.463269"}, "732248619": {"flag": "1703512529541114", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 239182965, "time": "2023-12-25 21:55:29.768840"}, "627090292": {"flag": "1703559831208496", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 2119397703, "time": "2023-12-26 11:03:51.359338"}, "692782189": {"flag": "1703991569139218", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n此时增满5人,未能再自动添加", "requestorId": 2105285926, "time": "2023-12-31 10:59:29.287785"}, "934180647": {"flag": "1703998454840629", "comment": "", "notice_msg": "发送群邀请,验证消息为", "staus": "\n未允许自动添加", "requestorId": 1130326579, "time": "2023-12-31 12:54:15.416350"}}} \ No newline at end of file diff --git a/src/plugins/nonebot_plugin_anime_trace/__init__.py b/src/plugins/nonebot_plugin_anime_trace/__init__.py index 3917a77..2f749c3 100644 --- a/src/plugins/nonebot_plugin_anime_trace/__init__.py +++ b/src/plugins/nonebot_plugin_anime_trace/__init__.py @@ -42,22 +42,21 @@ config: Config = Config.parse_obj(get_driver().config) -async def _cmd_check(bot: Bot, event: MessageEvent): +async def _cmd_check(event: MessageEvent): txt_msg = event.message.extract_plain_text().strip() - if config.animetrace_cmd in txt_msg: - return True + return config.animetrace_cmd in txt_msg acg_trace = on_keyword( config.animetrace_keyword, - rule=Rule(_cmd_check), + rule=_cmd_check, priority=config.animetrace_priority, block=True, ) @acg_trace.handle() -async def _(bot: Bot, event: MessageEvent, matcher: Matcher, state: T_State): +async def _(event: MessageEvent, matcher: Matcher, state: T_State): # 选择模型 txt_msg = event.message.extract_plain_text().strip() if "gal" in txt_msg: @@ -143,7 +142,7 @@ async def main(bot: Bot, event: Event, state: T_State): # 发送消息 try: nickname = config.nickname[0] - except: + except Exception: nickname = "anime trace" try: msgs = [ diff --git a/src/plugins/nonebot_plugin_crazy_thursday/__init__.py b/src/plugins/nonebot_plugin_crazy_thursday/__init__.py index b8fa082..292ea38 100644 --- a/src/plugins/nonebot_plugin_crazy_thursday/__init__.py +++ b/src/plugins/nonebot_plugin_crazy_thursday/__init__.py @@ -75,7 +75,7 @@ def randomKFC(day: str) -> str: return "给个准确时间,OK?" # Get the weekday group index - idx: int = int(tb.index(day) / 3) * 3 + idx: int = tb.index(day) // 3 * 3 # json数据存放路径 path: Path = crazy_config.crazy_path / "post.json" diff --git a/src/plugins/nonebot_plugin_crazy_thursday/config.py b/src/plugins/nonebot_plugin_crazy_thursday/config.py index 92d0515..da4a064 100644 --- a/src/plugins/nonebot_plugin_crazy_thursday/config.py +++ b/src/plugins/nonebot_plugin_crazy_thursday/config.py @@ -63,11 +63,7 @@ async def kfc_post_check() -> None: data = json.load(f) cur_version = data.get("version", 0) - if crazy_config.crazy_auto_update: - response = await download_url() - else: - response = None - + response = await download_url() if crazy_config.crazy_auto_update else None if response is None: if not json_path.exists(): logger.warning("Crazy Thursday resource missing! Please check!") @@ -75,11 +71,11 @@ async def kfc_post_check() -> None: else: try: version: float = response.get("version", 0) - except KeyError: + except KeyError as e: logger.warning( "KFC post text resource downloaded incompletely! Please check!" ) - raise DownloadError + raise DownloadError from e # Update when there is a newer version if version > cur_version: diff --git a/src/plugins/nonebot_plugin_githubcard/__init__.py b/src/plugins/nonebot_plugin_githubcard/__init__.py index 4478d14..9a82bd6 100644 --- a/src/plugins/nonebot_plugin_githubcard/__init__.py +++ b/src/plugins/nonebot_plugin_githubcard/__init__.py @@ -22,11 +22,7 @@ def match_link_parts(link): pattern = r'https?://github\.com/([^/]+/[^/]+)' - match = re.search(pattern, link) - if match: - return match.group(0) - else: - return None + return match.group(0) if (match := re.search(pattern, link)) else None @github.handle() diff --git a/src/plugins/nonebot_plugin_githubcard/data_source.py b/src/plugins/nonebot_plugin_githubcard/data_source.py index 8f7f5a8..2aad6d9 100644 --- a/src/plugins/nonebot_plugin_githubcard/data_source.py +++ b/src/plugins/nonebot_plugin_githubcard/data_source.py @@ -16,22 +16,18 @@ "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36" } -if token is None: - headers = Headers1 -else: - headers = Headers2 +headers = Headers1 if token is None else Headers2 async def get_github_reposity_information(url: str) -> str: try: UserName, RepoName = url.replace("https://github.com/", "").split("/") - except: + except Exception: UserName, RepoName = url.replace("github.com/", "").split("/") async with aiohttp.ClientSession() as session: async with session.get(f"https://api.github.com/users/{UserName}", - headers=headers, - timeout=5) as response: + headers=headers, + timeout=5) as response: RawData = await response.json() AvatarUrl = RawData["avatar_url"] - ImageUrl = f"https://image.thum.io/get/width/1280/crop/640/viewportWidth/1280/png/noanimate/https://socialify.git.ci/{UserName}/{RepoName}/image?description=1&font=Source%20Code%20Pro&forks=1&issues=1&language=1&name=1&owner=1&pattern=Charlie%20Brown&pulls=1&stargazers=1&theme=Dark&logo={AvatarUrl}" - return ImageUrl \ No newline at end of file + return f"https://image.thum.io/get/width/1280/crop/640/viewportWidth/1280/png/noanimate/https://socialify.git.ci/{UserName}/{RepoName}/image?description=1&font=Source%20Code%20Pro&forks=1&issues=1&language=1&name=1&owner=1&pattern=Charlie%20Brown&pulls=1&stargazers=1&theme=Dark&logo={AvatarUrl}" \ No newline at end of file diff --git a/src/plugins/nonebot_plugin_heweather/render_pic.py b/src/plugins/nonebot_plugin_heweather/render_pic.py index 4781d35..02059d3 100644 --- a/src/plugins/nonebot_plugin_heweather/render_pic.py +++ b/src/plugins/nonebot_plugin_heweather/render_pic.py @@ -17,9 +17,8 @@ async def render(weather: Weather) -> bytes: template_path = str(Path(__file__).parent / "templates") air = None - if weather.air: - if weather.air.now: - air = add_tag_color(weather.air.now) + if weather.air and weather.air.now: + air = add_tag_color(weather.air.now) return await template_to_pic( template_path=template_path, @@ -40,8 +39,8 @@ async def render(weather: Weather) -> bytes: def add_hour_data(hourly: List[Hourly]): - min_temp = min([int(hour.temp) for hour in hourly]) - high = max([int(hour.temp) for hour in hourly]) + min_temp = min(int(hour.temp) for hour in hourly) + high = max(int(hour.temp) for hour in hourly) low = int(min_temp - (high - min_temp)) for hour in hourly: date_time = datetime.fromisoformat(hour.fxTime) diff --git a/src/plugins/nonebot_plugin_heweather/weather_data.py b/src/plugins/nonebot_plugin_heweather/weather_data.py index 3525aa4..c027d6c 100644 --- a/src/plugins/nonebot_plugin_heweather/weather_data.py +++ b/src/plugins/nonebot_plugin_heweather/weather_data.py @@ -29,7 +29,7 @@ def __url__(self): self.url_hourly = "https://api.qweather.com/v7/weather/24h" self.forecast_days = 7 logger.info("使用商业版API") - elif self.api_type == 0 or self.api_type == 1: + elif self.api_type in [0, 1]: self.url_weather_api = "https://devapi.qweather.com/v7/weather/" self.url_geoapi = "https://geoapi.qweather.com/v2/city/" self.url_weather_warning = "https://devapi.qweather.com/v7/warning/now" @@ -38,7 +38,7 @@ def __url__(self): if self.api_type == 0: self.forecast_days = 3 logger.info("使用普通版API") - elif self.api_type == 1: + else: self.forecast_days = 7 logger.info("使用个人开发版API") else: @@ -88,35 +88,30 @@ async def _get_city_id(self, api_type: str = "lookup"): if res["code"] == "404": raise CityNotFoundError() elif res["code"] != "200": - raise APIError("错误! 错误代码: {}".format(res["code"]) + self.__reference) + raise APIError(f'错误! 错误代码: {res["code"]}{self.__reference}') else: self.city_name = res["location"][0]["name"] return res["location"][0]["id"] def _data_validate(self): - if self.now.code == "200" and self.daily.code == "200": - pass - else: + if self.now.code != "200" or self.daily.code != "200": raise APIError( - "错误! 请检查配置! " - f"错误代码: now: {self.now.code} " - f"daily: {self.daily.code} " - + "air: {} ".format(self.air.code if self.air else "None") - + "warning: {}".format(self.warning.code if self.warning else "None") + f"错误! 请检查配置! 错误代码: now: {self.now.code} daily: {self.daily.code} " + + f'air: {self.air.code if self.air else "None"} ' + + f'warning: {self.warning.code if self.warning else "None"}' + self.__reference ) def _check_response(self, response: Response) -> bool: - if response.status_code == 200: - logger.debug(f"{response.json()}") - return True - else: + if response.status_code != 200: raise APIError(f"Response code:{response.status_code}") + logger.debug(f"{response.json()}") + return True @property async def _now(self) -> NowApi: res = await self._get_data( - url=self.url_weather_api + "now", + url=f"{self.url_weather_api}now", params={"location": self.city_id, "key": self.apikey}, ) self._check_response(res) diff --git a/src/plugins/nonebot_plugin_report_manager/blacklist.py b/src/plugins/nonebot_plugin_report_manager/blacklist.py index 27033a9..592b1d7 100644 --- a/src/plugins/nonebot_plugin_report_manager/blacklist.py +++ b/src/plugins/nonebot_plugin_report_manager/blacklist.py @@ -1,3 +1,4 @@ +import contextlib from pathlib import Path from typing import Literal from nonebot.adapters.onebot.v11 import MessageEvent @@ -22,17 +23,13 @@ def save_blacklist() -> None: def is_number(s: str) -> bool: - try: + with contextlib.suppress(ValueError): float(s) return True - except ValueError: - pass - try: + with contextlib.suppress(TypeError, ValueError): import unicodedata unicodedata.numeric(s) return True - except (TypeError, ValueError): - pass return False @@ -41,10 +38,7 @@ def handle_blacklist( mode: Literal["add", "del"], ) -> str: msg = str(event.get_message()).strip().split(' ') - uids = [] - for i in msg: - if is_number(i): - uids.append(i) + uids = [i for i in msg if is_number(i)] if mode == "add": for i in uids: if i in superusers: @@ -61,7 +55,7 @@ def handle_blacklist( uid for uid in blacklist["blacklist"] if uid not in uids] _mode = "删除" save_blacklist() - if len(uids) == 0: + if not uids: return "没有可操作的用户,请检查输入格式或者用户是否已在黑名单中" else: return f"已{_mode} {len(uids)} 个黑名单用户: {', '.join(uids)}" \ No newline at end of file diff --git a/src/plugins/nonebot_plugin_setu_now/__init__.py b/src/plugins/nonebot_plugin_setu_now/__init__.py index 8de1e6c..ac0202c 100755 --- a/src/plugins/nonebot_plugin_setu_now/__init__.py +++ b/src/plugins/nonebot_plugin_setu_now/__init__.py @@ -117,9 +117,8 @@ async def _( # await setu_matcher.finish("不可以涩涩!本群未启用涩图功能")0 # 检测开关是否开启,如果为none则默认开启,如果为false则关闭 record = await SetuSwitch.get_or_none(group_id=event.group_id) - if not record is None: - if not record.switch: - await setu_matcher.finish("不可以涩涩!本群未启用涩图功能") + if record is not None and not record.switch: + await setu_matcher.finish("不可以涩涩!本群未启用涩图功能") setu_total_timer = PerfTimer("Image request total") args = list(regex_group) logger.debug(f"args={args}") @@ -188,9 +187,6 @@ async def nb_send_handler(setu: Setu) -> None: await autorevoke_send( bot=bot, event=event, message=msg, revoke_interval=WITHDRAW_TIME ) - """ - 发送成功 - """ send_timer.stop() global_speedlimiter.send_success() if SETU_PATH is None: # 未设置缓存路径,删除缓存 diff --git a/src/plugins/nonebot_plugin_setu_now/aioutils/_main.py b/src/plugins/nonebot_plugin_setu_now/aioutils/_main.py index 41c3f27..fb30500 100644 --- a/src/plugins/nonebot_plugin_setu_now/aioutils/_main.py +++ b/src/plugins/nonebot_plugin_setu_now/aioutils/_main.py @@ -112,7 +112,7 @@ def syncify( def wrapper(*args: T_ParamSpec.args, **kwargs: T_ParamSpec.kwargs) -> T_Retval: current_async_module = getattr(threadlocals, "current_async_module", None) partial_f = functools.partial(async_function, *args, **kwargs) - if current_async_module is None and raise_sync_error is False: + if current_async_module is None and not raise_sync_error: return anyio.run(partial_f) return anyio.from_thread.run(partial_f) diff --git a/src/plugins/nonebot_plugin_setu_now/data_source.py b/src/plugins/nonebot_plugin_setu_now/data_source.py index 6de65e1..1fd225f 100644 --- a/src/plugins/nonebot_plugin_setu_now/data_source.py +++ b/src/plugins/nonebot_plugin_setu_now/data_source.py @@ -65,7 +65,5 @@ async def prep_handler(self, setu: Setu): async def process_request(self): await self.refresh_api_info() - task_list = [] - for i in self.setu_instance_list: - task_list.append(self.prep_handler(i)) + task_list = [self.prep_handler(i) for i in self.setu_instance_list] await gather(*task_list) diff --git a/src/plugins/nonebot_plugin_setu_now/img_utils.py b/src/plugins/nonebot_plugin_setu_now/img_utils.py index 2affbdf..598a52b 100644 --- a/src/plugins/nonebot_plugin_setu_now/img_utils.py +++ b/src/plugins/nonebot_plugin_setu_now/img_utils.py @@ -125,9 +125,7 @@ def image_segment_convert(img: Union[Path, Image.Image, bytes]) -> MessageSegmen return MessageSegment.image(img) elif isinstance(img, bytes): img = Image.open(BytesIO(img)) - elif isinstance(img, Image.Image): - pass - else: + elif not isinstance(img, Image.Image): raise ValueError(f"Unsopported image type: {type(img)}") image_bytesio = BytesIO() save_timer = PerfTimer.start(f"Save bytes {img.width} x {img.height}") diff --git a/src/plugins/nonebot_plugin_wordcloud/config.py b/src/plugins/nonebot_plugin_wordcloud/config.py index ae2d731..f26660a 100644 --- a/src/plugins/nonebot_plugin_wordcloud/config.py +++ b/src/plugins/nonebot_plugin_wordcloud/config.py @@ -57,9 +57,7 @@ def set_default_values(cls, values): def get_mask_path(self, key: Optional[str] = None) -> Path: """获取 mask 文件路径""" - if key is None: - return DATA_DIR / "mask.png" - return DATA_DIR / f"mask-{key}.png" + return DATA_DIR / "mask.png" if key is None else DATA_DIR / f"mask-{key}.png" global_config = get_driver().config diff --git a/src/plugins/nonebot_plugin_wordcloud/data_source.py b/src/plugins/nonebot_plugin_wordcloud/data_source.py index 87d47e1..17f277d 100644 --- a/src/plugins/nonebot_plugin_wordcloud/data_source.py +++ b/src/plugins/nonebot_plugin_wordcloud/data_source.py @@ -75,7 +75,7 @@ def _get_wordcloud(messages: List[str], mask_key: str) -> Optional[bytes]: frequency = analyse_message(message) # 词云参数 wordcloud_options = {} - wordcloud_options.update(plugin_config.wordcloud_options) + wordcloud_options |= plugin_config.wordcloud_options wordcloud_options.setdefault("font_path", str(plugin_config.wordcloud_font_path)) wordcloud_options.setdefault("width", plugin_config.wordcloud_width) wordcloud_options.setdefault("height", plugin_config.wordcloud_height) diff --git a/src/plugins/nonebot_plugin_wordcloud/migrations/ade8cdca5470_migrate_datastore_data.py b/src/plugins/nonebot_plugin_wordcloud/migrations/ade8cdca5470_migrate_datastore_data.py index 6a93e02..48655bb 100644 --- a/src/plugins/nonebot_plugin_wordcloud/migrations/ade8cdca5470_migrate_datastore_data.py +++ b/src/plugins/nonebot_plugin_wordcloud/migrations/ade8cdca5470_migrate_datastore_data.py @@ -102,6 +102,4 @@ def upgrade(name: str = "") -> None: def downgrade(name: str = "") -> None: if name: return - # ### commands auto generated by Alembic - please adjust! ### - pass # ### end Alembic commands ### diff --git a/src/plugins/nonebot_plugin_wordcloud/utils.py b/src/plugins/nonebot_plugin_wordcloud/utils.py index bef5cf5..15c0ef2 100644 --- a/src/plugins/nonebot_plugin_wordcloud/utils.py +++ b/src/plugins/nonebot_plugin_wordcloud/utils.py @@ -38,7 +38,7 @@ def time_astimezone(time: time, tz: Optional[tzinfo] = None) -> time: 如果 tz 为 None,则转换为本地时区 """ - local_time = datetime.combine(datetime.today(), time) + local_time = datetime.combine(datetime.now(), time) return local_time.astimezone(tz).timetz() @@ -76,14 +76,14 @@ def get_mask_key(target: PlatformTarget = Depends(get_target)) -> str: qq_group-group_id=10000 qq_guild_channel-channel_id=100000 """ - mask_keys = [f"{target.platform_type.name}"] - mask_keys.extend( - [ + mask_keys = [ + f"{target.platform_type.name}", + *[ f"{key}={value}" for key, value in target.dict(exclude={"platform_type"}).items() if value is not None - ] - ) + ], + ] return "-".join(mask_keys) diff --git a/src/plugins/today_in_history/__init__.py b/src/plugins/today_in_history/__init__.py index c1a134e..d1f6a49 100644 --- a/src/plugins/today_in_history/__init__.py +++ b/src/plugins/today_in_history/__init__.py @@ -37,8 +37,7 @@ async def _(event: MessageEvent): f"is_list={isinstance(plugin_config.history_inform_time,list)}") await config_test.send( f"is_str={isinstance(plugin_config.history_inform_time,str)}") - await config_test.send(f"is_None={plugin_config.history_inform_time==None}" - ) + await config_test.send(f"is_None={plugin_config.history_inform_time is None}") history_matcher = on_fullmatch("历史上的今天") @@ -89,8 +88,7 @@ def text_handle(text: str) -> json: 2:] address_head = address_end - data = json.loads(text) - return data + return json.loads(text) # 信息获取 @@ -100,22 +98,22 @@ async def get_history_info() -> MessageSegment: day = date.today().strftime("%d") url = f"https://baike.baidu.com/cms/home/eventsOnHistory/{month}.json" r = await client.get(url) - if r.status_code == 200: - r.encoding = "unicode_escape" - data = text_handle(r.text) - today = f"{month}{day}" - s = f"历史上的今天 {today}\n" - len_max = len(data[month][month + day]) - for i in range(0, len_max): - str_year = data[month][today][i]["year"] - str_title = data[month][today][i]["title"] - if i == len_max - 1: - s = s + f"{str_year} {str_title}" # 去除段末空行 - else: - s = s + f"{str_year} {str_title}\n" - return MessageSegment.image(await text_to_pic(s)) - else: + if r.status_code != 200: return MessageSegment.text("获取失败,请重试") + r.encoding = "unicode_escape" + data = text_handle(r.text) + today = f"{month}{day}" + s = f"历史上的今天 {today}\n" + len_max = len(data[month][month + day]) + for i in range(len_max): + str_year = data[month][today][i]["year"] + str_title = data[month][today][i]["title"] + s = ( + f"{s}{str_year} {str_title}" + if i == len_max - 1 + else f"{s}{str_year} {str_title}\n" + ) + return MessageSegment.image(await text_to_pic(s)) # 消息发送 diff --git a/src/plugins/today_yunshi/__init__.py b/src/plugins/today_yunshi/__init__.py index a98adfe..e2855e8 100644 --- a/src/plugins/today_yunshi/__init__.py +++ b/src/plugins/today_yunshi/__init__.py @@ -56,10 +56,6 @@ async def _(matcher: Matcher, event: MessageEvent): member_model.luckid = luckid member_model.time = datetime.now() await member_model.save() - if isinstance(event, PrivateMessageEvent): - await matcher.finish(result) - else: - await matcher.finish("\n" + result, at_sender=True) else: # 如果是今天的数据则返回今天的数据 r = str(member_model.luckid) @@ -67,10 +63,10 @@ async def _(matcher: Matcher, event: MessageEvent): f"----\n{luckdata[r]['运势']}\n{luckdata[r]['星级']}\n" f"{luckdata[r]['签文']}\n{luckdata[r]['解签']}\n----" ) - if isinstance(event, PrivateMessageEvent): - await matcher.finish(result) - else: - await matcher.finish("\n" + result, at_sender=True) + if isinstance(event, PrivateMessageEvent): + await matcher.finish(result) + else: + await matcher.finish("\n" + result, at_sender=True) def randomluck(arg, memberdata): diff --git a/src/plugins/waifu/utils.py b/src/plugins/waifu/utils.py index 1f0bfd4..6cfc5ea 100644 --- a/src/plugins/waifu/utils.py +++ b/src/plugins/waifu/utils.py @@ -18,7 +18,7 @@ async def download_avatar(user_id: int) -> bytes: async def download_url(url: str) -> bytes: async with httpx.AsyncClient() as client: - for i in range(3): + for _ in range(3): try: resp = await client.get(url, timeout=20) resp.raise_for_status() @@ -71,8 +71,4 @@ def get_message_at(message: Message) -> list: """ 获取at列表 """ - qq_list = [] - for msg in message: - if msg.type == "at": - qq_list.append(int(msg.data["qq"])) - return qq_list + return [int(msg.data["qq"]) for msg in message if msg.type == "at"] diff --git a/src/plugins/whateat_pic/check_pass.py b/src/plugins/whateat_pic/check_pass.py index f14e60f..8383657 100644 --- a/src/plugins/whateat_pic/check_pass.py +++ b/src/plugins/whateat_pic/check_pass.py @@ -1,8 +1,8 @@ import time from .config import Config from nonebot import get_driver -from typing import Tuple - +from typing import Tuple + #获取配置cd时间 cd = Config.parse_obj(get_driver().config.dict()).whateat_cd max_count = Config.parse_obj(get_driver().config.dict()).whateat_max @@ -16,18 +16,16 @@ def check_cd(last_time:int) ->Tuple[bool,int,int]: return False,cd-delta_time,last_time else: return True,0,current_time - - -def check_max(message,user_count:dict) ->Tuple[bool,dict]: + + +def check_max(message,user_count:dict) -> Tuple[bool,dict]: # 判断是否达到每日最大值 user_id = message.get_user_id() if max_count == 0: return False,{} if user_id not in user_count: user_count[f"{user_id}"] = 0 - if user_count[f"{user_id}"] < max_count: - user_count[f"{user_id}"] += 1 - return False,user_count - else: + if user_count[f"{user_id}"] >= max_count: return True,user_count - \ No newline at end of file + user_count[f"{user_id}"] += 1 + return False,user_count