-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathcommand.ts
More file actions
253 lines (233 loc) · 7.19 KB
/
command.ts
File metadata and controls
253 lines (233 loc) · 7.19 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
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
import type { CommandHandlerArgs, CommandResult } from '@/core';
import type { Command } from '@/core/commands/command.interface';
import type { AbstractHook } from '@/core/hooks/abstract-hook';
import type {
HookResult,
PostOutputPreparationParams,
PreBuildTransactionParams,
PreExecuteTransactionParams,
PreOutputPreparationParams,
PreSignTransactionParams,
} from '@/core/hooks/types';
export abstract class BaseTransactionCommand<
TNormalisedParams = unknown,
TBuildTransactionResult = unknown,
TSignTransactionResult = unknown,
TExecuteTransactionResult = unknown,
> implements Command {
private commandName: string;
constructor(commandName: string) {
this.commandName = commandName;
}
async execute(args: CommandHandlerArgs): Promise<CommandResult> {
const preNormalizationHookResult =
await this.preParamsNormalizationHook(args);
if (preNormalizationHookResult.breakFlow) {
return this.processHookResult(preNormalizationHookResult);
}
const normalisedParams = await this.normalizeParams(args);
const preBuildTransactionHookResult = await this.preBuildTransactionHook(
args,
{ normalisedParams },
);
if (preBuildTransactionHookResult.breakFlow) {
return this.processHookResult(preBuildTransactionHookResult);
}
const buildTransactionResult = await this.buildTransaction(
args,
normalisedParams,
);
const preSignTransactionHookResult = await this.preSignTransactionHook(
args,
{ normalisedParams, buildTransactionResult },
);
if (preSignTransactionHookResult.breakFlow) {
return this.processHookResult(preSignTransactionHookResult);
}
const signTransactionResult = await this.signTransaction(
args,
normalisedParams,
buildTransactionResult,
);
const preExecuteTransactionHookResult =
await this.preExecuteTransactionHook(args, {
normalisedParams,
buildTransactionResult,
signTransactionResult,
});
if (preExecuteTransactionHookResult.breakFlow) {
return this.processHookResult(preExecuteTransactionHookResult);
}
const executeTransactionResult = await this.executeTransaction(
args,
normalisedParams,
buildTransactionResult,
signTransactionResult,
);
const postExecuteTransactionHookResult =
await this.postExecuteTransactionHook(args, {
normalisedParams,
buildTransactionResult,
signTransactionResult,
executeTransactionResult,
});
if (postExecuteTransactionHookResult.breakFlow) {
return this.processHookResult(postExecuteTransactionHookResult);
}
const result = await this.outputPreparation(
args,
normalisedParams,
buildTransactionResult,
signTransactionResult,
executeTransactionResult,
);
const postOutputHookResult = await this.postOutputPreparationHook(args, {
normalisedParams,
buildTransactionResult,
signTransactionResult,
executeTransactionResult,
outputResult: result,
});
if (postOutputHookResult.breakFlow) {
return this.processHookResult(postOutputHookResult);
}
return result;
}
// Hooks
async preParamsNormalizationHook(
args: CommandHandlerArgs,
): Promise<HookResult> {
return await this.executeHooks(
async (h) =>
h.preParamsPreparationAndNormalizationHook(args, this.commandName),
args.hooks,
);
}
async preBuildTransactionHook(
args: CommandHandlerArgs,
params: PreBuildTransactionParams<TNormalisedParams>,
): Promise<HookResult> {
return await this.executeHooks(
async (h) => h.preBuildTransactionHook(args, params, this.commandName),
args.hooks,
);
}
async preSignTransactionHook(
args: CommandHandlerArgs,
params: PreSignTransactionParams<
TNormalisedParams,
TBuildTransactionResult
>,
): Promise<HookResult> {
return await this.executeHooks(
async (h) => h.preSignTransactionHook(args, params, this.commandName),
args.hooks,
);
}
async preExecuteTransactionHook(
args: CommandHandlerArgs,
params: PreExecuteTransactionParams<
TNormalisedParams,
TBuildTransactionResult,
TSignTransactionResult
>,
): Promise<HookResult> {
return await this.executeHooks(
async (h) => h.preExecuteTransactionHook(args, params, this.commandName),
args.hooks,
);
}
async postExecuteTransactionHook(
args: CommandHandlerArgs,
params: PreOutputPreparationParams<
TNormalisedParams,
TBuildTransactionResult,
TSignTransactionResult,
TExecuteTransactionResult
>,
): Promise<HookResult> {
return await this.executeHooks(
async (h) => h.preOutputPreparationHook(args, params, this.commandName),
args.hooks,
);
}
async postOutputPreparationHook(
args: CommandHandlerArgs,
params: PostOutputPreparationParams<
TNormalisedParams,
TBuildTransactionResult,
TSignTransactionResult,
TExecuteTransactionResult
>,
): Promise<HookResult> {
return await this.executeHooks(
async (h) => h.postOutputPreparationHook(args, params, this.commandName),
args.hooks,
);
}
/**
* Generic hook execution method that executes hooks on all registered hooks.
* Hook-agnostic: just awaits the hook executor without caring about the result.
* @param hookExecutor - The hook function to execute on each hook.
* @param hooks - abstract hooks list registered.
*/
protected async executeHooks(
hookExecutor: (hook: AbstractHook) => Promise<HookResult>,
hooks?: AbstractHook[],
): Promise<HookResult> {
if (!hooks) {
return {
breakFlow: false,
result: {
message: 'no hooks available',
},
};
}
for (const hook of hooks) {
const hookResult = await hookExecutor(hook);
if (hookResult.breakFlow) {
return hookResult;
}
}
return {
breakFlow: false,
result: {
message: 'success',
},
};
}
protected async processHookResult(
hookResult: HookResult,
): Promise<CommandResult> {
return Promise.resolve({
result: hookResult.result,
overrideSchema: hookResult.schema,
overrideHumanTemplate: hookResult.humanTemplate,
});
}
abstract normalizeParams(
args: CommandHandlerArgs,
): Promise<TNormalisedParams>;
abstract buildTransaction(
args: CommandHandlerArgs,
normalisedParams: TNormalisedParams,
): Promise<TBuildTransactionResult>;
abstract signTransaction(
args: CommandHandlerArgs,
normalisedParams: TNormalisedParams,
buildTransactionResult: TBuildTransactionResult,
): Promise<TSignTransactionResult>;
abstract executeTransaction(
args: CommandHandlerArgs,
normalisedParams: TNormalisedParams,
buildTransactionResult: TBuildTransactionResult,
signTransactionResult: TSignTransactionResult,
): Promise<TExecuteTransactionResult>;
abstract outputPreparation(
args: CommandHandlerArgs,
normalisedParams: TNormalisedParams,
buildTransactionResult: TBuildTransactionResult,
signTransactionResult: TSignTransactionResult,
coreActionResult: TExecuteTransactionResult,
): Promise<CommandResult>;
}