Spaces:
Sleeping
Sleeping
File size: 38,871 Bytes
90c6b42 | 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 | """
ATOM Enterprise API Routes
Advanced enterprise-grade API endpoints with comprehensive automation integration
"""
import asyncio
from datetime import datetime, timedelta, timezone
from functools import wraps
import json
import logging
import os
from typing import Any, Dict, List, Optional, Union
from flask import Blueprint, current_app, jsonify, request
from flask_jwt_extended import create_access_token, get_jwt, get_jwt_identity, jwt_required
from loguru import logger
# Import enterprise services
try:
from ai_enhanced_service import (
AIModelType,
AIRequest,
AIResponse,
AIServiceType,
AITaskType,
ai_enhanced_service,
)
from atom_ai_integration import atom_ai_integration
from atom_discord_integration import atom_discord_integration
from atom_enterprise_security_service import (
AuditEventType,
ComplianceReport,
ComplianceStandard,
SecurityAudit,
SecurityLevel,
SecurityPolicy,
ThreatDetection,
ThreatType,
atom_enterprise_security_service,
)
from atom_enterprise_unified_service import (
AutomationTriggerType,
ComplianceAutomation,
ComplianceWorkflowType,
EnterpriseServiceType,
EnterpriseWorkflow,
SecurityWorkflowAction,
WorkflowSecurityLevel,
atom_enterprise_unified_service,
)
from atom_google_chat_integration import atom_google_chat_integration
from atom_ingestion_pipeline import AtomIngestionPipeline
from atom_memory_service import AtomMemoryService
from atom_search_service import AtomSearchService
from atom_slack_integration import atom_slack_integration
from atom_teams_integration import atom_teams_integration
from atom_workflow_automation_service import (
AutomationActionType,
AutomationConditionType,
AutomationExecution,
AutomationPriority,
AutomationStatus,
WorkflowAutomation,
WorkflowAutomationType,
atom_workflow_automation_service,
)
from atom_workflow_service import AtomWorkflowService
except ImportError as e:
logger.warning(f"Enterprise services not available: {e}")
atom_enterprise_security_service = None
atom_enterprise_unified_service = None
atom_workflow_automation_service = None
AtomWorkflowService = None
AtomMemoryService = None
AtomSearchService = None
AtomIngestionPipeline = None
ai_enhanced_service = None
atom_ai_integration = None
# Create enterprise API blueprint
enterprise_bp = Blueprint('enterprise_api', __name__, url_prefix='/api/enterprise')
# Enterprise feature flag
ENTERPRISE_ENABLED = os.getenv("ENTERPRISE_ENABLED", "true").lower() == "true"
# Mock service for health check detection
class AtomEnterpriseServiceMock:
def __init__(self):
self.enterprise_key = os.getenv("ENTERPRISE_KEY")
if not ENTERPRISE_ENABLED:
logger.warning("Enterprise features are disabled via ENTERPRISE_ENABLED flag")
elif not self.enterprise_key or self.enterprise_key == "mock_enterprise_key":
logger.warning("ENTERPRISE_KEY not configured - enterprise features will be limited")
# Enterprise configuration validation
def validate_enterprise_config():
"""Validate enterprise configuration"""
required_vars = [
'ENTERPRISE_ENCRYPTION_KEY',
'ENTERPRISE_JWT_SECRET',
'ENTERPRISE_SESSION_SECRET',
'ENTERPRISE_DATABASE_URI'
]
missing_vars = []
for var in required_vars:
if not os.getenv(var):
missing_vars.append(var)
if missing_vars:
logger.error(f"Missing required enterprise environment variables: {missing_vars}")
return False
return True
# Enterprise decorators
def require_enterprise_role(required_role: str):
"""Decorator to require specific enterprise role"""
def decorator(f):
@wraps(f)
@jwt_required()
def decorated_function(*args, **kwargs):
claims = get_jwt()
user_roles = claims.get('roles', [])
if required_role not in user_roles:
return {
'error': 'Insufficient permissions',
'required_role': required_role,
'user_roles': user_roles
}, 403
return f(*args, **kwargs)
return decorated_function
return decorator
def require_security_level(required_level: SecurityLevel):
"""Decorator to require specific security level"""
def decorator(f):
@wraps(f)
@jwt_required()
def decorated_function(*args, **kwargs):
claims = get_jwt()
user_security_level = claims.get('security_level', 'basic')
# Convert to SecurityLevel enum
user_level = SecurityLevel(user_security_level)
required = SecurityLevel(required_level)
# Check hierarchy
level_hierarchy = {
SecurityLevel.BASIC: 0,
SecurityLevel.STANDARD: 1,
SecurityLevel.ADVANCED: 2,
SecurityLevel.ENTERPRISE: 3,
SecurityLevel.GOVERNMENT: 4
}
if level_hierarchy[user_level] < level_hierarchy[required]:
return {
'error': 'Insufficient security level',
'required_level': required_level.value,
'user_level': user_level.value
}, 403
return f(*args, **kwargs)
return decorated_function
return decorator
# Utility functions
def create_enterprise_response(ok: bool, data: Any = None, error: str = None,
message: str = None, metadata: Dict = None) -> Dict[str, Any]:
"""Create standardized enterprise API response"""
response = {
'ok': ok,
'timestamp': datetime.utcnow().isoformat(),
'api_version': '6.0.0',
'service': 'Enterprise Services'
}
if ok:
if data is not None:
response['data'] = data
if message:
response['message'] = message
if metadata:
response['metadata'] = metadata
else:
response['error'] = error or 'Unknown error occurred'
return response
def get_enterprise_request_data() -> Dict[str, Any]:
"""Get and validate enterprise request data"""
try:
data = request.get_json() or {}
user_id = data.get('user_id') or get_jwt_identity() if get_jwt_identity() else 'enterprise-user'
data['user_id'] = user_id
return data
except Exception as e:
logger.error(f"Error parsing enterprise request data: {e}")
return {}
# Enterprise Authentication
@enterprise_bp.route('/auth/login', methods=['POST'])
async def enterprise_login():
"""Enterprise authentication with security checks"""
try:
data = get_enterprise_request_data()
username = data.get('username')
password = data.get('password')
remember = data.get('remember', False)
security_level = data.get('security_level', 'standard')
if not all([username, password]):
return create_enterprise_response(False, error="username and password are required"), 400
if not validate_enterprise_config():
return create_enterprise_response(False, error="Enterprise configuration validation failed"), 500
# Validate password strength
if atom_enterprise_security_service:
password_validation = await atom_enterprise_security_service.validate_password(password)
if not password_validation['valid']:
return create_enterprise_response(False, error=f"Password validation failed: {password_validation['issues']}"), 400
# Verify credentials (mock implementation)
user_data = await _verify_enterprise_credentials(username, password)
if not user_data:
# Log failed login attempt
if atom_enterprise_security_service:
await atom_enterprise_security_service.audit_event({
'event_type': AuditEventType.ACCESS_DENIED.value,
'user_id': username,
'resource': 'enterprise_auth',
'action': 'login',
'result': 'failed',
'ip_address': request.remote_addr,
'user_agent': request.headers.get('User-Agent', ''),
'metadata': {'reason': 'invalid_credentials'}
})
return create_enterprise_response(False, error="Invalid credentials"), 401
# Create enterprise session
session_data = {
'user_id': user_data['user_id'],
'username': user_data['username'],
'roles': user_data['roles'],
'security_level': user_data['security_level'],
'permissions': user_data['permissions'],
'login_time': datetime.utcnow().isoformat(),
'ip_address': request.remote_addr,
'user_agent': request.headers.get('User-Agent', '')
}
# Create JWT token with enterprise claims
additional_claims = {
'roles': user_data['roles'],
'security_level': user_data['security_level'],
'permissions': user_data['permissions'],
'enterprise': True
}
if remember:
expires_delta = timedelta(days=7)
else:
expires_delta = timedelta(hours=1)
access_token = create_access_token(
identity=user_data['user_id'],
additional_claims=additional_claims,
expires_delta=expires_delta
)
# Log successful login
if atom_enterprise_security_service:
await atom_enterprise_security_service.audit_event({
'event_type': AuditEventType.USER_LOGIN.value,
'user_id': user_data['user_id'],
'resource': 'enterprise_auth',
'action': 'login',
'result': 'success',
'ip_address': request.remote_addr,
'user_agent': request.headers.get('User-Agent', ''),
'metadata': {'remember': remember, 'security_level': security_level}
})
return create_enterprise_response(
True,
data={
'access_token': access_token,
'user': {
'id': user_data['user_id'],
'username': user_data['username'],
'roles': user_data['roles'],
'security_level': user_data['security_level'],
'permissions': user_data['permissions']
},
'session': session_data,
'expires_in': expires_delta.total_seconds()
},
message="Enterprise authentication successful"
)
except Exception as e:
logger.error(f"Enterprise login error: {e}")
return create_enterprise_response(False, error=str(e)), 500
# Workflow Automation Management
@enterprise_bp.route('/automation/create', methods=['POST'])
@jwt_required()
@require_enterprise_role('automation_admin')
@require_security_level(SecurityLevel.ENTERPRISE)
async def create_workflow_automation():
"""Create workflow automation"""
try:
data = get_enterprise_request_data()
automation_name = data.get('name')
description = data.get('description')
automation_type = data.get('automation_type')
priority = data.get('priority')
conditions = data.get('conditions', [])
actions = data.get('actions', [])
schedule = data.get('schedule')
timeout = data.get('timeout', 3600)
retry_policy = data.get('retry_policy', {
'max_retries': 3,
'backoff': 'exponential'
})
notification_rules = data.get('notification_rules', [])
user_id = data.get('user_id')
if not all([automation_name, description, automation_type, priority]):
return create_enterprise_response(False, error="name, description, automation_type, and priority are required"), 400
if not atom_workflow_automation_service:
return create_enterprise_response(False, error="Workflow automation service not available"), 503
# Create automation
automation_data = {
'name': automation_name,
'description': description,
'automation_type': automation_type,
'priority': priority,
'conditions': conditions,
'actions': actions,
'schedule': schedule,
'timeout': timeout,
'retry_policy': retry_policy,
'notification_rules': notification_rules,
'metadata': data.get('metadata', {})
}
result = await atom_workflow_automation_service.create_automation(automation_data, user_id)
if result.get('ok'):
return create_enterprise_response(
True,
data=result,
message="Workflow automation created successfully"
)
else:
return create_enterprise_response(False, error=result.get('error')), 400
except Exception as e:
logger.error(f"Create workflow automation error: {e}")
return create_enterprise_response(False, error=str(e)), 500
@enterprise_bp.route('/automation/execute', methods=['POST'])
@jwt_required()
@require_security_level(SecurityLevel.STANDARD)
async def execute_workflow_automation():
"""Execute workflow automation"""
try:
data = get_enterprise_request_data()
automation_id = data.get('automation_id')
trigger_context = data.get('trigger_context', {})
triggered_by = data.get('triggered_by')
user_id = data.get('user_id')
if not automation_id:
return create_enterprise_response(False, error="automation_id is required"), 400
if not atom_workflow_automation_service:
return create_enterprise_response(False, error="Workflow automation service not available"), 503
# Execute automation
result = await atom_workflow_automation_service.execute_automation(
automation_id=automation_id,
trigger_context=trigger_context,
triggered_by=triggered_by
)
if result.get('ok'):
return create_enterprise_response(
True,
data=result,
message="Workflow automation executed successfully"
)
else:
return create_enterprise_response(False, error=result.get('error')), 400
except Exception as e:
logger.error(f"Execute workflow automation error: {e}")
return create_enterprise_response(False, error=str(e)), 500
@enterprise_bp.route('/automation/security', methods=['POST'])
@jwt_required()
@require_enterprise_role('security_admin')
@require_security_level(SecurityLevel.ENTERPRISE)
async def create_security_automation():
"""Create security automation"""
try:
data = get_enterprise_request_data()
security_event = data.get('security_event')
automation_config = data.get('automation_config', {})
user_id = data.get('user_id')
if not security_event:
return create_enterprise_response(False, error="security_event is required"), 400
if not atom_workflow_automation_service:
return create_enterprise_response(False, error="Workflow automation service not available"), 503
# Create security automation
result = await atom_workflow_automation_service.create_security_automation(security_event, automation_config)
if result.get('ok'):
return create_enterprise_response(
True,
data=result,
message="Security automation created successfully"
)
else:
return create_enterprise_response(False, error=result.get('error')), 400
except Exception as e:
logger.error(f"Create security automation error: {e}")
return create_enterprise_response(False, error=str(e)), 500
@enterprise_bp.route('/automation/compliance', methods=['POST'])
@jwt_required()
@require_enterprise_role('compliance_admin')
@require_security_level(SecurityLevel.ENTERPRISE)
async def create_compliance_automation():
"""Create compliance automation"""
try:
data = get_enterprise_request_data()
compliance_violation = data.get('compliance_violation')
automation_config = data.get('automation_config', {})
user_id = data.get('user_id')
if not compliance_violation:
return create_enterprise_response(False, error="compliance_violation is required"), 400
if not atom_workflow_automation_service:
return create_enterprise_response(False, error="Workflow automation service not available"), 503
# Create compliance automation
result = await atom_workflow_automation_service.create_compliance_automation(compliance_violation, automation_config)
if result.get('ok'):
return create_enterprise_response(
True,
data=result,
message="Compliance automation created successfully"
)
else:
return create_enterprise_response(False, error=result.get('error')), 400
except Exception as e:
logger.error(f"Create compliance automation error: {e}")
return create_enterprise_response(False, error=str(e)), 500
@enterprise_bp.route('/automation/integration', methods=['POST'])
@jwt_required()
@require_enterprise_role('integration_admin')
@require_security_level(SecurityLevel.ADVANCED)
async def create_integration_automation():
"""Create integration automation"""
try:
data = get_enterprise_request_data()
platform = data.get('platform')
integration_config = data.get('integration_config', {})
user_id = data.get('user_id')
if not platform:
return create_enterprise_response(False, error="platform is required"), 400
if not atom_workflow_automation_service:
return create_enterprise_response(False, error="Workflow automation service not available"), 503
# Create integration automation
result = await atom_workflow_automation_service.create_integration_automation(platform, integration_config)
if result.get('ok'):
return create_enterprise_response(
True,
data=result,
message="Integration automation created successfully"
)
else:
return create_enterprise_response(False, error=result.get('error')), 400
except Exception as e:
logger.error(f"Create integration automation error: {e}")
return create_enterprise_response(False, error=str(e)), 500
@enterprise_bp.route('/automation/list', methods=['POST'])
@jwt_required()
@require_security_level(SecurityLevel.STANDARD)
async def get_automations():
"""Get workflow automations"""
try:
data = get_enterprise_request_data()
automation_type = data.get('automation_type')
priority = data.get('priority')
status = data.get('status')
created_by = data.get('created_by')
user_id = data.get('user_id')
if not atom_workflow_automation_service:
return create_enterprise_response(False, error="Workflow automation service not available"), 503
# Get automations
filters = {
'automation_type': automation_type,
'priority': priority,
'status': status,
'created_by': created_by
}
automations = await atom_workflow_automation_service.get_automations(filters)
return create_enterprise_response(
True,
data={
'automations': automations,
'total_count': len(automations),
'filters': filters
},
message="Automations retrieved successfully"
)
except Exception as e:
logger.error(f"Get automations error: {e}")
return create_enterprise_response(False, error=str(e)), 500
@enterprise_bp.route('/automation/executions', methods=['POST'])
@jwt_required()
@require_security_level(SecurityLevel.STANDARD)
async def get_automation_executions():
"""Get automation executions"""
try:
data = get_enterprise_request_data()
automation_id = data.get('automation_id')
status = data.get('status')
triggered_by = data.get('triggered_by')
date_from = data.get('date_from')
date_to = data.get('date_to')
if not atom_workflow_automation_service:
return create_enterprise_response(False, error="Workflow automation service not available"), 503
# Get executions
filters = {
'automation_id': automation_id,
'status': status,
'triggered_by': triggered_by,
'date_from': date_from,
'date_to': date_to
}
executions = await atom_workflow_automation_service.get_automation_executions(automation_id, filters)
return create_enterprise_response(
True,
data={
'executions': executions,
'total_count': len(executions),
'filters': filters
},
message="Automation executions retrieved successfully"
)
except Exception as e:
logger.error(f"Get automation executions error: {e}")
return create_enterprise_response(False, error=str(e)), 500
@enterprise_bp.route('/automation/metrics', methods=['POST'])
@jwt_required()
@require_security_level(SecurityLevel.ADVANCED)
async def get_automation_metrics():
"""Get automation metrics"""
try:
data = get_enterprise_request_data()
time_range = data.get('time_range', 'last_30_days')
include_details = data.get('include_details', False)
if not atom_workflow_automation_service:
return create_enterprise_response(False, error="Workflow automation service not available"), 503
# Get automation metrics
metrics = await atom_workflow_automation_service.get_automation_metrics()
# Add additional details if requested
if include_details:
metrics['automations_by_type'] = {
'security': len([a for a in atom_workflow_automation_service.automations.values()
if a.automation_type == WorkflowAutomationType.SECURITY]),
'compliance': len([a for a in atom_workflow_automation_service.automations.values()
if a.automation_type == WorkflowAutomationType.COMPLIANCE]),
'integration': len([a for a in atom_workflow_automation_service.automations.values()
if a.automation_type == WorkflowAutomationType.INTEGRATION])
}
return create_enterprise_response(
True,
data={
'metrics': metrics,
'time_range': time_range,
'include_details': include_details
},
message="Automation metrics retrieved successfully"
)
except Exception as e:
logger.error(f"Get automation metrics error: {e}")
return create_enterprise_response(False, error=str(e)), 500
# Enterprise Integration Endpoints
@enterprise_bp.route('/integration/platforms/status', methods=['POST'])
@jwt_required()
@require_security_level(SecurityLevel.STANDARD)
async def get_platform_integration_status():
"""Get platform integration status"""
try:
data = get_enterprise_request_data()
platforms = data.get('platforms', ['slack', 'teams', 'google_chat', 'discord'])
platform_status = {}
for platform in platforms:
integration = atom_workflow_automation_service.platform_integrations.get(platform)
if integration:
try:
status = await integration.get_service_status()
platform_status[platform] = {
'status': 'active',
'service_info': status,
'last_check': datetime.utcnow().isoformat()
}
except Exception as e:
platform_status[platform] = {
'status': 'error',
'error': str(e),
'last_check': datetime.utcnow().isoformat()
}
else:
platform_status[platform] = {
'status': 'not_configured',
'last_check': datetime.utcnow().isoformat()
}
return create_enterprise_response(
True,
data={
'platform_status': platform_status,
'total_platforms': len(platforms),
'active_platforms': len([s for s in platform_status.values() if s['status'] == 'active'])
},
message="Platform integration status retrieved successfully"
)
except Exception as e:
logger.error(f"Get platform integration status error: {e}")
return create_enterprise_response(False, error=str(e)), 500
@enterprise_bp.route('/integration/workflows/sync', methods=['POST'])
@jwt_required()
@require_enterprise_role('integration_admin')
@require_security_level(SecurityLevel.ADVANCED)
async def sync_integration_workflows():
"""Sync integration workflows"""
try:
data = get_enterprise_request_data()
platforms = data.get('platforms', ['slack', 'teams', 'google_chat', 'discord'])
sync_type = data.get('sync_type', 'full')
user_id = data.get('user_id')
sync_results = {}
for platform in platforms:
integration = atom_workflow_automation_service.platform_integrations.get(platform)
if integration:
try:
# Sync workflows for platform
if sync_type == 'full':
# Full sync including workspaces, channels, etc.
workspaces = await integration.get_intelligent_workspaces(user_id)
for workspace in workspaces:
channels = await integration.get_intelligent_channels(workspace['id'], user_id)
for channel in channels:
# Create integration automation for channel
automation_data = {
'platform': platform,
'workspace': workspace,
'channel': channel
}
result = await atom_workflow_automation_service.create_integration_automation(platform, automation_data)
sync_results[platform] = sync_results.get(platform, [])
sync_results[platform].append(result)
sync_results[platform] = {
'status': 'success',
'sync_type': sync_type,
'workspaces_synced': len(workspaces) if 'workspaces' in locals() else 0
}
except Exception as e:
sync_results[platform] = {
'status': 'error',
'error': str(e),
'sync_type': sync_type
}
else:
sync_results[platform] = {
'status': 'not_configured',
'sync_type': sync_type
}
return create_enterprise_response(
True,
data={
'sync_results': sync_results,
'sync_type': sync_type,
'platforms': platforms
},
message="Integration workflows synchronized successfully"
)
except Exception as e:
logger.error(f"Sync integration workflows error: {e}")
return create_enterprise_response(False, error=str(e)), 500
# Enterprise Analytics and Monitoring
@enterprise_bp.route('/analytics/comprehensive', methods=['POST'])
@jwt_required()
@require_security_level(SecurityLevel.ADVANCED)
async def get_comprehensive_analytics():
"""Get comprehensive enterprise analytics"""
try:
data = get_enterprise_request_data()
time_range = data.get('time_range', 'last_30_days')
metrics_type = data.get('metrics_type', 'all')
include_ai = data.get('include_ai', True)
user_id = data.get('user_id')
analytics_data = {}
# Security analytics
if metrics_type in ['all', 'security'] and atom_enterprise_security_service:
security_metrics = await atom_enterprise_security_service.get_security_metrics()
analytics_data['security'] = {
'metrics': security_metrics,
'time_range': time_range,
'ai_enhanced': include_ai
}
# Workflow automation analytics
if metrics_type in ['all', 'automation'] and atom_workflow_automation_service:
automation_metrics = await atom_workflow_automation_service.get_automation_metrics()
analytics_data['automation'] = {
'metrics': automation_metrics,
'time_range': time_range,
'ai_enhanced': include_ai
}
# AI analytics
if include_ai and ai_enhanced_service:
ai_metrics = await ai_enhanced_service.get_performance_metrics()
analytics_data['ai'] = {
'metrics': ai_metrics,
'time_range': time_range,
'ai_enhanced': True
}
# Platform integration analytics
platform_analytics = {}
for platform, integration in atom_workflow_automation_service.platform_integrations.items():
if integration:
try:
status = await integration.get_service_status()
platform_analytics[platform] = {
'status': status,
'active_users': status.get('active_users', 0),
'message_count': status.get('message_count', 0),
'uptime': status.get('uptime', 0)
}
except Exception as e:
platform_analytics[platform] = {
'status': 'error',
'error': str(e)
}
analytics_data['platforms'] = platform_analytics
return create_enterprise_response(
True,
data={
'analytics': analytics_data,
'time_range': time_range,
'metrics_type': metrics_type,
'include_ai': include_ai
},
message="Comprehensive analytics retrieved successfully"
)
except Exception as e:
logger.error(f"Get comprehensive analytics error: {e}")
return create_enterprise_response(False, error=str(e)), 500
@enterprise_bp.route('/monitoring/health', methods=['POST'])
async def enterprise_health_monitoring():
"""Enterprise health monitoring with automation integration"""
try:
if not validate_enterprise_config():
return create_enterprise_response(False, error="Enterprise configuration validation failed"), 500
health_status = {
'enterprise_security_service': atom_enterprise_security_service is not None,
'enterprise_unified_service': atom_enterprise_unified_service is not None,
'workflow_automation_service': atom_workflow_automation_service is not None,
'ai_service': ai_enhanced_service is not None,
'ai_integration': atom_ai_integration is not None
}
# Check service status
all_healthy = all(health_status.values())
# Get detailed status if services are available
service_info = {}
service_metrics = {}
if atom_enterprise_security_service:
service_info['security_service'] = await atom_enterprise_security_service.get_service_info()
service_metrics['security_service'] = await atom_enterprise_security_service.get_security_metrics()
if atom_enterprise_unified_service:
service_info['unified_service'] = await atom_enterprise_unified_service.get_service_info()
service_metrics['unified_service'] = await atom_enterprise_unified_service.get_enterprise_metrics()
if atom_workflow_automation_service:
service_info['automation_service'] = await atom_workflow_automation_service.get_service_info()
service_metrics['automation_service'] = await atom_workflow_automation_service.get_automation_metrics()
if ai_enhanced_service:
service_info['ai_service'] = await ai_enhanced_service.get_service_info()
service_metrics['ai_service'] = await ai_enhanced_service.get_performance_metrics()
# Platform integration health
platform_health = {}
for platform, integration in atom_workflow_automation_service.platform_integrations.items():
if integration:
try:
status = await integration.get_service_status()
platform_health[platform] = {
'status': 'healthy' if status else 'unhealthy',
'last_check': datetime.utcnow().isoformat(),
'service_info': status
}
except Exception as e:
platform_health[platform] = {
'status': 'unhealthy',
'error': str(e),
'last_check': datetime.utcnow().isoformat()
}
else:
platform_health[platform] = {
'status': 'not_configured',
'last_check': datetime.utcnow().isoformat()
}
# Active automations status
automation_health = {
'total_automations': len(atom_workflow_automation_service.automations) if atom_workflow_automation_service else 0,
'active_automations': len([a for a in atom_workflow_automation_service.automations.values()
if a.status == AutomationStatus.ACTIVE]) if atom_workflow_automation_service else 0,
'failed_automations': len([a for a in atom_workflow_automation_service.automations.values()
if a.status == AutomationStatus.FAILED]) if atom_workflow_automation_service else 0,
'executed_today': atom_workflow_automation_service.automation_metrics['executed_today'] if atom_workflow_automation_service else 0
}
return create_enterprise_response(
all_healthy,
data={
'services': health_status,
'service_info': service_info,
'service_metrics': service_metrics,
'platform_health': platform_health,
'automation_health': automation_health,
'status': 'healthy' if all_healthy else 'degraded'
},
message="Enterprise services operational" if all_healthy else "Some enterprise services unavailable"
)
except Exception as e:
logger.error(f"Enterprise health monitoring error: {e}")
return create_enterprise_response(False, error=str(e)), 500
# Error handlers
@enterprise_bp.errorhandler(404)
def enterprise_not_found(error):
return create_enterprise_response(False, error="Endpoint not found"), 404
@enterprise_bp.errorhandler(500)
def enterprise_internal_error(error):
logger.error(f"Enterprise internal server error: {error}")
return create_enterprise_response(False, error="Internal server error"), 500
# Helper functions
async def _verify_enterprise_credentials(username: str, password: str) -> Dict[str, Any]:
"""
Verify enterprise credentials using the enterprise auth service.
Args:
username: Username or email
password: Plain text password
Returns:
User credentials dict if valid, None if invalid
"""
try:
from core.database import get_db
from core.enterprise_auth_service import EnterpriseAuthService
auth_service = EnterpriseAuthService()
# Get database session
db = next(get_db())
try:
# Verify credentials
user_creds = auth_service.verify_credentials(db, username, password)
if not user_creds:
return None
# Convert to expected format
return {
'user_id': user_creds.user_id,
'username': user_creds.username,
'email': user_creds.email,
'roles': user_creds.roles,
'security_level': user_creds.security_level,
'permissions': user_creds.permissions
}
finally:
db.close()
except Exception as e:
logger.error(f"Enterprise credential verification error: {e}")
return None
# Register blueprint
def register_enterprise_api(app):
"""Register enterprise API blueprint"""
app.register_blueprint(enterprise_bp)
logger.info("Enterprise API blueprint registered")
# Export for external use
__all__ = [
'enterprise_bp',
'register_enterprise_api',
'create_enterprise_response',
'get_enterprise_request_data',
'require_enterprise_role',
'require_security_level'
] |