Files
labFusion/services/service-adapters
GSRN f87603967a
Some checks failed
LabFusion CI/CD Pipeline / service-adapters (push) Failing after 27s
Docker Build and Push / build-and-push (push) Failing after 41s
Integration Tests / integration-tests (push) Failing after 52s
Integration Tests / performance-tests (push) Has been skipped
LabFusion CI/CD Pipeline / api-gateway (push) Failing after 1m22s
Service Adapters (Python FastAPI) / test (3.1) (push) Failing after 13s
LabFusion CI/CD Pipeline / api-docs (push) Successful in 1m47s
Service Adapters (Python FastAPI) / test (3.11) (push) Failing after 25s
LabFusion CI/CD Pipeline / frontend (push) Failing after 1m52s
LabFusion CI/CD Pipeline / integration-tests (push) Has been skipped
Service Adapters (Python FastAPI) / test (3.12) (push) Failing after 28s
Service Adapters (Python FastAPI) / test (3.9) (push) Failing after 28s
Service Adapters (Python FastAPI) / build (push) Has been skipped
fix: Update SonarQube integration in CI workflows to use pysonar
### Summary of Changes
- Replaced `sonar-scanner` with `pysonar` for SonarQube analysis in CI workflows for Service Adapters.
- Updated installation instructions and command parameters for consistency across workflows.

### Expected Results
- Improved compatibility and maintainability of SonarQube integration in CI configurations.
2025-09-15 20:53:41 +02:00
..
2025-09-11 22:08:12 +02:00
2025-09-11 22:08:12 +02:00

Service Adapters

Python FastAPI service for integrating with external homelab services.

Purpose

  • Integrate with Home Assistant, Frigate, Immich, n8n
  • Transform external service data into standardized format
  • Publish events to the message bus
  • Provide unified API for service data

Technology Stack

  • Language: Python 3.11
  • Framework: FastAPI
  • Port: 8000
  • Message Bus: Redis
  • Documentation: OpenAPI/Swagger

Features

  • Home Assistant entity integration
  • Frigate event processing
  • Immich asset management
  • n8n workflow triggers
  • Event publishing to Redis
  • Comprehensive OpenAPI documentation
  • Modular architecture for maintainability

Project Structure

service-adapters/
├── main.py                 # FastAPI application (40 lines)
├── models/
│   ├── schemas.py          # Pydantic models
├── routes/
│   ├── general.py          # Root, health, services
│   ├── home_assistant.py   # HA integration
│   ├── frigate.py          # Frigate integration
│   ├── immich.py           # Immich integration
│   └── events.py           # Event management
└── services/
    ├── config.py           # Service configurations
    └── redis_client.py     # Redis connection

API Endpoints

  • GET / - API information
  • GET /health - Health check
  • GET /services - Service status
  • GET /home-assistant/entities - HA entities
  • GET /frigate/events - Frigate events
  • GET /immich/assets - Immich assets
  • POST /publish-event - Publish events
  • GET /events - Retrieve events

Development Status

Complete - Core functionality implemented with modular architecture