Spaces:
Paused
Paused
File size: 19,028 Bytes
4efde5d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 |
from fastapi import APIRouter, HTTPException, Depends
from typing import List, Optional, Dict, Any
from pydantic import BaseModel, validator
import urllib.parse
from utils.logger import logger
from utils.auth_utils import get_current_user_id_from_jwt
from services.supabase import DBConnection
from .credential_service import (
get_credential_service
)
from .profile_service import (
get_profile_service,
ProfileAccessDeniedError
)
from .utils import validate_config_not_empty, decode_mcp_qualified_name, extract_config_keys
router = APIRouter()
db: Optional[DBConnection] = None
class StoreCredentialRequest(BaseModel):
mcp_qualified_name: str
display_name: str
config: Dict[str, Any]
@validator('config')
def validate_config_not_empty_field(cls, v):
return validate_config_not_empty(v)
class StoreCredentialProfileRequest(BaseModel):
mcp_qualified_name: str
profile_name: str
display_name: str
config: Dict[str, Any]
is_default: bool = False
@validator('config')
def validate_config_not_empty_field(cls, v):
return validate_config_not_empty(v)
class BulkDeleteProfilesRequest(BaseModel):
profile_ids: List[str]
class CredentialResponse(BaseModel):
credential_id: str
mcp_qualified_name: str
display_name: str
config_keys: List[str]
is_active: bool
created_at: Optional[str] = None
updated_at: Optional[str] = None
class CredentialProfileResponse(BaseModel):
profile_id: str
mcp_qualified_name: str
profile_name: str
display_name: str
config_keys: List[str]
is_active: bool
is_default: bool
created_at: Optional[str] = None
updated_at: Optional[str] = None
class BulkDeleteProfilesResponse(BaseModel):
success: bool
deleted_count: int
failed_profiles: List[str] = []
message: str
class ComposioProfileSummary(BaseModel):
profile_id: str
profile_name: str
display_name: str
toolkit_slug: str
toolkit_name: str
is_connected: bool
is_default: bool
created_at: str
has_mcp_url: bool
class ComposioToolkitGroup(BaseModel):
toolkit_slug: str
toolkit_name: str
icon_url: Optional[str] = None
profiles: List[ComposioProfileSummary]
class ComposioCredentialsResponse(BaseModel):
success: bool
toolkits: List[ComposioToolkitGroup]
total_profiles: int
class ComposioMcpUrlResponse(BaseModel):
success: bool
mcp_url: str
profile_name: str
toolkit_name: str
warning: str
def initialize(database: DBConnection):
global db
db = database
@router.post("/credentials", response_model=CredentialResponse)
async def store_credential(
request: StoreCredentialRequest,
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
credential_service = get_credential_service(db)
credential_id = await credential_service.store_credential(
account_id=user_id,
mcp_qualified_name=request.mcp_qualified_name,
display_name=request.display_name,
config=request.config
)
credential = await credential_service.get_credential(user_id, request.mcp_qualified_name)
if not credential:
raise HTTPException(status_code=500, detail="Failed to retrieve stored credential")
return CredentialResponse(
credential_id=credential.credential_id,
mcp_qualified_name=credential.mcp_qualified_name,
display_name=credential.display_name,
config_keys=extract_config_keys(credential.config),
is_active=credential.is_active,
created_at=credential.created_at.isoformat() if credential.created_at else None,
updated_at=credential.updated_at.isoformat() if credential.updated_at else None
)
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except Exception as e:
logger.error(f"Error storing credential: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@router.get("/credentials", response_model=List[CredentialResponse])
async def get_user_credentials(
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
credential_service = get_credential_service(db)
credentials = await credential_service.get_user_credentials(user_id)
return [
CredentialResponse(
credential_id=cred.credential_id,
mcp_qualified_name=cred.mcp_qualified_name,
display_name=cred.display_name,
config_keys=extract_config_keys(cred.config),
is_active=cred.is_active,
created_at=cred.created_at.isoformat() if cred.created_at else None,
updated_at=cred.updated_at.isoformat() if cred.updated_at else None
)
for cred in credentials
]
except Exception as e:
logger.error(f"Error getting user credentials: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@router.delete("/credentials/{mcp_qualified_name:path}")
async def delete_credential(
mcp_qualified_name: str,
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
decoded_name = decode_mcp_qualified_name(mcp_qualified_name)
credential_service = get_credential_service(db)
success = await credential_service.delete_credential(user_id, decoded_name)
if not success:
raise HTTPException(status_code=404, detail="Credential not found")
return {"message": "Credential deleted successfully"}
except HTTPException:
raise
except Exception as e:
logger.error(f"Error deleting credential: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@router.post("/credential-profiles", response_model=CredentialProfileResponse)
async def store_credential_profile(
request: StoreCredentialProfileRequest,
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
profile_service = get_profile_service(db)
profile_id = await profile_service.store_profile(
account_id=user_id,
mcp_qualified_name=request.mcp_qualified_name,
profile_name=request.profile_name,
display_name=request.display_name,
config=request.config,
is_default=request.is_default
)
profile = await profile_service.get_profile(user_id, profile_id)
if not profile:
raise HTTPException(status_code=500, detail="Failed to retrieve stored profile")
return CredentialProfileResponse(
profile_id=profile.profile_id,
mcp_qualified_name=profile.mcp_qualified_name,
profile_name=profile.profile_name,
display_name=profile.display_name,
config_keys=extract_config_keys(profile.config),
is_active=profile.is_active,
is_default=profile.is_default,
created_at=profile.created_at.isoformat() if profile.created_at else None,
updated_at=profile.updated_at.isoformat() if profile.updated_at else None
)
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except Exception as e:
logger.error(f"Error storing credential profile: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@router.get("/credential-profiles", response_model=List[CredentialProfileResponse])
async def get_user_credential_profiles(
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
profile_service = get_profile_service(db)
profiles = await profile_service.get_all_user_profiles(user_id)
return [
CredentialProfileResponse(
profile_id=profile.profile_id,
mcp_qualified_name=profile.mcp_qualified_name,
profile_name=profile.profile_name,
display_name=profile.display_name,
config_keys=extract_config_keys(profile.config),
is_active=profile.is_active,
is_default=profile.is_default,
created_at=profile.created_at.isoformat() if profile.created_at else None,
updated_at=profile.updated_at.isoformat() if profile.updated_at else None
)
for profile in profiles
]
except Exception as e:
logger.error(f"Error getting user credential profiles: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@router.get("/credential-profiles/{mcp_qualified_name:path}", response_model=List[CredentialProfileResponse])
async def get_credential_profiles_for_mcp(
mcp_qualified_name: str,
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
decoded_name = decode_mcp_qualified_name(mcp_qualified_name)
profile_service = get_profile_service(db)
profiles = await profile_service.get_profiles(user_id, decoded_name)
return [
CredentialProfileResponse(
profile_id=profile.profile_id,
mcp_qualified_name=profile.mcp_qualified_name,
profile_name=profile.profile_name,
display_name=profile.display_name,
config_keys=extract_config_keys(profile.config),
is_active=profile.is_active,
is_default=profile.is_default,
created_at=profile.created_at.isoformat() if profile.created_at else None,
updated_at=profile.updated_at.isoformat() if profile.updated_at else None
)
for profile in profiles
]
except Exception as e:
logger.error(f"Error getting credential profiles for MCP: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@router.get("/credential-profiles/profile/{profile_id}", response_model=CredentialProfileResponse)
async def get_credential_profile(
profile_id: str,
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
profile_service = get_profile_service(db)
profile = await profile_service.get_profile(user_id, profile_id)
if not profile:
raise HTTPException(status_code=404, detail="Profile not found")
return CredentialProfileResponse(
profile_id=profile.profile_id,
mcp_qualified_name=profile.mcp_qualified_name,
profile_name=profile.profile_name,
display_name=profile.display_name,
config_keys=extract_config_keys(profile.config),
is_active=profile.is_active,
is_default=profile.is_default,
created_at=profile.created_at.isoformat() if profile.created_at else None,
updated_at=profile.updated_at.isoformat() if profile.updated_at else None
)
except ProfileAccessDeniedError:
raise HTTPException(status_code=403, detail="Access denied to profile")
except Exception as e:
logger.error(f"Error getting credential profile: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@router.put("/credential-profiles/{profile_id}/set-default")
async def set_default_credential_profile(
profile_id: str,
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
profile_service = get_profile_service(db)
success = await profile_service.set_default_profile(user_id, profile_id)
if not success:
raise HTTPException(status_code=404, detail="Profile not found")
return {"message": "Profile set as default successfully"}
except Exception as e:
logger.error(f"Error setting default profile: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@router.delete("/credential-profiles/{profile_id}")
async def delete_credential_profile(
profile_id: str,
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
profile_service = get_profile_service(db)
success = await profile_service.delete_profile(user_id, profile_id)
if not success:
raise HTTPException(status_code=404, detail="Profile not found")
return {"message": "Profile deleted successfully"}
except Exception as e:
logger.error(f"Error deleting profile: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@router.post("/credential-profiles/bulk-delete", response_model=BulkDeleteProfilesResponse)
async def bulk_delete_credential_profiles(
request: BulkDeleteProfilesRequest,
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
profile_service = get_profile_service(db)
deleted_count = 0
failed_profiles = []
for profile_id in request.profile_ids:
try:
success = await profile_service.delete_profile(user_id, profile_id)
if success:
deleted_count += 1
else:
failed_profiles.append(profile_id)
except Exception as e:
logger.error(f"Error deleting profile {profile_id}: {e}")
failed_profiles.append(profile_id)
return BulkDeleteProfilesResponse(
success=True,
deleted_count=deleted_count,
failed_profiles=failed_profiles,
message="Bulk deletion completed"
)
except Exception as e:
logger.error(f"Error performing bulk deletion: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@router.get("/composio-profiles", response_model=ComposioCredentialsResponse)
async def get_composio_profiles(
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
profile_service = get_profile_service(db)
from composio_integration.composio_profile_service import ComposioProfileService
composio_service = ComposioProfileService(db)
all_profiles = await profile_service.get_all_user_profiles(user_id)
composio_profiles = [
profile for profile in all_profiles
if profile.mcp_qualified_name.startswith('composio.')
]
from composio_integration.toolkit_service import ToolkitService
toolkit_service = ToolkitService()
toolkit_groups = {}
for profile in composio_profiles:
mcp_parts = profile.mcp_qualified_name.split('.')
if len(mcp_parts) >= 2:
toolkit_slug = mcp_parts[1]
toolkit_name = toolkit_slug.replace('_', ' ').title()
else:
config = profile.config
toolkit_slug = config.get('toolkit_slug', 'unknown')
toolkit_name = config.get('toolkit_name', toolkit_slug.title())
if toolkit_slug not in toolkit_groups:
try:
icon_url = await toolkit_service.get_toolkit_icon(toolkit_slug)
except:
icon_url = None
toolkit_groups[toolkit_slug] = {
'toolkit_slug': toolkit_slug,
'toolkit_name': toolkit_name,
'icon_url': icon_url,
'profiles': []
}
has_mcp_url = False
try:
mcp_url = await composio_service.get_mcp_url_for_runtime(profile.profile_id)
has_mcp_url = bool(mcp_url)
except:
has_mcp_url = False
profile_summary = ComposioProfileSummary(
profile_id=profile.profile_id,
profile_name=profile.profile_name,
display_name=profile.display_name,
toolkit_slug=toolkit_slug,
toolkit_name=toolkit_name,
is_connected=has_mcp_url,
is_default=profile.is_default,
created_at=profile.created_at.isoformat() if profile.created_at else "",
has_mcp_url=has_mcp_url
)
toolkit_groups[toolkit_slug]['profiles'].append(profile_summary)
toolkits = []
for group_data in toolkit_groups.values():
group_data['profiles'].sort(key=lambda p: p.created_at, reverse=True)
toolkits.append(ComposioToolkitGroup(**group_data))
toolkits.sort(key=lambda t: t.toolkit_name)
return ComposioCredentialsResponse(
success=True,
toolkits=toolkits,
total_profiles=len(composio_profiles)
)
except Exception as e:
logger.error(f"Error getting Composio profiles: {e}")
raise HTTPException(status_code=500, detail="Internal server error")
@router.get("/composio-profiles/{profile_id}/mcp-url", response_model=ComposioMcpUrlResponse)
async def get_composio_mcp_url(
profile_id: str,
user_id: str = Depends(get_current_user_id_from_jwt)
):
try:
from composio_integration.composio_profile_service import ComposioProfileService
composio_service = ComposioProfileService(db)
profile_service = get_profile_service(db)
profile = await profile_service.get_profile(user_id, profile_id)
if not profile:
raise HTTPException(status_code=404, detail="Profile not found")
if not profile.mcp_qualified_name.startswith('composio.'):
raise HTTPException(status_code=400, detail="Not a Composio profile")
try:
mcp_url = await composio_service.get_mcp_url_for_runtime(profile_id)
config = await composio_service.get_profile_config(profile_id)
toolkit_name = config.get('toolkit_name', 'Unknown')
except Exception as e:
logger.error(f"Failed to decrypt Composio profile {profile_id}: {e}")
raise HTTPException(status_code=404, detail="MCP URL not found or could not be decrypted")
return ComposioMcpUrlResponse(
success=True,
mcp_url=mcp_url,
profile_name=profile.profile_name,
toolkit_name=toolkit_name,
warning="This MCP URL contains sensitive authentication information. Never share it publicly or include it in code repositories. Anyone with access to this URL can perform actions on your behalf."
)
except HTTPException:
raise
except Exception as e:
logger.error(f"Error getting Composio MCP URL: {e}")
raise HTTPException(status_code=500, detail="Internal server error") |