forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.ts
More file actions
142 lines (130 loc) · 4.86 KB
/
plugin.ts
File metadata and controls
142 lines (130 loc) · 4.86 KB
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
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the "Elastic License
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
* Public License v 1"; you may not use this file except in compliance with, at
* your election, the "Elastic License 2.0", the "GNU Affero General Public
* License v3.0 only", or the "Server Side Public License, v 1".
*/
import type {
CoreSetup,
CoreStart,
Logger,
Plugin,
PluginInitializerContext,
} from '@kbn/core/server';
import type { WorkflowsClient, WorkflowsClientProvider } from '@kbn/workflows/server/types';
import { registerGetStepDefinitionsRoute } from './routes/get_step_definitions';
import { registerGetTriggerDefinitionsRoute } from './routes/get_trigger_definitions';
import { ServerStepRegistry } from './step_registry';
import { registerInternalStepDefinitions } from './steps';
import { TriggerRegistry } from './trigger_registry';
import { registerInternalTriggerDefinitions } from './triggers';
import type {
WorkflowsExtensionsRequestHandlerContext,
WorkflowsExtensionsServerPluginSetup,
WorkflowsExtensionsServerPluginSetupDeps,
WorkflowsExtensionsServerPluginStart,
WorkflowsExtensionsServerPluginStartDeps,
} from './types';
export class WorkflowsExtensionsServerPlugin
implements
Plugin<
WorkflowsExtensionsServerPluginSetup,
WorkflowsExtensionsServerPluginStart,
WorkflowsExtensionsServerPluginSetupDeps,
WorkflowsExtensionsServerPluginStartDeps
>
{
private readonly logger: Logger;
private readonly stepRegistry: ServerStepRegistry;
private readonly triggerRegistry: TriggerRegistry;
private workflowsClientProvider: WorkflowsClientProvider | undefined;
constructor(initializerContext: PluginInitializerContext) {
this.logger = initializerContext.logger.get();
this.stepRegistry = new ServerStepRegistry(this.logger);
this.triggerRegistry = new TriggerRegistry();
}
public setup(
core: CoreSetup<WorkflowsExtensionsServerPluginStartDeps>,
plugins: WorkflowsExtensionsServerPluginSetupDeps
): WorkflowsExtensionsServerPluginSetup {
// Register the workflows client provider to the workflows request context
core.http.registerRouteHandlerContext<WorkflowsExtensionsRequestHandlerContext, 'workflows'>(
'workflows',
(_context, request) => {
if (!this.workflowsClientProvider) {
return this.getNoopWorkflowsClient();
}
return this.workflowsClientProvider(request);
}
);
const router = core.http.createRouter();
registerGetStepDefinitionsRoute(router, this.stepRegistry);
registerGetTriggerDefinitionsRoute(router, this.triggerRegistry);
registerInternalStepDefinitions(this.stepRegistry);
registerInternalTriggerDefinitions(this.triggerRegistry);
return {
registerStepDefinition: (definition) => {
this.stepRegistry.register(definition);
},
registerTriggerDefinition: (definition) => {
this.triggerRegistry.register(definition);
},
registerWorkflowsClientProvider: (provider) => {
if (this.workflowsClientProvider) {
throw new Error('Workflows client provider already set');
}
this.workflowsClientProvider = provider;
},
};
}
public start(
_core: CoreStart,
_plugins: WorkflowsExtensionsServerPluginStartDeps
): WorkflowsExtensionsServerPluginStart {
this.triggerRegistry.freeze();
return {
getStepDefinition: (stepTypeId: string) => {
return this.stepRegistry.get(stepTypeId);
},
hasStepDefinition: (stepTypeId: string) => {
return this.stepRegistry.has(stepTypeId);
},
getAllStepDefinitions: () => {
return this.stepRegistry.getAll();
},
getAllTriggerDefinitions: () => {
return this.triggerRegistry.list();
},
getTriggerDefinition: (triggerId: string) => {
return this.triggerRegistry.get(triggerId);
},
isReady: async () => {
await this.stepRegistry.whenReady();
},
getClient: async (request) => {
if (!this.workflowsClientProvider) {
return this.getNoopWorkflowsClient();
}
return this.workflowsClientProvider(request);
},
};
}
public stop() {}
/**
* Returns a noop workflows client to avoid errors when the workflows client provider is not set.
* This scenario should never happen, but it's a fallback to avoid errors in case not all workflows plugins are enabled.
* @returns A noop workflows client
*/
private getNoopWorkflowsClient(): WorkflowsClient {
return {
isWorkflowsAvailable: false,
emitEvent: async () => {
this.logger.warn(
'No workflows client provider set, using noop emitEvent to avoid errors. Trigger event ignored.'
);
},
};
}
}