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
| import { ExecutionContext } from './WorkflowEngine';
export interface NodeExecutor { execute(config: any, inputData: any, context: ExecutionContext): Promise<{ success: boolean; data?: any; error?: string; }>; }
export class NodeRegistry { private executors: Map<string, NodeExecutor> = new Map();
register(nodeType: string, executor: NodeExecutor) { this.executors.set(nodeType, executor); console.log(`✅ 节点类型已注册: ${nodeType}`); }
getExecutor(nodeType: string): NodeExecutor | undefined { return this.executors.get(nodeType); }
registerBuiltinNodes() { this.register('http_request', new HttpRequestExecutor());
this.register('email', new EmailExecutor());
this.register('condition', new ConditionExecutor());
this.register('transform', new TransformExecutor());
this.register('slack_message', new SlackMessageExecutor());
this.register('github_action', new GitHubActionExecutor()); } }
class HttpRequestExecutor implements NodeExecutor { async execute(config: any, inputData: any, context: ExecutionContext) { try { const axios = require('axios');
const requestConfig = { url: this.replaceVariables(config.url || inputData.url, inputData), method: config.method || 'GET', headers: config.headers || {}, data: config.body || inputData.body, timeout: config.timeout || 30000 };
if (config.auth) { if (config.auth.type === 'bearer') { requestConfig.headers.Authorization = `Bearer ${config.auth.token}`; } else if (config.auth.type === 'basic') { requestConfig.auth = { username: config.auth.username, password: config.auth.password }; } }
const response = await axios(requestConfig);
return { success: true, data: { status: response.status, statusText: response.statusText, headers: response.headers, body: response.data, url: response.config.url } }; } catch (error) { return { success: false, error: `HTTP请求失败: ${error.response?.data?.message || error.message}` }; } }
private replaceVariables(template: string, variables: any): string { if (!template) return '';
return template.replace(/\{\{([^}]+)\}\}/g, (match, key) => { const keys = key.trim().split('.'); let value = variables;
for (const k of keys) { if (value && typeof value === 'object' && k in value) { value = value[k]; } else { return match; } }
return String(value); }); } }
class ConditionExecutor implements NodeExecutor { async execute(config: any, inputData: any, context: ExecutionContext) { try { const { field, operator, value } = config; const actualValue = this.getNestedValue(inputData, field);
let result = false;
switch (operator) { case 'equals': result = actualValue === value; break; case 'not_equals': result = actualValue !== value; break; case 'greater_than': result = Number(actualValue) > Number(value); break; case 'less_than': result = Number(actualValue) < Number(value); break; case 'greater_equal': result = Number(actualValue) >= Number(value); break; case 'less_equal': result = Number(actualValue) <= Number(value); break; case 'contains': result = String(actualValue).includes(String(value)); break; case 'not_contains': result = !String(actualValue).includes(String(value)); break; case 'starts_with': result = String(actualValue).startsWith(String(value)); break; case 'ends_with': result = String(actualValue).endsWith(String(value)); break; case 'regex': result = new RegExp(value).test(String(actualValue)); break; case 'is_empty': result = !actualValue || actualValue === '' || actualValue === null || actualValue === undefined; break; case 'is_not_empty': result = !!actualValue && actualValue !== '' && actualValue !== null && actualValue !== undefined; break; default: throw new Error(`不支持的操作符: ${operator}`); }
return { success: true, data: { result, actualValue, expectedValue: value, operator, field } }; } catch (error) { return { success: false, error: `条件判断失败: ${error.message}` }; } }
private getNestedValue(obj: any, path: string): any { return path.split('.').reduce((current, key) => { return current && current[key] !== undefined ? current[key] : undefined; }, obj); } }
class SlackMessageExecutor implements NodeExecutor { async execute(config: any, inputData: any, context: ExecutionContext) { try { const { WebClient } = require('@slack/web-api');
const connectorManager = new (require('./ConnectorManager').ConnectorManager)(); const slackConnector = await connectorManager.getConnector( context.userId, 'slack', config.connectorId );
if (!slackConnector) { throw new Error('Slack连接器未配置或已失效'); }
const slack = new WebClient(slackConnector.config.accessToken);
const message = this.replaceVariables(config.message, inputData); const channel = config.channel || inputData.channel;
if (!channel) { throw new Error('未指定Slack频道'); }
const messageOptions: any = { channel, text: message };
if (config.blocks && Array.isArray(config.blocks)) { messageOptions.blocks = config.blocks.map(block => this.processSlackBlock(block, inputData) ); }
if (config.attachments && Array.isArray(config.attachments)) { messageOptions.attachments = config.attachments; }
if (config.threadTs || inputData.threadTs) { messageOptions.thread_ts = config.threadTs || inputData.threadTs; }
const result = await slack.chat.postMessage(messageOptions);
return { success: true, data: { messageId: result.ts, channel: result.channel, permalink: await this.getPermalink(slack, result.channel, result.ts) } }; } catch (error) { return { success: false, error: `发送Slack消息失败: ${error.message}` }; } }
private replaceVariables(template: string, variables: any): string { if (!template) return '';
return template.replace(/\{\{([^}]+)\}\}/g, (match, key) => { const keys = key.trim().split('.'); let value = variables;
for (const k of keys) { if (value && typeof value === 'object' && k in value) { value = value[k]; } else { return match; } }
return String(value); }); }
private processSlackBlock(block: any, variables: any): any { if (typeof block === 'string') { return this.replaceVariables(block, variables); } else if (Array.isArray(block)) { return block.map(item => this.processSlackBlock(item, variables)); } else if (typeof block === 'object' && block !== null) { const processedBlock = {}; for (const [key, value] of Object.entries(block)) { processedBlock[key] = this.processSlackBlock(value, variables); } return processedBlock; } return block; }
private async getPermalink(slack: any, channel: string, ts: string): Promise<string> { try { const result = await slack.chat.getPermalink({ channel, message_ts: ts }); return result.permalink; } catch (error) { return ''; } } }
class EmailExecutor implements NodeExecutor { async execute(config: any, inputData: any, context: ExecutionContext) { try { const nodemailer = require('nodemailer');
const connectorManager = new (require('./ConnectorManager').ConnectorManager)(); const emailConnector = await connectorManager.getConnector( context.userId, 'email', config.connectorId );
if (!emailConnector) { throw new Error('邮件连接器未配置或已失效'); }
const transporter = nodemailer.createTransporter({ host: emailConnector.config.host, port: emailConnector.config.port, secure: emailConnector.config.secure, auth: { user: emailConnector.config.username, pass: emailConnector.config.password } });
const mailOptions = { from: config.from || emailConnector.config.from, to: this.replaceVariables(config.to, inputData), cc: config.cc ? this.replaceVariables(config.cc, inputData) : undefined, bcc: config.bcc ? this.replaceVariables(config.bcc, inputData) : undefined, subject: this.replaceVariables(config.subject, inputData), text: config.textContent ? this.replaceVariables(config.textContent, inputData) : undefined, html: config.htmlContent ? this.replaceVariables(config.htmlContent, inputData) : undefined, attachments: config.attachments || undefined };
const result = await transporter.sendMail(mailOptions);
return { success: true, data: { messageId: result.messageId, accepted: result.accepted, rejected: result.rejected } }; } catch (error) { return { success: false, error: `发送邮件失败: ${error.message}` }; } }
private replaceVariables(template: string, variables: any): string { if (!template) return '';
return template.replace(/\{\{([^}]+)\}\}/g, (match, key) => { const keys = key.trim().split('.'); let value = variables;
for (const k of keys) { if (value && typeof value === 'object' && k in value) { value = value[k]; } else { return match; } }
return String(value); }); } }
class TransformExecutor implements NodeExecutor { async execute(config: any, inputData: any, context: ExecutionContext) { try { const { script, language = 'javascript' } = config;
if (language === 'javascript') { return this.executeJavaScript(script, inputData, context); } else { throw new Error(`不支持的脚本语言: ${language}`); } } catch (error) { return { success: false, error: `数据转换失败: ${error.message}` }; } }
private async executeJavaScript(script: string, inputData: any, context: ExecutionContext) { try { const vm = require('vm'); const sandbox = { input: inputData, output: {}, console: { log: (...args) => console.log(`[Transform ${context.instanceId}]`, ...args) }, JSON, Math, Date, String, Number, Array, Object };
const vmContext = vm.createContext(sandbox); vm.runInContext(script, vmContext, { timeout: 30000, displayErrors: true });
return { success: true, data: sandbox.output }; } catch (error) { return { success: false, error: `JavaScript执行失败: ${error.message}` }; } } }
class GitHubActionExecutor implements NodeExecutor { async execute(config: any, inputData: any, context: ExecutionContext) { try { const { Octokit } = require('@octokit/rest');
const connectorManager = new (require('./ConnectorManager').ConnectorManager)(); const githubConnector = await connectorManager.getConnector( context.userId, 'github', config.connectorId );
if (!githubConnector) { throw new Error('GitHub连接器未配置或已失效'); }
const octokit = new Octokit({ auth: githubConnector.config.accessToken });
const { action, owner, repo } = config;
switch (action) { case 'create_issue': return await this.createIssue(octokit, config, inputData); case 'create_pr': return await this.createPullRequest(octokit, config, inputData); case 'add_comment': return await this.addComment(octokit, config, inputData); case 'create_release': return await this.createRelease(octokit, config, inputData); default: throw new Error(`不支持的GitHub操作: ${action}`); } } catch (error) { return { success: false, error: `GitHub操作失败: ${error.message}` }; } }
private async createIssue(octokit: any, config: any, inputData: any) { const result = await octokit.issues.create({ owner: config.owner, repo: config.repo, title: this.replaceVariables(config.title, inputData), body: this.replaceVariables(config.body, inputData), labels: config.labels || [], assignees: config.assignees || [] });
return { success: true, data: { issueNumber: result.data.number, issueUrl: result.data.html_url, issueId: result.data.id } }; }
private async createPullRequest(octokit: any, config: any, inputData: any) { const result = await octokit.pulls.create({ owner: config.owner, repo: config.repo, title: this.replaceVariables(config.title, inputData), body: this.replaceVariables(config.body, inputData), head: config.head, base: config.base || 'main' });
return { success: true, data: { prNumber: result.data.number, prUrl: result.data.html_url, prId: result.data.id } }; }
private async addComment(octokit: any, config: any, inputData: any) { const result = await octokit.issues.createComment({ owner: config.owner, repo: config.repo, issue_number: config.issueNumber || inputData.issueNumber, body: this.replaceVariables(config.body, inputData) });
return { success: true, data: { commentId: result.data.id, commentUrl: result.data.html_url } }; }
private async createRelease(octokit: any, config: any, inputData: any) { const result = await octokit.repos.createRelease({ owner: config.owner, repo: config.repo, tag_name: this.replaceVariables(config.tagName, inputData), name: this.replaceVariables(config.name, inputData), body: this.replaceVariables(config.body, inputData), draft: config.draft || false, prerelease: config.prerelease || false });
return { success: true, data: { releaseId: result.data.id, releaseUrl: result.data.html_url, tagName: result.data.tag_name } }; }
private replaceVariables(template: string, variables: any): string { if (!template) return '';
return template.replace(/\{\{([^}]+)\}\}/g, (match, key) => { const keys = key.trim().split('.'); let value = variables;
for (const k of keys) { if (value && typeof value === 'object' && k in value) { value = value[k]; } else { return match; } }
return String(value); }); } }
|