mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-09-18 15:48:04 +02:00
103 lines
3.0 KiB
Python
103 lines
3.0 KiB
Python
"""Singleton that owns 9Router process lifecycle and client access.
|
|
|
|
All interaction with 9Router from the subscriptions subapp goes through
|
|
NineRouter.get() so that mutable state (subprocess handle, background
|
|
ensure-task) lives in one place.
|
|
"""
|
|
|
|
import asyncio
|
|
from typing import ClassVar, Optional
|
|
|
|
from typeguard import typechecked
|
|
|
|
from backend.apps.subscriptions.NineRouter.NineRouterProcess.NineRouterProcess import (
|
|
is_running as _is_running,
|
|
ensure_running as _ensure_running,
|
|
stop as _stop,
|
|
)
|
|
from backend.apps.subscriptions.NineRouter.NineRouterClient import (
|
|
get_providers as _get_providers,
|
|
get_models as _get_models,
|
|
start_oauth as _start_oauth,
|
|
poll_oauth as _poll_oauth,
|
|
exchange_oauth as _exchange_oauth,
|
|
disconnect_provider as _disconnect_provider,
|
|
)
|
|
|
|
|
|
class NineRouter:
|
|
_instance: ClassVar[Optional["NineRouter"]] = None
|
|
|
|
def __init__(self) -> None:
|
|
self._ensure_task: Optional[asyncio.Task] = None
|
|
|
|
@classmethod
|
|
def get(cls) -> "NineRouter":
|
|
if cls._instance is None:
|
|
cls._instance = cls()
|
|
return cls._instance
|
|
|
|
# -- lifecycle -------------------------------------------------------------
|
|
|
|
@typechecked
|
|
def is_running(self) -> bool:
|
|
return _is_running()
|
|
|
|
@typechecked
|
|
async def ensure_running(self) -> None:
|
|
await _ensure_running()
|
|
|
|
@typechecked
|
|
def stop(self) -> None:
|
|
_stop()
|
|
|
|
@typechecked
|
|
async def ensure_running_background(self) -> None:
|
|
"""Kick off ensure_running as a background task if not already in flight."""
|
|
if self._ensure_task is None or self._ensure_task.done():
|
|
self._ensure_task = asyncio.create_task(_ensure_running())
|
|
|
|
@typechecked
|
|
def cancel_ensure_task(self) -> None:
|
|
if self._ensure_task and not self._ensure_task.done():
|
|
self._ensure_task.cancel()
|
|
|
|
# -- client ----------------------------------------------------------------
|
|
|
|
@typechecked
|
|
async def get_providers(self) -> list[dict] | dict:
|
|
return await _get_providers()
|
|
|
|
@typechecked
|
|
async def get_models(self) -> list[dict]:
|
|
return await _get_models()
|
|
|
|
@typechecked
|
|
async def start_oauth(self, provider: str) -> dict:
|
|
return await _start_oauth(provider)
|
|
|
|
@typechecked
|
|
async def poll_oauth(
|
|
self,
|
|
provider: str,
|
|
device_code: str,
|
|
code_verifier: str | None = None,
|
|
extra_data: dict | None = None,
|
|
) -> dict:
|
|
return await _poll_oauth(provider, device_code, code_verifier=code_verifier, extra_data=extra_data)
|
|
|
|
@typechecked
|
|
async def exchange_oauth(
|
|
self,
|
|
provider: str,
|
|
code: str,
|
|
redirect_uri: str,
|
|
code_verifier: str,
|
|
state: str = "",
|
|
) -> dict:
|
|
return await _exchange_oauth(provider, code, redirect_uri, code_verifier, state)
|
|
|
|
@typechecked
|
|
async def disconnect_provider(self, provider_id: str) -> bool:
|
|
return await _disconnect_provider(provider_id)
|