mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-07-22 11:51:04 +02:00
* ViciDial Working * feat(telephony): add FreeSWITCH provider to upstream-PBX seam Generalize the upstream-PBX capture and control paths to dispatch by provider. FreeSWITCH bridges in with X-PBX-* headers and is driven over the Event Socket Library (uuid_kill / uuid_transfer) by the channel UUID, alongside the existing VICIdial ra_call_control path. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * add vici specific configs * feat(telephony): env-based VICIdial config + address3 post-call routing Move VICIdial agent/non-agent API and FreeSWITCH ESL connection settings out of hardcoded POC values into environment variables so the same image works against a PBX on another server. Add VICIdial update_lead forwarding: X-VICI-UPDATE-LEAD_* extracted variables are mapped to lead columns and pushed via the non-agent API before a transfer, with reserved API-control params dropped. Add hardcoded address3 disposition routing (Y/N -> in-group transfer, else hang up) and a synchronous final variable extraction so the transfer path sees the freshest conversation state. Skip upstream_pbx capture on non-PJSIP channels to avoid Asterisk 500s. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * chore: run formatter * feat: make vici configurable from UI * chore: clean up PR * fix: incorporate review comments * chore: incorporate review comments * chore: generate client * chore: incporporate review comments * chore: incorporate review comments --------- Co-authored-by: Dograh POC <payment@dograh.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
72 lines
2.2 KiB
Python
72 lines
2.2 KiB
Python
from inspect import isawaitable
|
|
|
|
from loguru import logger
|
|
from pydantic import ValidationError
|
|
|
|
from api.db import db_client
|
|
from api.enums import OrganizationConfigurationKey
|
|
from api.schemas.organization_preferences import OrganizationPreferences
|
|
|
|
|
|
async def get_organization_preferences(
|
|
organization_id: int | None,
|
|
db=None,
|
|
) -> OrganizationPreferences:
|
|
if organization_id is None:
|
|
return OrganizationPreferences()
|
|
|
|
db = db or db_client
|
|
row = await _get_configuration(
|
|
db,
|
|
organization_id,
|
|
OrganizationConfigurationKey.ORGANIZATION_PREFERENCES.value,
|
|
)
|
|
if row is None:
|
|
row = await _get_configuration(
|
|
db,
|
|
organization_id,
|
|
OrganizationConfigurationKey.MODEL_CONFIGURATION_PREFERENCES.value,
|
|
)
|
|
return _parse_preferences(row.value if row is not None else None, organization_id)
|
|
|
|
|
|
async def upsert_organization_preferences(
|
|
organization_id: int,
|
|
preferences: OrganizationPreferences,
|
|
) -> OrganizationPreferences:
|
|
await db_client.upsert_configuration(
|
|
organization_id,
|
|
OrganizationConfigurationKey.ORGANIZATION_PREFERENCES.value,
|
|
preferences.model_dump(mode="json", exclude_none=True),
|
|
)
|
|
return preferences
|
|
|
|
|
|
async def external_pbx_integrations_enabled(
|
|
organization_id: int | None,
|
|
db=None,
|
|
) -> bool:
|
|
"""Return whether the organization opted into external-PBX integrations."""
|
|
|
|
preferences = await get_organization_preferences(organization_id, db=db)
|
|
return preferences.external_pbx_integrations_enabled
|
|
|
|
|
|
async def _get_configuration(db, organization_id: int, key: str):
|
|
row = db.get_configuration(organization_id, key)
|
|
if isawaitable(row):
|
|
row = await row
|
|
return row
|
|
|
|
|
|
def _parse_preferences(value, organization_id: int) -> OrganizationPreferences:
|
|
if not value or not isinstance(value, dict):
|
|
return OrganizationPreferences()
|
|
try:
|
|
return OrganizationPreferences.model_validate(value)
|
|
except ValidationError as exc:
|
|
logger.warning(
|
|
"Invalid organization preferences for organization "
|
|
f"{organization_id}: {exc}. Returning defaults."
|
|
)
|
|
return OrganizationPreferences()
|