123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- """Main logging part"""
- # Friendly Telegram (telegram userbot)
- # Copyright (C) 2018-2021 The Authors
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU Affero General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU Affero General Public License for more details.
- # You should have received a copy of the GNU Affero General Public License
- # along with this program. If not, see <https://www.gnu.org/licenses/>.
- # █ █ ▀ █▄▀ ▄▀█ █▀█ ▀
- # █▀█ █ █ █ █▀█ █▀▄ █
- # © Copyright 2022
- # https://t.me/hikariatama
- #
- # 🔒 Licensed under the GNU AGPLv3
- # 🌐 https://www.gnu.org/licenses/agpl-3.0.html
- import asyncio
- import inspect
- import logging
- import io
- from typing import Optional
- from logging.handlers import RotatingFileHandler
- from . import utils
- from ._types import Module
- _main_formatter = logging.Formatter(
- fmt="%(asctime)s [%(levelname)s] %(name)s: %(message)s",
- datefmt="%Y-%m-%d %H:%M:%S",
- style="%",
- )
- _tg_formatter = logging.Formatter(
- fmt="[%(levelname)s] %(name)s: %(message)s\n",
- datefmt=None,
- style="%",
- )
- rotating_handler = RotatingFileHandler(
- filename="hikka.log",
- mode="a",
- maxBytes=10 * 1024 * 1024,
- backupCount=1,
- encoding="utf-8",
- delay=0,
- )
- rotating_handler.setFormatter(_main_formatter)
- class TelegramLogsHandler(logging.Handler):
- """
- Keeps 2 buffers.
- One for dispatched messages.
- One for unused messages.
- When the length of the 2 together is 100
- truncate to make them 100 together,
- first trimming handled then unused.
- """
- def __init__(self, targets: list, capacity: int):
- super().__init__(0)
- self.targets = targets
- self.capacity = capacity
- self.buffer = []
- self.handledbuffer = []
- self.lvl = logging.NOTSET # Default loglevel
- self._queue = []
- self.tg_buff = []
- self._mods = {}
- self.force_send_all = False
- def install_tg_log(self, mod: Module):
- if getattr(self, "_task", False):
- self._task.cancel()
- self._mods[mod._tg_id] = mod
- self._task = asyncio.ensure_future(self.queue_poller())
- async def queue_poller(self):
- while True:
- await self.sender()
- await asyncio.sleep(3)
- def setLevel(self, level: int):
- self.lvl = level
- def dump(self):
- """Return a list of logging entries"""
- return self.handledbuffer + self.buffer
- def dumps(self, lvl: Optional[int] = 0, client_id: Optional[int] = None) -> list:
- """Return all entries of minimum level as list of strings"""
- return [
- self.targets[0].format(record)
- for record in (self.buffer + self.handledbuffer)
- if record.levelno >= lvl
- and (not record.hikka_caller or client_id == record.hikka_caller)
- ]
- async def sender(self):
- self._queue = {
- client_id: utils.chunks(
- utils.escape_html(
- "".join(
- [
- item[0]
- for item in self.tg_buff
- if not item[1]
- or item[1] == client_id
- or self.force_send_all
- ]
- )
- ),
- 4096,
- )
- for client_id in self._mods
- }
- self.tg_buff = []
- for client_id in self._mods:
- if client_id not in self._queue:
- continue
- if len(self._queue[client_id]) > 5:
- file = io.BytesIO("".join(self._queue[client_id]).encode("utf-8"))
- file.name = "hikka-logs.txt"
- file.seek(0)
- await self._mods[client_id].inline.bot.send_document(
- self._mods[client_id]._logchat,
- file,
- parse_mode="HTML",
- caption="<b>🧳 Journals are too big to be sent as separate messages</b>",
- )
- self._queue[client_id] = []
- continue
- while self._queue[client_id]:
- chunk = self._queue[client_id].pop(0)
- if not chunk:
- continue
- asyncio.ensure_future(
- self._mods[client_id].inline.bot.send_message(
- self._mods[client_id]._logchat,
- f"<code>{chunk}</code>",
- parse_mode="HTML",
- disable_notification=True,
- )
- )
- def emit(self, record: logging.LogRecord):
- try:
- caller = next(
- (
- frame_info.frame.f_locals["_hikka_client_id_logging_tag"]
- for frame_info in inspect.stack()
- if isinstance(
- getattr(getattr(frame_info, "frame", None), "f_locals", {}).get(
- "_hikka_client_id_logging_tag"
- ),
- int,
- )
- ),
- False,
- )
- if not isinstance(caller, int):
- caller = None
- except Exception:
- caller = None
- record.hikka_caller = caller
- if record.levelno >= 20:
- self.tg_buff += [
- (
- ("🚫 " if record.exc_info else "") + _tg_formatter.format(record),
- caller,
- )
- ]
- if len(self.buffer) + len(self.handledbuffer) >= self.capacity:
- if self.handledbuffer:
- del self.handledbuffer[0]
- else:
- del self.buffer[0]
- self.buffer.append(record)
- if record.levelno >= self.lvl >= 0:
- self.acquire()
- try:
- for precord in self.buffer:
- for target in self.targets:
- if record.levelno >= target.level:
- target.handle(precord)
- self.handledbuffer = (
- self.handledbuffer[-(self.capacity - len(self.buffer)) :]
- + self.buffer
- )
- self.buffer = []
- finally:
- self.release()
- def init():
- handler = logging.StreamHandler()
- handler.setLevel(logging.INFO)
- handler.setFormatter(_main_formatter)
- logging.getLogger().handlers = []
- logging.getLogger().addHandler(
- TelegramLogsHandler((handler, rotating_handler), 7000)
- )
- logging.getLogger().setLevel(logging.NOTSET)
- logging.getLogger("telethon").setLevel(logging.WARNING)
- logging.getLogger("matplotlib").setLevel(logging.WARNING)
- logging.getLogger("aiohttp").setLevel(logging.WARNING)
- logging.getLogger("aiogram").setLevel(logging.WARNING)
- logging.captureWarnings(True)
|