Spaces:
Sleeping
Sleeping
File size: 108,140 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 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 | """
ATOM Enterprise Workflow Automation Service
Comprehensive workflow automation integrating all enterprise services with intelligent automation
"""
import asyncio
from collections import Counter, defaultdict
from dataclasses import asdict, dataclass
from datetime import datetime, timedelta, timezone
from enum import Enum
import hashlib
import json
import logging
import os
import time
from typing import Any, Callable, Dict, List, Optional, Tuple, Union
import aiohttp
import httpx
import numpy as np
import pandas as pd
from core.circuit_breaker import circuit_breaker
from core.rate_limiter import rate_limiter, should_retry, calculate_backoff
from core.audit_logger import log_integration_call, log_integration_error, log_integration_attempt, log_integration_complete
from fastapi import HTTPException
# Configure logging
logger = logging.getLogger(__name__)
# Import existing ATOM services (all optional)
try:
from ai_enhanced_service import (
AIModelType,
AIRequest,
AIResponse,
AIServiceType,
AITaskType,
ai_enhanced_service,
)
except ImportError:
logger.debug("ai_enhanced_service not available")
ai_enhanced_service = None
AIModelType = None
AIRequest = None
AIResponse = None
AIServiceType = None
AITaskType = None
try:
from atom_ai_integration import atom_ai_integration
except ImportError:
logger.debug("atom_ai_integration not available")
atom_ai_integration = None
try:
from atom_discord_integration import atom_discord_integration
except ImportError:
logger.debug("atom_discord_integration not available")
atom_discord_integration = None
try:
from atom_enterprise_security_service import (
AuditEventType,
ComplianceReport,
ComplianceStandard,
SecurityAudit,
SecurityLevel,
SecurityPolicy,
ThreatDetection,
ThreatType,
atom_enterprise_security_service,
)
except ImportError:
logger.debug("atom_enterprise_security_service not available")
atom_enterprise_security_service = None
AuditEventType = None
ComplianceReport = None
ComplianceStandard = None
SecurityAudit = None
SecurityLevel = None
SecurityPolicy = None
ThreatDetection = None
ThreatType = None
try:
from atom_enterprise_unified_service import (
AutomationTriggerType,
ComplianceAutomation,
ComplianceWorkflowType,
EnterpriseServiceType,
EnterpriseWorkflow,
SecurityWorkflowAction,
WorkflowSecurityLevel,
atom_enterprise_unified_service,
)
except ImportError:
logger.debug("atom_enterprise_unified_service not available")
atom_enterprise_unified_service = None
AutomationTriggerType = None
ComplianceAutomation = None
ComplianceWorkflowType = None
EnterpriseServiceType = None
EnterpriseWorkflow = None
SecurityWorkflowAction = None
WorkflowSecurityLevel = None
try:
from atom_google_chat_integration import atom_google_chat_integration
except ImportError:
logger.debug("atom_google_chat_integration not available")
atom_google_chat_integration = None
try:
from atom_ingestion_pipeline import AtomIngestionPipeline
except ImportError:
logger.debug("AtomIngestionPipeline not available")
AtomIngestionPipeline = None
try:
from atom_memory_service import AtomMemoryService
except ImportError:
logger.debug("AtomMemoryService not available")
AtomMemoryService = None
try:
from atom_search_service import AtomSearchService
except ImportError:
logger.debug("AtomSearchService not available")
AtomSearchService = None
try:
from atom_slack_integration import atom_slack_integration
except ImportError:
logger.debug("atom_slack_integration not available")
atom_slack_integration = None
try:
from atom_teams_integration import atom_teams_integration
except ImportError:
logger.debug("atom_teams_integration not available")
atom_teams_integration = None
try:
from atom_workflow_service import (
AtomWorkflowService,
Workflow,
WorkflowAction,
WorkflowStatus,
WorkflowStep,
WorkflowTrigger,
)
except ImportError:
logger.debug("atom_workflow_service not available")
AtomWorkflowService = None
Workflow = None
WorkflowAction = None
WorkflowStatus = None
WorkflowStep = None
WorkflowTrigger = None
class WorkflowAutomationType(Enum):
"""Workflow automation types"""
SECURITY = "security"
COMPLIANCE = "compliance"
GOVERNANCE = "governance"
MONITORING = "monitoring"
AUDITING = "auditing"
INCIDENT_RESPONSE = "incident_response"
RISK_MANAGEMENT = "risk_management"
DATA_PROTECTION = "data_protection"
ACCESS_CONTROL = "access_control"
USER_MANAGEMENT = "user_management"
RESOURCE_MANAGEMENT = "resource_management"
NOTIFICATION = "notification"
REPORTING = "reporting"
INTEGRATION = "integration"
class AutomationConditionType(Enum):
"""Automation condition types"""
EVENT_TRIGGERED = "event_triggered"
SCHEDULED = "scheduled"
THRESHOLD_EXCEEDED = "threshold_exceeded"
ANOMALY_DETECTED = "anomaly_detected"
MANUAL = "manual"
WEBHOOK = "webhook"
API_CALLED = "api_called"
SYSTEM_EVENT = "system_event"
USER_ACTION = "user_action"
DATA_CHANGED = "data_changed"
SECURITY_ALERT = "security_alert"
COMPLIANCE_VIOLATION = "compliance_violation"
class AutomationActionType(Enum):
"""Automation action types"""
NOTIFICATION = "notification"
WORKFLOW_EXECUTION = "workflow_execution"
SECURITY_ENFORCEMENT = "security_enforcement"
COMPLIANCE_CHECK = "compliance_check"
DATA_PROCESSING = "data_processing"
USER_ACTION = "user_action"
SYSTEM_CONFIG = "system_config"
API_CALL = "api_call"
EMAIL_SEND = "email_send"
MESSAGE_SEND = "message_send"
FILE_OPERATION = "file_operation"
DATABASE_OPERATION = "database_operation"
LOGGING = "logging"
AUDITING = "auditing"
REPORTING = "reporting"
REMEDIATION = "remediation"
class AutomationPriority(Enum):
"""Automation priority levels"""
CRITICAL = "critical"
HIGH = "high"
MEDIUM = "medium"
LOW = "low"
INFO = "info"
class AutomationStatus(Enum):
"""Automation status"""
ACTIVE = "active"
INACTIVE = "inactive"
PAUSED = "paused"
SUSPENDED = "suspended"
ERROR = "error"
COMPLETED = "completed"
RUNNING = "running"
PENDING = "pending"
FAILED = "failed"
@dataclass
class WorkflowAutomation:
"""Workflow automation data model"""
automation_id: str
name: str
description: str
automation_type: WorkflowAutomationType
priority: AutomationPriority
status: AutomationStatus
conditions: List[Dict[str, Any]]
actions: List[Dict[str, Any]]
schedule: Optional[str]
created_at: datetime
updated_at: datetime
created_by: str
last_executed: Optional[datetime]
execution_count: int
success_count: int
failure_count: int
timeout: int
retry_policy: Dict[str, Any]
notification_rules: List[Dict[str, Any]]
metadata: Dict[str, Any]
audit_trail: List[Dict[str, Any]]
@dataclass
class AutomationExecution:
"""Automation execution data model"""
execution_id: str
automation_id: str
triggered_by: str
trigger_context: Dict[str, Any]
status: AutomationStatus
started_at: datetime
completed_at: Optional[datetime]
execution_time: float
result: Dict[str, Any]
error: Optional[str]
actions_executed: List[Dict[str, Any]]
notifications_sent: List[Dict[str, Any]]
compliance_checks: List[Dict[str, Any]]
security_checks: List[Dict[str, Any]]
metadata: Dict[str, Any]
# Auth Type: Internal
class AtomWorkflowAutomationService:
"""Enterprise workflow automation service with comprehensive integration"""
def __init__(self, tenant_id: str = "default", config: Dict[str, Any] = None):
if config is None:
config = {}
self.config = config
self.db = config.get('database')
self.cache = config.get('cache')
# Enterprise services
self.security_service = config.get('security_service') or atom_enterprise_security_service
self.unified_service = config.get('unified_service') or atom_enterprise_unified_service
self.workflow_service = config.get('workflow_service')
self.ai_service = config.get('ai_service') or ai_enhanced_service
self.ai_integration = config.get('ai_integration') or atom_ai_integration
# Platform integrations
self.platform_integrations = {
'slack': atom_slack_integration,
'teams': atom_teams_integration,
'google_chat': atom_google_chat_integration,
'discord': atom_discord_integration
}
# Automation state
self.is_initialized = False
self.automations: Dict[str, WorkflowAutomation] = {}
self.executions: Dict[str, AutomationExecution] = {}
self.scheduled_automations: Dict[str, Dict[str, Any]] = {}
self.active_triggers: Dict[str, Dict[str, Any]] = {}
self.automation_templates: Dict[str, Dict[str, Any]] = {}
# Automation metrics
self.automation_metrics = {
'total_automations': 0,
'active_automations': 0,
'executed_today': 0,
'executed_this_week': 0,
'executed_this_month': 0,
'success_rate': 0.0,
'average_execution_time': 0.0,
'automations_by_type': defaultdict(int),
'automations_by_priority': defaultdict(int),
'executions_by_status': defaultdict(int),
'error_rate': 0.0,
'time_saved_hours': 0.0,
'cost_savings': 0.0
}
# Automation scheduling
self.scheduler_running = False
self.scheduler_task = None
self.trigger_listeners = {}
# HTTP sessions for API calls
self.http_sessions = {}
logger.info("Workflow Automation Service initialized")
async def initialize(self) -> bool:
"""Initialize workflow automation service"""
try:
if not all([self.security_service, self.unified_service, self.ai_service]):
logger.error("Required services not available for workflow automation service")
return False
# Initialize automation templates
await self._initialize_automation_templates()
# Load existing automations
await self._load_automations()
# Initialize automation scheduling
await self._initialize_automation_scheduling()
# Initialize trigger listeners
await self._initialize_trigger_listeners()
# Initialize integration endpoints
await self._initialize_integration_endpoints()
# Start automation monitoring
await self._start_automation_monitoring()
self.is_initialized = True
logger.info("Workflow Automation Service initialized successfully")
return True
except Exception as e:
logger.error(f"Error initializing workflow automation service: {e}")
return False
async def create_automation(self, automation_data: Dict[str, Any], user_id: str) -> Dict[str, Any]:
"""Create workflow automation"""
# Start audit logging
audit_ctx = log_integration_attempt("atom_workflow_automation", "initialize", locals())
try:
# Check circuit breaker
if not await circuit_breaker.is_enabled("atom_workflow_automation"):
logger.warning(f"Circuit breaker is open for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Circuit breaker open"))
raise HTTPException(
status_code=503,
detail=f"Atom_workflow_automation integration temporarily disabled"
)
# Check rate limiter
is_limited, remaining = await rate_limiter.is_rate_limited("atom_workflow_automation")
if is_limited:
logger.warning(f"Rate limit exceeded for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Rate limit exceeded"))
raise HTTPException(
status_code=429,
detail=f"Rate limit exceeded for atom_workflow_automation"
)
automation_id = f"auto_{int(time.time())}_{hashlib.md5(automation_data['name'].encode()).hexdigest()[:8]}"
# Validate automation data
validation_result = await self._validate_automation_data(automation_data)
if not validation_result['valid']:
return {
'ok': False,
'error': f"Automation validation failed: {validation_result['errors']}"
}
# Create automation
automation = WorkflowAutomation(
automation_id=automation_id,
name=automation_data['name'],
description=automation_data['description'],
automation_type=WorkflowAutomationType(automation_data['automation_type']),
priority=AutomationPriority(automation_data['priority']),
status=AutomationStatus.ACTIVE,
conditions=automation_data['conditions'],
actions=automation_data['actions'],
schedule=automation_data.get('schedule'),
created_at=datetime.utcnow(),
updated_at=datetime.utcnow(),
created_by=user_id,
last_executed=None,
execution_count=0,
success_count=0,
failure_count=0,
timeout=automation_data.get('timeout', 3600),
retry_policy=automation_data.get('retry_policy', {
'max_retries': 3,
'backoff': 'exponential',
'max_delay': 3600
}),
notification_rules=automation_data.get('notification_rules', []),
metadata=automation_data.get('metadata', {}),
audit_trail=[]
)
# Setup automation triggers
await self._setup_automation_triggers(automation)
# Store automation
self.automations[automation_id] = automation
# Store in database
if self.db:
await self.db.store_workflow_automation(asdict(automation))
# Update metrics
self.automation_metrics['total_automations'] += 1
self.automation_metrics['active_automations'] += 1
self.automation_metrics['automations_by_type'][automation.automation_type.value] += 1
self.automation_metrics['automations_by_priority'][automation.priority.value] += 1
# Log creation
await self._log_automation_event(
automation_id=automation_id,
event_type='automation_created',
user_id=user_id,
details={
'automation_name': automation.name,
'automation_type': automation.automation_type.value,
'priority': automation.priority.value
}
)
return {
'ok': True,
'automation_id': automation_id,
'automation': asdict(automation),
'message': "Workflow automation created successfully"
}
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
logger.error(f"Error creating workflow automation: {e}")
return {'ok': False, 'error': str(e)}
async def execute_automation(self, automation_id: str, trigger_context: Dict[str, Any], triggered_by: str) -> Dict[str, Any]:
"""Execute workflow automation"""
# Start audit logging
audit_ctx = log_integration_attempt("atom_workflow_automation", "create_automation", locals())
# Check circuit breaker
if not await circuit_breaker.is_enabled("atom_workflow_automation"):
logger.warning(f"Circuit breaker is open for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Circuit breaker open"))
raise HTTPException(
status_code=503,
detail=f"Atom_workflow_automation integration temporarily disabled"
)
# Check rate limiter
is_limited, remaining = await rate_limiter.is_rate_limited("atom_workflow_automation")
if is_limited:
logger.warning(f"Rate limit exceeded for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Rate limit exceeded"))
raise HTTPException(
status_code=429,
detail=f"Rate limit exceeded for atom_workflow_automation"
)
try:
automation = self.automations.get(automation_id)
if not automation:
return {'ok': False, 'error': 'Automation not found'}
if automation.status != AutomationStatus.ACTIVE:
return {'ok': False, 'error': 'Automation is not active'}
# Create execution record
execution_id = f"exec_{int(time.time())}_{hashlib.md5(automation_id.encode()).hexdigest()[:8]}"
execution = AutomationExecution(
execution_id=execution_id,
automation_id=automation_id,
triggered_by=triggered_by,
trigger_context=trigger_context,
status=AutomationStatus.RUNNING,
started_at=datetime.utcnow(),
completed_at=None,
execution_time=0.0,
result={},
error=None,
actions_executed=[],
notifications_sent=[],
compliance_checks=[],
security_checks=[],
metadata={'trigger_context': trigger_context}
)
self.executions[execution_id] = execution
# Pre-execution security checks
security_check = await self._pre_execution_security_check(automation, trigger_context)
if not security_check['passed']:
execution.status = AutomationStatus.FAILED
execution.error = f"Security check failed: {security_check['reason']}"
execution.security_checks.append(security_check)
return {
'ok': False,
'error': execution.error,
'security_violation': security_check
}
# Pre-execution compliance checks
compliance_check = await self._pre_execution_compliance_check(automation, trigger_context)
if not compliance_check['passed']:
execution.status = AutomationStatus.FAILED
execution.error = f"Compliance check failed: {compliance_check['reason']}"
execution.compliance_checks.append(compliance_check)
return {
'ok': False,
'error': execution.error,
'compliance_violation': compliance_check
}
# ========================================================================
# NEW: Maturity-Based Trigger Interception for Agent Actions
# ========================================================================
# Pre-check all actions for agent triggers that require maturity checks
for action in automation.actions:
if action.get('type') == 'workflow_execution' or action.get('type') == 'agent_trigger':
agent_id = action.get('config', {}).get('agent_id')
if agent_id:
from core.trigger_interceptor import TriggerInterceptor, TriggerSource
interceptor = TriggerInterceptor(self.db, self.workspace_id)
trigger_context = {
"action_type": action.get('type'),
"action_config": action.get('config'),
"automation_id": automation_id,
"trigger_context": trigger_context
}
decision = await interceptor.intercept_trigger(
agent_id=agent_id,
trigger_source=TriggerSource.WORKFLOW_ENGINE,
trigger_context=trigger_context
)
# Log routing decision
logger.info(
f"Workflow automation routing decision for agent {agent_id}: "
f"{decision.routing_decision.value} (maturity: {decision.agent_maturity}, "
f"confidence: {decision.confidence_score:.2f})"
)
# Handle blocked triggers
if not decision.execute:
execution.status = AutomationStatus.FAILED
execution.error = (
f"Agent action blocked by maturity guard: {decision.reason}"
)
execution.metadata['maturity_check'] = {
'agent_id': agent_id,
'blocked': True,
'reason': decision.reason,
'routing_decision': decision.routing_decision.value
}
self.db.commit()
logger.warning(
f"Workflow automation {automation_id} action blocked: {decision.reason}"
)
return {
'ok': False,
'error': execution.error,
'maturity_check': execution.metadata['maturity_check']
}
except ValueError as e:
# Agent not found or other error
logger.warning(
f"Could not check maturity for agent {agent_id} in automation: {e}"
)
# Continue with execution for backward compatibility
# ========================================================================
# Execute automation actions
execution_results = []
for action in automation.actions:
try:
action_result = await self._execute_automation_action(action, trigger_context, execution)
execution_results.append(action_result)
execution.actions_executed.append({
'action': action,
'result': action_result,
'timestamp': datetime.utcnow().isoformat()
})
# Check if execution should stop
if action_result.get('stop_execution', False):
break
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error executing automation action: {e}")
execution_results.append({
'success': False,
'error': str(e),
'action': action
})
# Post-execution checks
post_security_check = await self._post_execution_security_check(automation, execution_results)
post_compliance_check = await self._post_execution_compliance_check(automation, execution_results)
# Calculate execution result
successful_actions = [r for r in execution_results if r.get('success', False)]
success_rate = len(successful_actions) / len(execution_results) if execution_results else 0
# Update execution
execution.status = AutomationStatus.COMPLETED if success_rate >= 0.8 else AutomationStatus.FAILED
execution.completed_at = datetime.utcnow()
execution.execution_time = (execution.completed_at - execution.started_at).total_seconds()
execution.result = {
'success_rate': success_rate,
'total_actions': len(execution_results),
'successful_actions': len(successful_actions),
'failed_actions': len(execution_results) - len(successful_actions)
}
execution.security_checks.append(post_security_check)
execution.compliance_checks.append(post_compliance_check)
# Update automation metrics
automation.execution_count += 1
automation.last_executed = execution.completed_at
if execution.status == AutomationStatus.COMPLETED:
automation.success_count += 1
else:
automation.failure_count += 1
# Send notifications
await self._send_automation_notifications(automation, execution)
# Update metrics
await self._update_automation_metrics(automation, execution)
# Store execution in database
if self.db:
await self.db.store_automation_execution(asdict(execution))
return {
'ok': True,
'execution_id': execution_id,
'automation_id': automation_id,
'status': execution.status.value,
'execution_time': execution.execution_time,
'result': execution.result,
'actions_executed': len(execution_results),
'successful_actions': len(successful_actions),
'message': "Automation executed successfully"
}
except Exception as e:
logger.error(f"Error executing workflow automation: {e}")
return {'ok': False, 'error': str(e)}
async def create_security_automation(self, security_event: Dict[str, Any], automation_config: Dict[str, Any]) -> Dict[str, Any]:
"""Create automation from security event"""
# Start audit logging
audit_ctx = log_integration_attempt("atom_workflow_automation", "execute_automation", locals())
# Check circuit breaker
if not await circuit_breaker.is_enabled("atom_workflow_automation"):
logger.warning(f"Circuit breaker is open for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Circuit breaker open"))
raise HTTPException(
status_code=503,
detail=f"Atom_workflow_automation integration temporarily disabled"
)
# Check rate limiter
is_limited, remaining = await rate_limiter.is_rate_limited("atom_workflow_automation")
if is_limited:
logger.warning(f"Rate limit exceeded for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Rate limit exceeded"))
raise HTTPException(
status_code=429,
detail=f"Rate limit exceeded for atom_workflow_automation"
)
try:
# Determine automation type based on security event
threat_type = security_event.get('threat_type', 'unknown')
severity = security_event.get('severity', 'medium')
automation_data = {
'name': f"Security Response: {threat_type}",
'description': f"Automated response for {threat_type} security events",
'automation_type': WorkflowAutomationType.SECURITY,
'priority': severity,
'conditions': [
{
'type': AutomationConditionType.SECURITY_ALERT.value,
'threat_type': threat_type,
'severity_level': severity,
'source_ip': security_event.get('source_ip'),
'user_id': security_event.get('user_id')
}
],
'actions': automation_config.get('actions', [
{
'type': AutomationActionType.SECURITY_ENFORCEMENT.value,
'config': {
'action': 'block_ip',
'duration': 3600,
'reason': f'Security threat detected: {threat_type}'
}
},
{
'type': AutomationActionType.NOTIFICATION.value,
'config': {
'channels': ['security_team', 'management'],
'message': f"Security threat {threat_type} detected with severity {severity}",
'urgency': severity
}
}
]),
'schedule': None,
'timeout': 600,
'retry_policy': {
'max_retries': 2,
'backoff': 'exponential'
},
'notification_rules': [
{
'condition': 'always',
'channels': ['security_team'],
'urgency': severity
}
],
'metadata': {
'security_event': security_event,
'threat_type': threat_type,
'severity': severity
}
}
# Create automation
result = await self.create_automation(automation_data, 'security_system')
if result.get('ok'):
# Execute automation immediately
execution_result = await self.execute_automation(
automation_id=result['automation_id'],
trigger_context={'security_event': security_event},
triggered_by='security_event'
)
result['execution_result'] = execution_result
return result
except Exception as e:
logger.error(f"Error creating security automation: {e}")
return {'ok': False, 'error': str(e)}
async def create_compliance_automation(self, compliance_violation: Dict[str, Any], automation_config: Dict[str, Any]) -> Dict[str, Any]:
"""Create automation from compliance violation"""
# Start audit logging
audit_ctx = log_integration_attempt("atom_workflow_automation", "create_security_automation", locals())
# Check circuit breaker
if not await circuit_breaker.is_enabled("atom_workflow_automation"):
logger.warning(f"Circuit breaker is open for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Circuit breaker open"))
raise HTTPException(
status_code=503,
detail=f"Atom_workflow_automation integration temporarily disabled"
)
# Check rate limiter
is_limited, remaining = await rate_limiter.is_rate_limited("atom_workflow_automation")
if is_limited:
logger.warning(f"Rate limit exceeded for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Rate limit exceeded"))
raise HTTPException(
status_code=429,
detail=f"Rate limit exceeded for atom_workflow_automation"
)
try:
# Determine automation type based on compliance violation
standard = compliance_violation.get('standard', 'unknown')
violation_type = compliance_violation.get('violation_type', 'unknown')
severity = compliance_violation.get('severity', 'medium')
automation_data = {
'name': f"Compliance Response: {standard}_{violation_type}",
'description': f"Automated response for {standard} compliance violations",
'automation_type': WorkflowAutomationType.COMPLIANCE,
'priority': severity,
'conditions': [
{
'type': AutomationConditionType.COMPLIANCE_VIOLATION.value,
'standard': standard,
'violation_type': violation_type,
'severity_level': severity,
'affected_resources': compliance_violation.get('affected_resources', [])
}
],
'actions': automation_config.get('actions', [
{
'type': AutomationActionType.COMPLIANCE_CHECK.value,
'config': {
'action': 'remediate',
'standard': standard,
'violation_type': violation_type
}
},
{
'type': AutomationActionType.NOTIFICATION.value,
'config': {
'channels': ['compliance_officer', 'management'],
'message': f"Compliance violation {violation_type} detected for {standard}",
'urgency': severity
}
}
]),
'schedule': None,
'timeout': 1800,
'retry_policy': {
'max_retries': 3,
'backoff': 'linear'
},
'notification_rules': [
{
'condition': 'always',
'channels': ['compliance_officer'],
'urgency': severity
}
],
'metadata': {
'compliance_violation': compliance_violation,
'standard': standard,
'violation_type': violation_type,
'severity': severity
}
}
# Create automation
result = await self.create_automation(automation_data, 'compliance_system')
if result.get('ok'):
# Execute automation immediately
execution_result = await self.execute_automation(
automation_id=result['automation_id'],
trigger_context={'compliance_violation': compliance_violation},
triggered_by='compliance_violation'
)
result['execution_result'] = execution_result
return result
except Exception as e:
logger.error(f"Error creating compliance automation: {e}")
return {'ok': False, 'error': str(e)}
async def create_integration_automation(self, platform: str, integration_config: Dict[str, Any]) -> Dict[str, Any]:
"""Create automation for platform integration"""
# Start audit logging
audit_ctx = log_integration_attempt("atom_workflow_automation", "create_compliance_automation", locals())
# Check circuit breaker
if not await circuit_breaker.is_enabled("atom_workflow_automation"):
logger.warning(f"Circuit breaker is open for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Circuit breaker open"))
raise HTTPException(
status_code=503,
detail=f"Atom_workflow_automation integration temporarily disabled"
)
# Check rate limiter
is_limited, remaining = await rate_limiter.is_rate_limited("atom_workflow_automation")
if is_limited:
logger.warning(f"Rate limit exceeded for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Rate limit exceeded"))
raise HTTPException(
status_code=429,
detail=f"Rate limit exceeded for atom_workflow_automation"
)
try:
# Validate platform
if platform not in self.platform_integrations:
return {'ok': False, 'error': f'Unsupported platform: {platform}'}
automation_data = {
'name': f"Integration: {platform}",
'description': f"Automation for {platform} platform integration",
'automation_type': WorkflowAutomationType.INTEGRATION,
'priority': AutomationPriority.MEDIUM,
'conditions': [
{
'type': AutomationConditionType.EVENT_TRIGGERED.value,
'platform': platform,
'events': integration_config.get('events', ['message_received', 'user_joined'])
}
],
'actions': integration_config.get('actions', [
{
'type': AutomationActionType.NOTIFICATION.value,
'config': {
'channels': ['platform_admin'],
'message': f"Integration event from {platform}",
'urgency': 'low'
}
}
]),
'schedule': None,
'timeout': 300,
'retry_policy': {
'max_retries': 2,
'backoff': 'exponential'
},
'notification_rules': [
{
'condition': 'on_error',
'channels': ['platform_admin'],
'urgency': 'medium'
}
],
'metadata': {
'platform': platform,
'integration_config': integration_config
}
}
# Create automation
result = await self.create_automation(automation_data, 'integration_system')
# Setup platform-specific trigger listeners
if result.get('ok'):
await self._setup_platform_triggers(platform, result['automation_id'], integration_config)
return result
except Exception as e:
logger.error(f"Error creating integration automation: {e}")
return {'ok': False, 'error': str(e)}
async def get_automations(self, filters: Dict[str, Any] = None) -> List[Dict[str, Any]]:
"""Get workflow automations with filters"""
# Start audit logging
audit_ctx = log_integration_attempt("atom_workflow_automation", "create_integration_automation", locals())
# Check circuit breaker
if not await circuit_breaker.is_enabled("atom_workflow_automation"):
logger.warning(f"Circuit breaker is open for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Circuit breaker open"))
raise HTTPException(
status_code=503,
detail=f"Atom_workflow_automation integration temporarily disabled"
)
# Check rate limiter
is_limited, remaining = await rate_limiter.is_rate_limited("atom_workflow_automation")
if is_limited:
logger.warning(f"Rate limit exceeded for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Rate limit exceeded"))
raise HTTPException(
status_code=429,
detail=f"Rate limit exceeded for atom_workflow_automation"
)
try:
filters = filters or {}
automations = []
for automation in self.automations.values():
# Apply filters
if filters.get('automation_type') and automation.automation_type.value != filters['automation_type']:
continue
if filters.get('priority') and automation.priority.value != filters['priority']:
continue
if filters.get('status') and automation.status.value != filters['status']:
continue
if filters.get('created_by') and automation.created_by != filters['created_by']:
continue
# Include automation details
automation_details = {
'automation_id': automation.automation_id,
'name': automation.name,
'description': automation.description,
'automation_type': automation.automation_type.value,
'priority': automation.priority.value,
'status': automation.status.value,
'conditions': automation.conditions,
'actions': automation.actions,
'schedule': automation.schedule,
'created_at': automation.created_at.isoformat(),
'updated_at': automation.updated_at.isoformat(),
'created_by': automation.created_by,
'last_executed': automation.last_executed.isoformat() if automation.last_executed else None,
'execution_count': automation.execution_count,
'success_count': automation.success_count,
'failure_count': automation.failure_count,
'success_rate': automation.success_count / automation.execution_count if automation.execution_count > 0 else 0.0,
'timeout': automation.timeout,
'retry_policy': automation.retry_policy,
'notification_rules': automation.notification_rules,
'metadata': automation.metadata
}
automations.append(automation_details)
return automations
except Exception as e:
logger.error(f"Error getting automations: {e}")
return []
async def get_automation_executions(self, automation_id: str = None, filters: Dict[str, Any] = None) -> List[Dict[str, Any]]:
"""Get automation executions"""
# Start audit logging
audit_ctx = log_integration_attempt("atom_workflow_automation", "get_automations", locals())
# Check circuit breaker
if not await circuit_breaker.is_enabled("atom_workflow_automation"):
logger.warning(f"Circuit breaker is open for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Circuit breaker open"))
raise HTTPException(
status_code=503,
detail=f"Atom_workflow_automation integration temporarily disabled"
)
# Check rate limiter
is_limited, remaining = await rate_limiter.is_rate_limited("atom_workflow_automation")
if is_limited:
logger.warning(f"Rate limit exceeded for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Rate limit exceeded"))
raise HTTPException(
status_code=429,
detail=f"Rate limit exceeded for atom_workflow_automation"
)
try:
filters = filters or {}
executions = []
for execution in self.executions.values():
# Filter by automation_id if specified
if automation_id and execution.automation_id != automation_id:
continue
# Apply additional filters
if filters.get('status') and execution.status.value != filters['status']:
continue
if filters.get('triggered_by') and execution.triggered_by != filters['triggered_by']:
continue
if filters.get('date_from') and execution.started_at.date() < filters['date_from']:
continue
if filters.get('date_to') and execution.started_at.date() > filters['date_to']:
continue
# Include execution details
execution_details = {
'execution_id': execution.execution_id,
'automation_id': execution.automation_id,
'triggered_by': execution.triggered_by,
'trigger_context': execution.trigger_context,
'status': execution.status.value,
'started_at': execution.started_at.isoformat(),
'completed_at': execution.completed_at.isoformat() if execution.completed_at else None,
'execution_time': execution.execution_time,
'result': execution.result,
'error': execution.error,
'actions_executed': len(execution.actions_executed),
'notifications_sent': len(execution.notifications_sent),
'compliance_checks': len(execution.compliance_checks),
'security_checks': len(execution.security_checks),
'metadata': execution.metadata
}
executions.append(execution_details)
# Sort by started_at descending
executions.sort(key=lambda x: x['started_at'], reverse=True)
return executions
except Exception as e:
logger.error(f"Error getting automation executions: {e}")
return []
async def get_automation_metrics(self) -> Dict[str, Any]:
"""Get automation metrics"""
# Start audit logging
audit_ctx = log_integration_attempt("atom_workflow_automation", "get_automation_executions", locals())
# Check circuit breaker
if not await circuit_breaker.is_enabled("atom_workflow_automation"):
logger.warning(f"Circuit breaker is open for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Circuit breaker open"))
raise HTTPException(
status_code=503,
detail=f"Atom_workflow_automation integration temporarily disabled"
)
# Check rate limiter
is_limited, remaining = await rate_limiter.is_rate_limited("atom_workflow_automation")
if is_limited:
logger.warning(f"Rate limit exceeded for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Rate limit exceeded"))
raise HTTPException(
status_code=429,
detail=f"Rate limit exceeded for atom_workflow_automation"
)
try:
return {
'total_automations': self.automation_metrics['total_automations'],
'active_automations': self.automation_metrics['active_automations'],
'executed_today': self.automation_metrics['executed_today'],
'executed_this_week': self.automation_metrics['executed_this_week'],
'executed_this_month': self.automation_metrics['executed_this_month'],
'success_rate': self.automation_metrics['success_rate'],
'average_execution_time': self.automation_metrics['average_execution_time'],
'error_rate': self.automation_metrics['error_rate'],
'time_saved_hours': self.automation_metrics['time_saved_hours'],
'cost_savings': self.automation_metrics['cost_savings'],
'automations_by_type': dict(self.automation_metrics['automations_by_type']),
'automations_by_priority': dict(self.automation_metrics['automations_by_priority']),
'executions_by_status': dict(self.automation_metrics['executions_by_status']),
'scheduled_automations': len(self.scheduled_automations),
'active_triggers': len(self.active_triggers),
'automation_templates': len(self.automation_templates)
}
except Exception as e:
logger.error(f"Error getting automation metrics: {e}")
return {}
# Private methods
async def _validate_automation_data(self, automation_data: Dict[str, Any]) -> Dict[str, Any]:
"""Validate automation data"""
# Start audit logging
audit_ctx = log_integration_attempt("atom_workflow_automation", "get_automation_metrics", locals())
# Check circuit breaker
if not await circuit_breaker.is_enabled("atom_workflow_automation"):
logger.warning(f"Circuit breaker is open for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Circuit breaker open"))
raise HTTPException(
status_code=503,
detail=f"Atom_workflow_automation integration temporarily disabled"
)
# Check rate limiter
is_limited, remaining = await rate_limiter.is_rate_limited("atom_workflow_automation")
if is_limited:
logger.warning(f"Rate limit exceeded for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Rate limit exceeded"))
raise HTTPException(
status_code=429,
detail=f"Rate limit exceeded for atom_workflow_automation"
)
validation_result = {'valid': True, 'errors': [], 'warnings': []}
required_fields = ['name', 'description', 'automation_type', 'priority', 'conditions', 'actions']
for field in required_fields:
if field not in automation_data:
validation_result['valid'] = False
validation_result['errors'].append(f"Required field missing: {field}")
# Validate conditions
if 'conditions' in automation_data:
for condition in automation_data['conditions']:
if 'type' not in condition:
validation_result['valid'] = False
validation_result['errors'].append("Condition missing type")
# Validate actions
if 'actions' in automation_data:
for action in automation_data['actions']:
if 'type' not in action:
validation_result['valid'] = False
validation_result['errors'].append("Action missing type")
return validation_result
async def _setup_automation_triggers(self, automation: WorkflowAutomation):
"""Setup automation triggers"""
for condition in automation.conditions:
condition_type = condition.get('type')
if condition_type == AutomationConditionType.SCHEDULED.value:
# Schedule automation
await self._schedule_automation(automation, condition)
elif condition_type == AutomationConditionType.EVENT_TRIGGERED.value:
# Setup event trigger
await self._setup_event_trigger(automation, condition)
elif condition_type == AutomationConditionType.THRESHOLD_EXCEEDED.value:
# Setup threshold trigger
await self._setup_threshold_trigger(automation, condition)
elif condition_type == AutomationConditionType.ANOMALY_DETECTED.value:
# Setup anomaly trigger
await self._setup_anomaly_trigger(automation, condition)
elif condition_type == AutomationConditionType.SECURITY_ALERT.value:
# Setup security trigger
await self._setup_security_trigger(automation, condition)
elif condition_type == AutomationConditionType.COMPLIANCE_VIOLATION.value:
# Setup compliance trigger
await self._setup_compliance_trigger(automation, condition)
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error setting up automation triggers: {e}")
async def _execute_automation_action(self, action: Dict[str, Any], trigger_context: Dict[str, Any], execution: AutomationExecution) -> Dict[str, Any]:
"""Execute automation action"""
action_type = action.get('type')
action_config = action.get('config', {})
# Execute based on action type
if action_type == AutomationActionType.NOTIFICATION.value:
return await self._execute_notification_action(action_config, trigger_context)
elif action_type == AutomationActionType.WORKFLOW_EXECUTION.value:
return await self._execute_workflow_action(action_config, trigger_context)
elif action_type == AutomationActionType.SECURITY_ENFORCEMENT.value:
return await self._execute_security_enforcement_action(action_config, trigger_context)
elif action_type == AutomationActionType.COMPLIANCE_CHECK.value:
return await self._execute_compliance_check_action(action_config, trigger_context)
elif action_type == AutomationActionType.DATA_PROCESSING.value:
return await self._execute_data_processing_action(action_config, trigger_context)
elif action_type == AutomationActionType.API_CALL.value:
return await self._execute_api_call_action(action_config, trigger_context)
elif action_type == AutomationActionType.EMAIL_SEND.value:
return await self._execute_email_action(action_config, trigger_context)
elif action_type == AutomationActionType.MESSAGE_SEND.value:
return await self._execute_message_action(action_config, trigger_context)
elif action_type == AutomationActionType.LOGGING.value:
return await self._execute_logging_action(action_config, trigger_context)
elif action_type == AutomationActionType.AUDITING.value:
return await self._execute_auditing_action(action_config, trigger_context)
elif action_type == AutomationActionType.REPORTING.value:
return await self._execute_reporting_action(action_config, trigger_context)
elif action_type == AutomationActionType.REMEDIATION.value:
return await self._execute_remediation_action(action_config, trigger_context)
else:
return {
'success': False,
'error': f"Unsupported action type: {action_type}"
}
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error executing automation action: {e}")
return {
'success': False,
'error': str(e)
}
# Action execution methods
async def _execute_notification_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute notification action"""
channels = config.get('channels', [])
message = config.get('message', 'Automation triggered')
urgency = config.get('urgency', 'medium')
# Send notifications to different channels
notification_results = []
for channel in channels:
if channel == 'security_team':
# Send to security team
await self._notify_security_team(message, urgency, trigger_context)
elif channel == 'compliance_officer':
# Send to compliance officer
await self._notify_compliance_officer(message, urgency, trigger_context)
elif channel == 'management':
# Send to management
await self._notify_management(message, urgency, trigger_context)
elif channel == 'slack':
# Send to Slack
await self._notify_slack(message, urgency, trigger_context)
elif channel == 'teams':
# Send to Teams
await self._notify_teams(message, urgency, trigger_context)
elif channel == 'email':
# Send email
await self._notify_email(message, urgency, trigger_context)
notification_results.append({
'channel': channel,
'success': True,
'message': message
})
return {
'success': True,
'notification_results': notification_results,
'channels': channels,
'message': message,
'urgency': urgency
}
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error executing notification action: {e}")
return {
'success': False,
'error': str(e)
}
async def _execute_workflow_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute workflow action"""
workflow_id = config.get('workflow_id')
workflow_data = config.get('workflow_data', {})
if not workflow_id:
return {
'success': False,
'error': 'workflow_id is required for workflow action'
}
# Execute workflow using unified service
if self.unified_service:
result = await self.unified_service.execute_enterprise_workflow(
workflow_id=workflow_id,
trigger_context={
'automation_trigger': trigger_context,
'workflow_data': workflow_data
},
user_id='automation_system'
)
return {
'success': result.get('ok', False),
'result': result,
'workflow_id': workflow_id
}
else:
return {
'success': False,
'error': 'Unified service not available'
}
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error executing workflow action: {e}")
return {
'success': False,
'error': str(e)
}
async def _execute_security_enforcement_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute security enforcement action"""
enforcement_action = config.get('action')
target = config.get('target')
reason = config.get('reason', 'Security policy violation')
if not enforcement_action:
return {
'success': False,
'error': 'action is required for security enforcement'
}
# Execute using security service
if self.security_service:
if enforcement_action == 'block_ip':
await self.security_service._block_ip(target, config.get('duration', 3600))
elif enforcement_action == 'lock_user':
await self.security_service._lock_user_account(target)
elif enforcement_action == 'terminate_session':
await self.security_service._terminate_session(target)
elif enforcement_action == 'quarantine':
await self.security_service._quarantine_resource(target)
return {
'success': True,
'enforcement_action': enforcement_action,
'target': target,
'reason': reason
}
else:
return {
'success': False,
'error': 'Security service not available'
}
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error executing security enforcement action: {e}")
return {
'success': False,
'error': str(e)
}
async def _execute_compliance_check_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute compliance check action"""
standard = config.get('standard')
check_type = config.get('check_type', 'automated')
if not standard:
return {
'success': False,
'error': 'standard is required for compliance check'
}
# Execute compliance check using security service
if self.security_service:
compliance_report = await self.security_service.check_compliance(
ComplianceStandard(standard),
trigger_context.get('period', 'immediate')
)
return {
'success': compliance_report is not None,
'compliance_report': asdict(compliance_report) if compliance_report else None,
'standard': standard,
'check_type': check_type
}
else:
return {
'success': False,
'error': 'Security service not available'
}
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error executing compliance check action: {e}")
return {
'success': False,
'error': str(e)
}
# Additional action execution methods would be implemented here
async def _execute_data_processing_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute data processing action"""
return {'success': True, 'message': 'Data processing action executed'}
async def _execute_api_call_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute API call action"""
return {'success': True, 'message': 'API call action executed'}
async def _execute_email_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute email action"""
return {'success': True, 'message': 'Email action executed'}
async def _execute_message_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute message action"""
return {'success': True, 'message': 'Message action executed'}
async def _execute_logging_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute logging action"""
return {'success': True, 'message': 'Logging action executed'}
async def _execute_auditing_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute auditing action"""
return {'success': True, 'message': 'Auditing action executed'}
async def _execute_reporting_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute reporting action"""
return {'success': True, 'message': 'Reporting action executed'}
async def _execute_remediation_action(self, config: Dict[str, Any], trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Execute remediation action"""
return {'success': True, 'message': 'Remediation action executed'}
# Security and compliance checks
async def _pre_execution_security_check(self, automation: WorkflowAutomation, trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Pre-execution security check"""
# Check security level
if automation.automation_type == WorkflowAutomationType.SECURITY:
security_level = WorkflowSecurityLevel.RESTRICTED
else:
security_level = WorkflowSecurityLevel.INTERNAL
# Validate trigger context
if not trigger_context.get('authorized', True):
return {
'passed': False,
'reason': 'Trigger context not authorized'
}
return {'passed': True}
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error in pre-execution security check: {e}")
return {
'passed': False,
'reason': str(e)
}
async def _pre_execution_compliance_check(self, automation: WorkflowAutomation, trigger_context: Dict[str, Any]) -> Dict[str, Any]:
"""Pre-execution compliance check"""
# Check compliance requirements
if automation.automation_type == WorkflowAutomationType.COMPLIANCE:
return {
'passed': True,
'compliance_level': 'compliant'
}
return {'passed': True}
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error in pre-execution compliance check: {e}")
return {
'passed': False,
'reason': str(e)
}
async def _post_execution_security_check(self, automation: WorkflowAutomation, execution_results: List[Dict[str, Any]]) -> Dict[str, Any]:
"""Post-execution security check"""
# Validate execution results
for result in execution_results:
if not result.get('success', False):
logger.warning(f"Security action failed: {result}")
return {'passed': True}
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error in post-execution security check: {e}")
return {
'passed': False,
'reason': str(e)
}
async def _post_execution_compliance_check(self, automation: WorkflowAutomation, execution_results: List[Dict[str, Any]]) -> Dict[str, Any]:
"""Post-execution compliance check"""
# Validate compliance
return {'passed': True}
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error in post-execution compliance check: {e}")
return {
'passed': False,
'reason': str(e)
}
# Notification methods
async def _notify_security_team(self, message: str, urgency: str, context: Dict[str, Any]):
"""Notify security team"""
# Mock implementation
logger.info(f"Security Team Notification: {message} (Urgency: {urgency})")
async def _notify_compliance_officer(self, message: str, urgency: str, context: Dict[str, Any]):
"""Notify compliance officer"""
# Mock implementation
logger.info(f"Compliance Officer Notification: {message} (Urgency: {urgency})")
async def _notify_management(self, message: str, urgency: str, context: Dict[str, Any]):
"""Notify management"""
# Mock implementation
logger.info(f"Management Notification: {message} (Urgency: {urgency})")
async def _notify_slack(self, message: str, urgency: str, context: Dict[str, Any]):
"""Notify Slack"""
# Mock implementation
logger.info(f"Slack Notification: {message} (Urgency: {urgency})")
async def _notify_teams(self, message: str, urgency: str, context: Dict[str, Any]):
"""Notify Teams"""
# Mock implementation
logger.info(f"Teams Notification: {message} (Urgency: {urgency})")
async def _notify_email(self, message: str, urgency: str, context: Dict[str, Any]):
"""Notify via email"""
# Mock implementation
logger.info(f"Email Notification: {message} (Urgency: {urgency})")
# Additional private methods - Full implementations
async def _initialize_automation_templates(self):
"""Initialize automation templates with default templates"""
# Default automation templates for common use cases
default_templates = {
'security_alert_response': {
'name': 'Security Alert Response',
'description': 'Automatically respond to security alerts based on severity',
'type': WorkflowAutomationType.SECURITY.value,
'conditions': [
{
'type': AutomationConditionType.SECURITY_ALERT.value,
'severity': ['high', 'critical']
}
],
'actions': [
{
'type': AutomationActionType.NOTIFICATION.value,
'config': {
'channels': ['security_team'],
'urgency': 'high'
}
},
{
'type': AutomationActionType.WORKFLOW_EXECUTION.value,
'config': {
'workflow_id': 'security_incident_response'
}
}
],
'priority': AutomationPriority.HIGH.value,
'enabled': True
},
'compliance_violation_handling': {
'name': 'Compliance Violation Handling',
'description': 'Handle compliance violations automatically',
'type': WorkflowAutomationType.COMPLIANCEANCE.value,
'conditions': [
{
'type': AutomationConditionType.COMPLIANCE_VIOLATION.value,
'standards': ['SOC2', 'HIPAA', 'GDPR']
}
],
'actions': [
{
'type': AutomationActionType.NOTIFICATION.value,
'config': {
'channels': ['compliance_team'],
'urgency': 'critical'
}
},
{
'type': AutomationActionType.AUDITING.value,
'config': {
'audit_type': 'compliance_violation'
}
}
],
'priority': AutomationPriority.CRITICAL.value,
'enabled': True
},
'daily_security_scan': {
'name': 'Daily Security Scan',
'description': 'Run daily security scans',
'type': WorkflowAutomationType.SECURITY.value,
'conditions': [
{
'type': AutomationConditionType.SCHEDULED.value,
'schedule': '0 2 * * *' # 2 AM daily
}
],
'actions': [
{
'type': AutomationActionType.WORKFLOW_EXECUTION.value,
'config': {
'workflow_id': 'security_scan_workflow'
}
}
],
'priority': AutomationPriority.MEDIUM.value,
'enabled': False # Disabled by default
},
'user_access_review': {
'name': 'User Access Review',
'description': 'Review user access permissions periodically',
'type': WorkflowAutomationType.ACCESS_CONTROL.value,
'conditions': [
{
'type': AutomationConditionType.SCHEDULED.value,
'schedule': '0 9 * * 1' # 9 AM every Monday
}
],
'actions': [
{
'type': AutomationActionType.NOTIFICATION.value,
'config': {
'channels': ['admin_team'],
'urgency': 'medium'
}
},
{
'type': AutomationActionType.REPORTING.value,
'config': {
'report_type': 'user_access_report'
}
}
],
'priority': AutomationPriority.MEDIUM.value,
'enabled': False
}
}
# Load templates from database if available, otherwise use defaults
if self.db:
try:
from sqlalchemy import text
result = self.db.execute(text("SELECT data FROM automation_templates WHERE active = :active"), {"active": True})
for row in result:
template_data = json.loads(row[0]) if isinstance(row[0], str) else row[0]
if 'template_id' in template_data:
self.automation_templates[template_data['template_id']] = template_data
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.warning(f"Could not load templates from database: {e}")
# Add default templates
self.automation_templates.update(default_templates)
logger.info(f"Initialized {len(self.automation_templates)} automation templates")
return True
except Exception as e:
logger.error(f"Error initializing automation templates: {e}")
return False
async def _load_automations(self):
"""Load existing automations from database"""
if not self.db:
logger.warning("No database connection, skipping automation load")
return False
from sqlalchemy import text
# Load active automations
result = self.db.execute(text("""
SELECT automation_id, name, description, type, conditions, actions,
priority, status, enabled, created_by, created_at, updated_at,
schedule, next_run, last_run, execution_count, success_count,
failure_count, last_execution_status, metadata
FROM workflow_automations
WHERE status IN (:active, :paused)
ORDER BY created_at DESC
"""), {
"active": AutomationStatus.ACTIVE.value,
"paused": AutomationStatus.PAUSED.value
})
for row in result:
automation = WorkflowAutomation(
automation_id=row[0],
name=row[1],
description=row[2],
type=row[3],
conditions=json.loads(row[4]) if row[4] else [],
actions=json.loads(row[5]) if row[5] else [],
priority=row[6],
status=AutomationStatus(row[7]),
enabled=row[8],
created_by=row[9],
created_at=datetime.fromisoformat(row[10]) if row[10] else datetime.utcnow(),
updated_at=datetime.fromisoformat(row[11]) if row[11] else datetime.utcnow(),
schedule=row[12],
next_run=datetime.fromisoformat(row[13]) if row[13] else None,
last_run=datetime.fromisoformat(row[14]) if row[14] else None,
execution_count=row[15] or 0,
success_count=row[16] or 0,
failure_count=row[17] or 0,
last_execution_status=row[18],
metadata=json.loads(row[19]) if row[19] else {}
)
self.automations[automation.automation_id] = automation
# Schedule automation if it has a schedule and is enabled
if automation.enabled and automation.schedule and automation.next_run:
await self._schedule_automation(automation, {'type': AutomationConditionType.SCHEDULED.value})
logger.info(f"Loaded {len(self.automations)} automations from database")
return True
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error loading automations: {e}")
return False
async def _initialize_automation_scheduling(self):
"""Initialize automation scheduling system"""
if self.scheduler_running:
logger.warning("Scheduler already running")
return True
# Start the scheduler task
self.scheduler_task = asyncio.create_task(self._scheduler_loop())
self.scheduler_running = True
logger.info("Automation scheduling initialized")
return True
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error initializing automation scheduling: {e}")
return False
async def _scheduler_loop(self):
"""Background scheduler loop"""
while self.scheduler_running:
now = datetime.utcnow()
# Check automations that need to run
for automation_id, automation in self.automations.items():
if automation.enabled and automation.next_run:
if automation.next_run <= now:
logger.info(f"Running scheduled automation: {automation_id}")
await self.execute_automation(
automation_id=automation_id,
trigger_context={'trigger_type': 'scheduled'}
)
# Sleep for a short interval before checking again
await asyncio.sleep(60) # Check every minute
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error in scheduler loop: {e}")
await asyncio.sleep(60) # Wait before retrying
async def _initialize_trigger_listeners(self):
"""Initialize trigger listeners for event-based automations"""
# Register event listeners for different trigger types
event_types = [
AutomationConditionType.EVENT_TRIGGERED.value,
AutomationConditionType.SECURITY_ALERT.value,
AutomationConditionType.COMPLIANCE_VIOLATION.value,
AutomationConditionType.THRESHOLD_EXCEEDED.value,
AutomationConditionType.ANOMALY_DETECTED.value,
AutomationConditionType.SYSTEM_EVENT.value,
AutomationConditionType.USER_ACTION.value,
AutomationConditionType.DATA_CHANGED.value
]
for event_type in event_types:
self.trigger_listeners[event_type] = {
'automations': [],
'callback': self._handle_event_trigger
}
# Find automations with event triggers and register them
for automation_id, automation in self.automations.items():
for condition in automation.conditions:
if condition['type'] in event_types:
if automation_id not in self.trigger_listeners[condition['type']]['automations']:
self.trigger_listeners[condition['type']]['automations'].append(automation_id)
logger.info(f"Initialized trigger listeners for {len(self.trigger_listeners)} event types")
return True
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error initializing trigger listeners: {e}")
return False
async def _handle_event_trigger(self, event_type: str, event_data: Dict[str, Any]):
"""Handle an event trigger"""
if event_type not in self.trigger_listeners:
logger.warning(f"Unknown event type: {event_type}")
return
listener = self.trigger_listeners[event_type]
automation_ids = listener['automations']
for automation_id in automation_ids:
if automation_id in self.automations:
automation = self.automations[automation_id]
if automation.enabled:
await self.execute_automation(
automation_id=automation_id,
trigger_context=event_data
)
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error handling event trigger: {e}")
async def _initialize_integration_endpoints(self):
"""Initialize integration endpoints for platform-specific automations"""
# Validate platform integrations
for platform_name, integration in self.platform_integrations.items():
if integration:
try:
# Test the integration
if hasattr(integration, 'test_connection'):
is_connected = await integration.test_connection()
logger.info(f"Platform {platform_name} integration: {'connected' if is_connected else 'disconnected'}")
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.warning(f"Could not validate {platform_name} integration: {e}")
logger.info("Integration endpoints initialized")
return True
except Exception as e:
logger.error(f"Error initializing integration endpoints: {e}")
return False
async def _start_automation_monitoring(self):
"""Start background automation monitoring"""
# Start monitoring task
asyncio.create_task(self._monitoring_loop())
logger.info("Automation monitoring started")
return True
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error starting automation monitoring: {e}")
return False
async def _monitoring_loop(self):
"""Background monitoring loop for automation health"""
while True:
# Update metrics
self.automation_metrics['total_automations'] = len(self.automations)
self.automation_metrics['active_automations'] = sum(
1 for auto in self.automations.values() if auto.enabled and auto.status == AutomationStatus.ACTIVE
)
# Check for failed automations
for automation_id, automation in self.automations.items():
if automation.last_execution_status == 'failed':
# Check if failure rate is high
if automation.execution_count > 0:
failure_rate = automation.failure_count / automation.execution_count
if failure_rate > 0.5: # More than 50% failure rate
logger.warning(f"Automation {automation_id} has high failure rate: {failure_rate:.2%}")
# Sleep for 5 minutes between checks
await asyncio.sleep(300)
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error in monitoring loop: {e}")
await asyncio.sleep(300)
async def _schedule_automation(self, automation: WorkflowAutomation, condition: Dict[str, Any]):
"""Schedule automation based on condition"""
if condition['type'] == AutomationConditionType.SCHEDULED.value:
schedule = automation.schedule or condition.get('schedule')
if schedule:
# Calculate next run time based on cron schedule
# This is a simplified implementation - use a proper cron library in production
from datetime import timedelta
# For now, just schedule for next day at same time
if automation.next_run:
next_run = automation.next_run + timedelta(days=1)
else:
next_run = datetime.utcnow() + timedelta(days=1)
automation.next_run = next_run
self.scheduled_automations[automation.automation_id] = {
'schedule': schedule,
'next_run': next_run.isoformat()
}
logger.info(f"Scheduled automation {automation.automation_id} for {next_run}")
return True
return False
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error scheduling automation: {e}")
return False
async def _setup_event_trigger(self, automation: WorkflowAutomation, condition: Dict[str, Any]):
"""Setup event-based trigger"""
event_type = condition.get('event_type', condition.get('type'))
if not event_type:
logger.warning(f"No event type specified for automation {automation.automation_id}")
return False
# Register automation for event type
if event_type not in self.trigger_listeners:
self.trigger_listeners[event_type] = {
'automations': [],
'callback': self._handle_event_trigger
}
if automation.automation_id not in self.trigger_listeners[event_type]['automations']:
self.trigger_listeners[event_type]['automations'].append(automation.automation_id)
self.active_triggers[automation.automation_id] = {
'type': 'event',
'event_type': event_type,
'condition': condition,
'enabled': automation.enabled
}
logger.info(f"Setup event trigger for automation {automation.automation_id}: {event_type}")
return True
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error setting up event trigger: {e}")
return False
async def _setup_threshold_trigger(self, automation: WorkflowAutomation, condition: Dict[str, Any]):
"""Setup threshold-based trigger"""
metric = condition.get('metric')
threshold = condition.get('threshold')
operator = condition.get('operator', 'gt') # gt, lt, gte, lte, eq
if not metric or threshold is None:
logger.warning(f"Invalid threshold condition for automation {automation.automation_id}")
return False
self.active_triggers[automation.automation_id] = {
'type': 'threshold',
'metric': metric,
'threshold': threshold,
'operator': operator,
'condition': condition,
'enabled': automation.enabled
}
logger.info(f"Setup threshold trigger for automation {automation.automation_id}: {metric} {operator} {threshold}")
return True
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error setting up threshold trigger: {e}")
return False
async def _setup_anomaly_trigger(self, automation: WorkflowAutomation, condition: Dict[str, Any]):
"""Setup anomaly detection trigger"""
metric = condition.get('metric')
sensitivity = condition.get('sensitivity', 'medium') # low, medium, high
if not metric:
logger.warning(f"Invalid anomaly condition for automation {automation.automation_id}")
return False
self.active_triggers[automation.automation_id] = {
'type': 'anomaly',
'metric': metric,
'sensitivity': sensitivity,
'condition': condition,
'enabled': automation.enabled
}
logger.info(f"Setup anomaly trigger for automation {automation.automation_id}: {metric} (sensitivity: {sensitivity})")
return True
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error setting up anomaly trigger: {e}")
return False
async def _setup_security_trigger(self, automation: WorkflowAutomation, condition: Dict[str, Any]):
"""Setup security event trigger"""
threat_type = condition.get('threat_type')
severity = condition.get('severity', 'medium') # low, medium, high, critical
self.active_triggers[automation.automation_id] = {
'type': 'security',
'threat_type': threat_type,
'severity': severity,
'condition': condition,
'enabled': automation.enabled
}
# Register with security service if available
if self.security_service and hasattr(self.security_service, 'register_security_trigger'):
await self.security_service.register_security_trigger(
automation_id=automation.automation_id,
threat_type=threat_type,
severity=severity,
callback=lambda event: self.execute_automation(automation.automation_id, event)
)
logger.info(f"Setup security trigger for automation {automation.automation_id}: {threat_type} (severity: {severity})")
return True
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error setting up security trigger: {e}")
return False
async def _setup_compliance_trigger(self, automation: WorkflowAutomation, condition: Dict[str, Any]):
"""Setup compliance violation trigger"""
standard = condition.get('standard') # SOC2, HIPAA, GDPR, etc.
violation_type = condition.get('violation_type')
self.active_triggers[automation.automation_id] = {
'type': 'compliance',
'standard': standard,
'violation_type': violation_type,
'condition': condition,
'enabled': automation.enabled
}
# Register with unified service if available
if self.unified_service and hasattr(self.unified_service, 'register_compliance_trigger'):
await self.unified_service.register_compliance_trigger(
automation_id=automation.automation_id,
standard=standard,
violation_type=violation_type,
callback=lambda event: self.execute_automation(automation.automation_id, event)
)
logger.info(f"Setup compliance trigger for automation {automation.automation_id}: {standard} - {violation_type}")
return True
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error setting up compliance trigger: {e}")
return False
async def _setup_platform_triggers(self, platform: str, automation_id: str, config: Dict[str, Any]):
"""Setup platform-specific triggers"""
if platform not in self.platform_integrations:
logger.warning(f"Unknown platform: {platform}")
return False
integration = self.platform_integrations[platform]
if not integration:
logger.warning(f"Platform {platform} integration not available")
return False
# Setup platform-specific triggers based on config
trigger_type = config.get('trigger_type')
if trigger_type == 'webhook':
# Register webhook with platform
if hasattr(integration, 'register_webhook'):
webhook_url = config.get('webhook_url')
events = config.get('events', [])
await integration.register_webhook(webhook_url, events)
logger.info(f"Registered webhook for {platform}: {webhook_url}")
elif trigger_type == 'polling':
# Setup polling interval
if hasattr(integration, 'start_polling'):
interval = config.get('polling_interval', 300) # 5 minutes default
await integration.start_polling(automation_id, interval)
logger.info(f"Started polling for {platform} with interval {interval}s")
elif trigger_type == 'event_subscription':
# Subscribe to platform events
if hasattr(integration, 'subscribe_to_events'):
events = config.get('events', [])
await integration.subscribe_to_events(automation_id, events)
logger.info(f"Subscribed to events for {platform}: {events}")
logger.info(f"Setup platform triggers for {platform}: {automation_id}")
return True
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error setting up platform triggers: {e}")
return False
async def _send_automation_notifications(self, automation: WorkflowAutomation, execution: AutomationExecution):
"""Send notifications based on automation execution"""
# Get notification rules from automation metadata
notification_rules = automation.metadata.get('notification_rules', [])
if not notification_rules:
# Default notification behavior
if execution.status == AutomationStatus.FAILED:
await self._notify_via_slack(
message=f"Automation {automation.name} failed: {execution.error}",
urgency='high'
)
return
# Process each notification rule
for rule in notification_rules:
should_notify = False
# Check if rule matches execution status
if rule.get('status') == execution.status.value:
should_notify = True
# Check if rule is for errors
if rule.get('on_error') and execution.error:
should_notify = True
if should_notify:
channels = rule.get('channels', [])
message = rule.get('message', f"Automation {automation.name} executed with status: {execution.status.value}")
urgency = rule.get('urgency', 'medium')
# Send to each channel
for channel in channels:
if channel.startswith('slack:'):
await self._notify_via_slack(message, urgency)
elif channel.startswith('email:'):
await self._notify_via_email(message, urgency)
elif channel.startswith('teams:'):
await self._notify_via_teams(message, urgency)
logger.info(f"Sent notifications for automation {automation.automation_id}")
return True
except Exception as e:
logger.error(f"Operation failed: {e}")
log_integration_complete(audit_ctx, error=e)
return {'ok': False, 'error': str(e)}
logger.error(f"Error sending automation notifications: {e}")
return False
async def _update_automation_metrics(self, automation: WorkflowAutomation, execution: AutomationExecution):
"""Update automation metrics"""
self.automation_metrics['executed_today'] += 1
self.automation_metrics['executed_this_week'] += 1
self.automation_metrics['executed_this_month'] += 1
# Update success rate
total_executions = sum(self.automation_metrics['executions_by_status'].values())
if total_executions > 0:
successful_executions = self.automation_metrics['executions_by_status'].get('completed', 0)
self.automation_metrics['success_rate'] = successful_executions / total_executions
# Update average execution time
if execution.execution_time > 0:
self.automation_metrics['average_execution_time'] = (
(self.automation_metrics['average_execution_time'] * (total_executions - 1) + execution.execution_time)
/ total_executions
)
async def _log_automation_event(self, automation_id: str, event_type: str, user_id: str, details: Dict[str, Any]):
"""Log automation event"""
if self.security_service:
await self.security_service.audit_event({
'event_type': event_type,
'user_id': user_id,
'resource': 'automation',
'action': 'log',
'result': 'success',
'metadata': {
'automation_id': automation_id,
'details': details
}
})
async def get_service_info(self) -> Dict[str, Any]:
"""Get workflow automation service information"""
return {
"name": "Workflow Automation Service",
"version": "6.0.0",
"description": "Comprehensive workflow automation integrating all enterprise services",
"features": [
"multi_platform_integration",
"security_automations",
"compliance_automations",
"trigger_based_execution",
"scheduled_executions",
"ai_enhanced_automations",
"error_handling",
"monitoring",
"analytics"
],
"supported_automation_types": [t.value for t in WorkflowAutomationType],
"supported_action_types": [t.value for t in AutomationActionType],
"supported_condition_types": [t.value for t in AutomationConditionType],
"supported_priorities": [t.value for t in AutomationPriority],
"status": "ACTIVE"
}
async def close(self):
"""Close workflow automation service"""
# Start audit logging
audit_ctx = log_integration_attempt("atom_workflow_automation", "get_service_info", locals())
# Check circuit breaker
if not await circuit_breaker.is_enabled("atom_workflow_automation"):
logger.warning(f"Circuit breaker is open for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Circuit breaker open"))
raise HTTPException(
status_code=503,
detail=f"Atom_workflow_automation integration temporarily disabled"
)
# Check rate limiter
is_limited, remaining = await rate_limiter.is_rate_limited("atom_workflow_automation")
if is_limited:
logger.warning(f"Rate limit exceeded for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Rate limit exceeded"))
raise HTTPException(
status_code=429,
detail=f"Rate limit exceeded for atom_workflow_automation"
)
# Stop scheduler
if self.scheduler_task:
self.scheduler_task.cancel()
# Close HTTP sessions
for session in self.http_sessions.values():
await session.close()
logger.info("Workflow Automation Service closed")
# Global workflow automation service instance
# Initialize with None values - will be configured when dependencies are available
atom_workflow_automation_service = AtomWorkflowAutomationService({
'database': None, # Would be actual database connection
'cache': None, # Would be actual cache client
'security_service': atom_enterprise_security_service if 'atom_enterprise_security_service' in globals() else None,
'unified_service': atom_enterprise_unified_service if 'atom_enterprise_unified_service' in globals() else None,
'workflow_service': None, # Would be actual workflow service
'ai_service': ai_enhanced_service if 'ai_enhanced_service' in globals() else None,
'ai_integration': atom_ai_integration if 'atom_ai_integration' in globals() else None
})
except Exception as e:
logger.warning(f"Could not initialize global workflow automation service: {e}")
atom_workflow_automation_service = None
# Start audit logging
audit_ctx = log_integration_attempt("atom_workflow_automation", "close", locals())
# Check circuit breaker
if not await circuit_breaker.is_enabled("atom_workflow_automation"):
logger.warning(f"Circuit breaker is open for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Circuit breaker open"))
raise HTTPException(
status_code=503,
detail=f"Atom_workflow_automation integration temporarily disabled"
)
# Check rate limiter
is_limited, remaining = await rate_limiter.is_rate_limited("atom_workflow_automation")
if is_limited:
logger.warning(f"Rate limit exceeded for atom_workflow_automation")
log_integration_complete(audit_ctx, error=Exception("Rate limit exceeded"))
raise HTTPException(
status_code=429,
detail=f"Rate limit exceeded for atom_workflow_automation"
) |