From: Jérôme Benoit Date: Tue, 24 Sep 2024 17:09:10 +0000 (+0200) Subject: refactor: cleanup task function ops validation X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=f9e6cc35ca852305c1a6e6a784dadfcb8f9712fc;p=poolifier.git refactor: cleanup task function ops validation Signed-off-by: Jérôme Benoit --- diff --git a/src/worker/abstract-worker.ts b/src/worker/abstract-worker.ts index 53ec62f9..04515412 100644 --- a/src/worker/abstract-worker.ts +++ b/src/worker/abstract-worker.ts @@ -264,6 +264,11 @@ export abstract class AbstractWorker< ): void { const { taskFunction, taskFunctionOperation, taskFunctionProperties } = message + if (typeof taskFunction !== 'string') { + throw new Error( + 'Cannot handle task function operation message without task function' + ) + } if (taskFunctionProperties == null) { throw new Error( 'Cannot handle task function operation message without task function properties' @@ -272,25 +277,18 @@ export abstract class AbstractWorker< let response: TaskFunctionOperationResult switch (taskFunctionOperation) { case 'add': - if (typeof taskFunction === 'string') { - response = this.addTaskFunction(taskFunctionProperties.name, { - // eslint-disable-next-line @typescript-eslint/no-implied-eval, no-new-func, @typescript-eslint/no-unsafe-call - taskFunction: new Function( - `return ${taskFunction}` - )() as TaskFunction, - ...(taskFunctionProperties.priority != null && { - priority: taskFunctionProperties.priority, - }), - ...(taskFunctionProperties.strategy != null && { - strategy: taskFunctionProperties.strategy, - }), - }) - } else { - response = { - error: new Error("'taskFunction' property is not a string"), - status: false, - } - } + response = this.addTaskFunction(taskFunctionProperties.name, { + // eslint-disable-next-line @typescript-eslint/no-implied-eval, no-new-func, @typescript-eslint/no-unsafe-call + taskFunction: new Function( + `return ${taskFunction}` + )() as TaskFunction, + ...(taskFunctionProperties.priority != null && { + priority: taskFunctionProperties.priority, + }), + ...(taskFunctionProperties.strategy != null && { + strategy: taskFunctionProperties.strategy, + }), + }) break case 'default': response = this.setDefaultTaskFunction(taskFunctionProperties.name)