47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
"""
|
|
Streaming auth.
|
|
"""
|
|
|
|
import structlog
|
|
from fastapi import WebSocket
|
|
from websockets.exceptions import ConnectionClosedOK
|
|
|
|
from skyvern.forge.sdk.services.org_auth_service import get_current_org
|
|
|
|
LOG = structlog.get_logger()
|
|
|
|
|
|
async def auth(apikey: str | None, token: str | None, websocket: WebSocket) -> str | None:
|
|
"""
|
|
Accepts the websocket connection.
|
|
|
|
Authenticates the user; cannot proceed with WS connection if an organization_id cannot be
|
|
determined.
|
|
"""
|
|
|
|
try:
|
|
await websocket.accept()
|
|
if not token and not apikey:
|
|
await websocket.close(code=1002)
|
|
return None
|
|
except ConnectionClosedOK:
|
|
LOG.info("WebSocket connection closed cleanly.")
|
|
return None
|
|
|
|
try:
|
|
organization = await get_current_org(x_api_key=apikey, authorization=token)
|
|
organization_id = organization.organization_id
|
|
|
|
if not organization_id:
|
|
await websocket.close(code=1002)
|
|
return None
|
|
except Exception:
|
|
LOG.exception("Error occurred while retrieving organization information.")
|
|
try:
|
|
await websocket.close(code=1002)
|
|
except ConnectionClosedOK:
|
|
LOG.info("WebSocket connection closed due to invalid credentials.")
|
|
return None
|
|
|
|
return organization_id
|