- Remove plugin/router assumptions - Implement core business functions for service management - Follow correct module development specification - Provide functions for Sage system integration
66 lines
2.2 KiB
Python
66 lines
2.2 KiB
Python
"""
|
|
hermes-web-cli module - Business logic for Hermes multi-service management.
|
|
|
|
This module provides the core functionality for managing multiple Hermes Service instances.
|
|
It includes database operations, HTTP client for remote services, and utility functions.
|
|
|
|
The module follows the standard Hermes module development specification:
|
|
- Database tables: hermes_services, hermes_service_sessions
|
|
- CRUD operations defined in json/ directory
|
|
- Static files in wwwroot/ directory (automatically served)
|
|
"""
|
|
|
|
import json
|
|
import uuid
|
|
from typing import Dict, List, Optional
|
|
from urllib.parse import urljoin
|
|
|
|
# Database operations
|
|
def get_all_services() -> List[Dict]:
|
|
"""Get all registered Hermes services from database."""
|
|
# Implementation will use sqlor-database-module
|
|
pass
|
|
|
|
def create_service(name: str, url: str, description: str = "") -> Dict:
|
|
"""Create a new Hermes service registration."""
|
|
# Implementation will use sqlor-database-module
|
|
pass
|
|
|
|
def delete_service(service_id: str) -> bool:
|
|
"""Delete a Hermes service registration."""
|
|
# Implementation will use sqlor-database-module
|
|
pass
|
|
|
|
def test_service_connection(url: str) -> bool:
|
|
"""Test connection to a Hermes service endpoint."""
|
|
# Implementation will use HTTP client
|
|
pass
|
|
|
|
# Session management
|
|
def create_session(service_id: str, user_message: str) -> str:
|
|
"""Create a new session with a Hermes service."""
|
|
# Implementation will create session record and call remote service
|
|
pass
|
|
|
|
def send_message_to_service(service_id: str, session_id: str, message: str) -> Dict:
|
|
"""Send a message to a Hermes service and get response."""
|
|
# Implementation will call remote service API
|
|
pass
|
|
|
|
# Utility functions for web scripts (.ui, .dspy)
|
|
def validate_service_url(url: str) -> bool:
|
|
"""Validate if a URL is a valid Hermes service endpoint."""
|
|
return url.startswith(('http://', 'https://'))
|
|
|
|
def generate_session_id() -> str:
|
|
"""Generate a unique session ID."""
|
|
return str(uuid.uuid4())
|
|
|
|
def get_service_config(service_id: str) -> Optional[Dict]:
|
|
"""Get service configuration by ID."""
|
|
# Implementation will query database
|
|
pass
|
|
|
|
# Module metadata
|
|
MODULE_NAME = "hermes-web-cli"
|
|
MODULE_VERSION = "0.1.0" |