mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
from abc import ABC, abstractmethod
|
|
from typing import Any, Dict
|
|
|
|
from loguru import logger
|
|
|
|
|
|
class CampaignSourceSyncService(ABC):
|
|
"""Base class for campaign data source synchronization"""
|
|
|
|
@abstractmethod
|
|
async def sync_source_data(self, campaign_id: int) -> int:
|
|
"""
|
|
Fetches data from source and creates queued_runs
|
|
Each record gets a unique source_uuid based on source type
|
|
Returns: number of records synced
|
|
"""
|
|
pass
|
|
|
|
@abstractmethod
|
|
async def validate_source_schema(self, source_config: Dict[str, Any]) -> bool:
|
|
"""Validates required fields exist in source"""
|
|
pass
|
|
|
|
async def get_source_credentials(
|
|
self, organization_id: int, source_type: str
|
|
) -> Dict[str, Any]:
|
|
"""Gets OAuth tokens or API credentials via Nango"""
|
|
# This would be implemented to work with Nango service
|
|
# For now, returning placeholder
|
|
logger.info(
|
|
f"Getting credentials for org {organization_id}, source {source_type}"
|
|
)
|
|
return {}
|
|
|
|
|
|
def get_sync_service(source_type: str) -> CampaignSourceSyncService:
|
|
"""Returns appropriate sync service based on source type"""
|
|
from .sources.google_sheets import GoogleSheetsSyncService
|
|
|
|
services = {
|
|
"google-sheet": GoogleSheetsSyncService,
|
|
# Add more as needed: "hubspot": HubSpotSyncService,
|
|
}
|
|
|
|
service_class = services.get(source_type)
|
|
if not service_class:
|
|
raise ValueError(f"Unknown source type: {source_type}")
|
|
|
|
return service_class()
|