Files
AstrBot/astrbot/dashboard/services/t2i_service.py
Weilong Liao 0d8e8682db refactor(core): migrate backend backbone from Quart to FastAPI and introduce more OpenAPI (#8688)
* refactor: migrate to fastapi

* structure refactor

* fix: pyright fix

* refactor: improve error handling and public messages in plugin services

* feat(api): refactor API client integration and enhance request handling

- Updated API client configuration to use a dedicated HTTP client.
- Introduced utility functions for generating options, queries, and form data for API requests.
- Refactored multiple API methods to utilize the new utility functions for improved consistency and readability.
- Renamed types for clarity and updated import statements accordingly.

feat(docs): add script to update OpenAPI JSON from YAML spec

- Created a Python script to convert OpenAPI YAML specification to JSON format.
- The script supports customizable input and output paths.
- Ensured the script handles directory creation for output paths and validates the YAML structure.

* fix

* feat(auth): implement rate limiting for v1 login endpoint and enhance request handling

* Refactor dashboard API routers to use legacy_router for backward compatibility

- Changed all instances of dashboard_router to legacy_router across multiple API modules including platform, plugins, providers, sessions, skills, stats, subagents, t2i, tools, updates, and asgi_runtime.
- Updated route definitions to ensure existing endpoints remain functional under the new router structure.
- Introduced support for Quart request context in asgi_runtime to enhance compatibility with existing Quart-based plugins.
- Added a test case to validate the functionality of the new Quart request context handling in plugin extensions.

* chore: remove cli test

* fix: update dashboard tests for fastapi migration

* chore: satisfy ruff checks

* fix: update openapi api key scopes

* fix: sync config scope chip selection

* fix: restore quart dependency

* docs: clarify quart plugin api compatibility

* docs: update openapi scope documentation

* fix: use singular skill openapi scope

* fix: hide update service exception details

* fix: address fastapi review comments

* fix: address dashboard review findings

* docs: revert unrelated package deployment changes

* docs: update agent api generation guidance

* feat: add plugin page web api helpers

* docs: add plugin page bridge demo

* fix: type plugin upload files

* fix: stabilize plugin page uploads

* fix: type plugin web request proxy

* docs: remove plugin page docs example

* fix: authenticate plugin page SSE bridge
2026-06-14 15:03:26 +08:00

131 lines
4.9 KiB
Python

from __future__ import annotations
from astrbot.core import logger
from astrbot.core.core_lifecycle import AstrBotCoreLifecycle
from astrbot.core.utils.t2i.template_manager import TemplateManager
class T2iServiceError(Exception):
def __init__(self, message: str, status_code: int = 500) -> None:
super().__init__(message)
self.status_code = status_code
class T2iService:
def __init__(
self,
core_lifecycle: AstrBotCoreLifecycle,
manager: TemplateManager | None = None,
) -> None:
self.core_lifecycle = core_lifecycle
self.config = core_lifecycle.astrbot_config
self.manager = manager or TemplateManager()
async def reload_all_pipeline_schedulers(self) -> None:
for conf_id in self.core_lifecycle.astrbot_config_mgr.confs:
await self.core_lifecycle.reload_pipeline_scheduler(conf_id)
async def sync_active_template_to_all_configs(self, name: str) -> None:
for config in self.core_lifecycle.astrbot_config_mgr.confs.values():
config["t2i_active_template"] = name
config.save_config()
await self.reload_all_pipeline_schedulers()
def list_templates(self):
try:
return self.manager.list_templates()
except Exception as exc:
raise T2iServiceError(str(exc)) from exc
def get_active_template(self) -> dict:
try:
return {"active_template": self.config.get("t2i_active_template", "base")}
except Exception as exc:
logger.error("Error in get_active_template", exc_info=True)
raise T2iServiceError(str(exc)) from exc
def get_template(self, name: str) -> dict:
try:
return {"name": name, "content": self.manager.get_template(name)}
except FileNotFoundError as exc:
raise T2iServiceError("Template not found", 404) from exc
except Exception as exc:
raise T2iServiceError(str(exc)) from exc
def create_template(self, name: str | None, content: str | None) -> dict:
if not name or not content:
raise T2iServiceError("Name and content are required.", 400)
name = name.strip()
try:
self.manager.create_template(name, content)
except FileExistsError as exc:
raise T2iServiceError(
"Template with this name already exists.",
409,
) from exc
except ValueError as exc:
raise T2iServiceError(str(exc), 400) from exc
except Exception as exc:
raise T2iServiceError(str(exc)) from exc
return {"name": name}
async def update_template(self, name: str, content: str | None) -> tuple[dict, str]:
name = name.strip()
if content is None:
raise T2iServiceError("Content is required.", 400)
try:
self.manager.update_template(name, content)
active_template = self.config.get("t2i_active_template", "base")
if name == active_template:
await self.reload_all_pipeline_schedulers()
message = f"模板 '{name}' 已更新并重新加载。"
else:
message = f"模板 '{name}' 已更新。"
except ValueError as exc:
raise T2iServiceError(str(exc), 400) from exc
except Exception as exc:
raise T2iServiceError(str(exc)) from exc
return {"name": name}, message
def delete_template(self, name: str) -> None:
name = name.strip()
try:
self.manager.delete_template(name)
except FileNotFoundError as exc:
raise T2iServiceError("Template not found.", 404) from exc
except ValueError as exc:
raise T2iServiceError(str(exc), 400) from exc
except Exception as exc:
raise T2iServiceError(str(exc)) from exc
async def set_active_template(self, name: str | None) -> str:
if not name:
raise T2iServiceError("模板名称(name)不能为空。", 400)
try:
self.manager.get_template(name)
await self.sync_active_template_to_all_configs(name)
except FileNotFoundError as exc:
raise T2iServiceError(f"模板 '{name}' 不存在,无法应用。", 404) from exc
except Exception as exc:
logger.error("Error in set_active_template", exc_info=True)
raise T2iServiceError(str(exc)) from exc
return f"模板 '{name}' 已成功应用。"
async def reset_default_template(self) -> str:
try:
self.manager.reset_default_template()
await self.sync_active_template_to_all_configs("base")
except FileNotFoundError as exc:
raise T2iServiceError(str(exc), 404) from exc
except Exception as exc:
logger.error("Error in reset_default_template", exc_info=True)
raise T2iServiceError(str(exc)) from exc
return "Default template has been reset and activated."