js-moi-logic
Version:
Module to interact with MOI Logic Objects.
92 lines • 3.68 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogicFactory = void 0;
const js_moi_manifest_1 = require("js-moi-manifest");
const js_moi_utils_1 = require("js-moi-utils");
const logic_base_1 = require("./logic-base");
const routine_options_1 = require("./routine-options");
/**
* This class represents a factory for deploying logic.
*/
class LogicFactory extends logic_base_1.LogicBase {
manifest;
encodedManifest;
constructor(manifest, signer) {
super(manifest, signer);
this.manifest = manifest;
this.encodedManifest = js_moi_manifest_1.ManifestCoder.encodeManifest(manifest);
}
/**
* Creates the payload for the logic interaction object.
*
* @param {LogicIxObject} ixObject - The logic interaction object.
* @returns {LogicDeployPayload} The logic deploy payload.
*/
createPayload(ixObject) {
const payload = {
manifest: this.encodedManifest,
callsite: ixObject.routine.name,
};
if (ixObject.routine.accepts && Object.keys(ixObject.routine.accepts).length > 0) {
payload.calldata = this.manifestCoder.encodeArguments(payload.callsite, ...ixObject.arguments);
}
return payload;
}
/**
* Processes the result of a logic interaction response.
*
* @param {LogicIxResponse} response - The logic interaction response.
* @param {number} timeout - The custom timeout for processing the result. (optional)
* @returns {Promise<LogicIxResult>} The processed logic interaction result.
*/
async processResult(response, timeout) {
try {
const result = await response.result(timeout);
return {
logic_id: result[0].logic_id ? result[0].logic_id : "",
error: js_moi_manifest_1.ManifestCoder.decodeException(result[0].error)
};
}
catch (err) {
throw err;
}
}
/**
* Returns the POLO encoded manifest in hexadecimal format.
*
* @returns {string} The encoded manifest.
*/
getEncodedManifest() {
return this.encodedManifest;
}
/**
* Deploys a logic.
*
* @param {string} builderName - The name of the builder routine.
* @param {any[]} args - Optional arguments for the deployment.
* @returns {LogicIxRequest} The logic interaction request object.
* @throws {Error} If the builder routine is not found or if there are missing arguments.
*/
deploy(builderName, ...args) {
const builder = Object.values(this.manifest.elements)
.find(element => {
if (element.kind === "callable") {
const routine = element.data;
return routine.kind === "deploy" &&
builderName === routine.name;
}
return false;
});
if (builder) {
const builderRoutine = builder.data;
const argsLen = args.at(-1) && args.at(-1) instanceof routine_options_1.RoutineOption ? args.length - 1 : args.length;
if (builderRoutine.accepts && (argsLen < Object.keys(builderRoutine.accepts).length)) {
js_moi_utils_1.ErrorUtils.throwError("One or more required arguments are missing.", js_moi_utils_1.ErrorCode.MISSING_ARGUMENT);
}
return this.createIxObject(builderRoutine, ...args).send();
}
js_moi_utils_1.ErrorUtils.throwError("Invalid builder name, builder not found!", js_moi_utils_1.ErrorCode.INVALID_ARGUMENT);
}
}
exports.LogicFactory = LogicFactory;
//# sourceMappingURL=logic-factory.js.map