mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 19:37:36 +08:00
* feat: basic arch of event log * feat: complete event log framework * fix: bad struct in bot log api * feat: add event logging to all platform adapters Co-Authored-By: wangcham233@gmail.com <651122857@qq.com> * feat: add event logging to client classes Co-Authored-By: wangcham233@gmail.com <651122857@qq.com> * refactor: bot log getting api * perf: logger for aiocqhttp and gewechat * fix: add ignored logger in dingtalk * fix: seq id bug in log getting * feat: add logger in dingtalk,QQ official,Slack, wxoa * feat: add logger for wecom * feat: add logger for wecomcs * perf(event logger): image processing * 完成机器人日志的前端部分 (#1479) * feat: webui bot log framework done * feat: bot log complete * perf(bot-log): style * chore: fix incompleted i18n * feat: support message session copy * fix: filter and badge text * perf: styles * feat: add bot toggle switch in bot card * fix: linter errors --------- Co-authored-by: Junyan Qin <rockchinq@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: wangcham233@gmail.com <651122857@qq.com> Co-authored-by: HYana <65863826+KaedeSAMA@users.noreply.github.com>
45 lines
1.9 KiB
Python
45 lines
1.9 KiB
Python
import quart
|
|
|
|
from ... import group
|
|
|
|
|
|
@group.group_class('bots', '/api/v1/platform/bots')
|
|
class BotsRouterGroup(group.RouterGroup):
|
|
async def initialize(self) -> None:
|
|
@self.route('', methods=['GET', 'POST'])
|
|
async def _() -> str:
|
|
if quart.request.method == 'GET':
|
|
return self.success(data={'bots': await self.ap.bot_service.get_bots()})
|
|
elif quart.request.method == 'POST':
|
|
json_data = await quart.request.json
|
|
bot_uuid = await self.ap.bot_service.create_bot(json_data)
|
|
return self.success(data={'uuid': bot_uuid})
|
|
|
|
@self.route('/<bot_uuid>', methods=['GET', 'PUT', 'DELETE'])
|
|
async def _(bot_uuid: str) -> str:
|
|
if quart.request.method == 'GET':
|
|
bot = await self.ap.bot_service.get_bot(bot_uuid)
|
|
if bot is None:
|
|
return self.http_status(404, -1, 'bot not found')
|
|
return self.success(data={'bot': bot})
|
|
elif quart.request.method == 'PUT':
|
|
json_data = await quart.request.json
|
|
await self.ap.bot_service.update_bot(bot_uuid, json_data)
|
|
return self.success()
|
|
elif quart.request.method == 'DELETE':
|
|
await self.ap.bot_service.delete_bot(bot_uuid)
|
|
return self.success()
|
|
|
|
@self.route('/<bot_uuid>/logs', methods=['POST'])
|
|
async def _(bot_uuid: str) -> str:
|
|
json_data = await quart.request.json
|
|
from_index = json_data.get('from_index', -1)
|
|
max_count = json_data.get('max_count', 10)
|
|
logs, total_count = await self.ap.bot_service.list_event_logs(bot_uuid, from_index, max_count)
|
|
return self.success(
|
|
data={
|
|
'logs': logs,
|
|
'total_count': total_count,
|
|
}
|
|
)
|