mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 09:10:30 +08:00
58 lines
2.7 KiB
Python
58 lines
2.7 KiB
Python
# ========================================================================== #
|
|
# #
|
|
# KVMD - The main Pi-KVM daemon. #
|
|
# #
|
|
# Copyright (C) 2018 Maxim Devaev <mdevaev@gmail.com> #
|
|
# #
|
|
# This program is free software: you can redistribute it and/or modify #
|
|
# it under the terms of the GNU 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 General Public License for more details. #
|
|
# #
|
|
# You should have received a copy of the GNU General Public License #
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
|
# #
|
|
# ========================================================================== #
|
|
|
|
|
|
from typing import Optional
|
|
|
|
import aiohttp.web
|
|
|
|
from ....validators.basic import valid_bool
|
|
|
|
from ....validators.kvm import valid_log_seek
|
|
|
|
from ..logreader import LogReader
|
|
|
|
from ..http import exposed_http
|
|
|
|
|
|
# =====
|
|
class LogApi:
|
|
def __init__(self, log_reader: LogReader) -> None:
|
|
self.__log_reader = log_reader
|
|
|
|
# =====
|
|
|
|
@exposed_http("GET", "/log")
|
|
async def __log_handler(self, request: aiohttp.web.Request) -> aiohttp.web.StreamResponse:
|
|
seek = valid_log_seek(request.query.get("seek", "0"))
|
|
follow = valid_bool(request.query.get("follow", "false"))
|
|
response: Optional[aiohttp.web.StreamResponse] = None
|
|
async for record in self.__log_reader.poll_log(seek, follow):
|
|
if response is None:
|
|
response = aiohttp.web.StreamResponse(status=200, reason="OK", headers={"Content-Type": "text/plain"})
|
|
await response.prepare(request)
|
|
await response.write(("[%s %s] --- %s" % (
|
|
record["dt"].strftime("%Y-%m-%d %H:%M:%S"),
|
|
record["service"],
|
|
record["msg"],
|
|
)).encode("utf-8") + b"\r\n")
|
|
return response
|