"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.deleteExtensionInstanceTask = exports.configureExtensionInstanceTask = exports.updateExtensionInstanceTask = exports.createExtensionInstanceTask = exports.extensionsDeploymentHandler = void 0; const clc = require("colorette"); const error_1 = require("../../error"); const extensionsApi = require("../../extensions/extensionsApi"); const extensionsHelper_1 = require("../../extensions/extensionsHelper"); const refs = require("../../extensions/refs"); const utils = require("../../utils"); const isRetryable = (err) => err.status === 429 || err.status === 409; function extensionsDeploymentHandler(errorHandler) { return async (task) => { var _a, _b, _c, _d; let result; try { result = await task.run(); } catch (err) { if (isRetryable(err)) { throw err; } errorHandler.record(task.spec.instanceId, task.type, (_d = (_c = (_b = (_a = err.context) === null || _a === void 0 ? void 0 : _a.body) === null || _b === void 0 ? void 0 : _b.error) === null || _c === void 0 ? void 0 : _c.message) !== null && _d !== void 0 ? _d : err); } return result; }; } exports.extensionsDeploymentHandler = extensionsDeploymentHandler; function createExtensionInstanceTask(projectId, instanceSpec, validateOnly = false) { const run = async () => { if (instanceSpec.ref) { await extensionsApi.createInstance({ projectId, instanceId: instanceSpec.instanceId, params: instanceSpec.params, systemParams: instanceSpec.systemParams, extensionVersionRef: refs.toExtensionVersionRef(instanceSpec.ref), allowedEventTypes: instanceSpec.allowedEventTypes, eventarcChannel: instanceSpec.eventarcChannel, validateOnly, }); } else if (instanceSpec.localPath) { const extensionSource = await (0, extensionsHelper_1.createSourceFromLocation)(projectId, instanceSpec.localPath); await extensionsApi.createInstance({ projectId, instanceId: instanceSpec.instanceId, params: instanceSpec.params, systemParams: instanceSpec.systemParams, extensionSource, allowedEventTypes: instanceSpec.allowedEventTypes, eventarcChannel: instanceSpec.eventarcChannel, validateOnly, }); } else { throw new error_1.FirebaseError(`Tried to create extension instance ${instanceSpec.instanceId} without a ref or a local path. This should never happen.`); } printSuccess(instanceSpec.instanceId, "create", validateOnly); return; }; return { run, spec: instanceSpec, type: "create", }; } exports.createExtensionInstanceTask = createExtensionInstanceTask; function updateExtensionInstanceTask(projectId, instanceSpec, validateOnly = false) { const run = async () => { if (instanceSpec.ref) { await extensionsApi.updateInstanceFromRegistry({ projectId, instanceId: instanceSpec.instanceId, extRef: refs.toExtensionVersionRef(instanceSpec.ref), params: instanceSpec.params, systemParams: instanceSpec.systemParams, canEmitEvents: !!instanceSpec.allowedEventTypes, allowedEventTypes: instanceSpec.allowedEventTypes, eventarcChannel: instanceSpec.eventarcChannel, validateOnly, }); } else if (instanceSpec.localPath) { const extensionSource = await (0, extensionsHelper_1.createSourceFromLocation)(projectId, instanceSpec.localPath); await extensionsApi.updateInstance({ projectId, instanceId: instanceSpec.instanceId, extensionSource, validateOnly, params: instanceSpec.params, systemParams: instanceSpec.systemParams, canEmitEvents: !!instanceSpec.allowedEventTypes, allowedEventTypes: instanceSpec.allowedEventTypes, eventarcChannel: instanceSpec.eventarcChannel, }); } else { throw new error_1.FirebaseError(`Tried to update extension instance ${instanceSpec.instanceId} without a ref or a local path. This should never happen.`); } printSuccess(instanceSpec.instanceId, "update", validateOnly); return; }; return { run, spec: instanceSpec, type: "update", }; } exports.updateExtensionInstanceTask = updateExtensionInstanceTask; function configureExtensionInstanceTask(projectId, instanceSpec, validateOnly = false) { const run = async () => { if (instanceSpec.ref) { await extensionsApi.configureInstance({ projectId, instanceId: instanceSpec.instanceId, params: instanceSpec.params, systemParams: instanceSpec.systemParams, canEmitEvents: !!instanceSpec.allowedEventTypes, allowedEventTypes: instanceSpec.allowedEventTypes, eventarcChannel: instanceSpec.eventarcChannel, validateOnly, }); } else if (instanceSpec.localPath) { throw new error_1.FirebaseError(`Tried to configure extension instance ${instanceSpec.instanceId} from a local path. This should never happen.`); } else { throw new error_1.FirebaseError(`Tried to configure extension instance ${instanceSpec.instanceId} without a ref or a local path. This should never happen.`); } printSuccess(instanceSpec.instanceId, "configure", validateOnly); return; }; return { run, spec: instanceSpec, type: "configure", }; } exports.configureExtensionInstanceTask = configureExtensionInstanceTask; function deleteExtensionInstanceTask(projectId, instanceSpec) { const run = async () => { await extensionsApi.deleteInstance(projectId, instanceSpec.instanceId); printSuccess(instanceSpec.instanceId, "delete", false); return; }; return { run, spec: instanceSpec, type: "delete", }; } exports.deleteExtensionInstanceTask = deleteExtensionInstanceTask; function printSuccess(instanceId, type, validateOnly) { const action = validateOnly ? `validated ${type} for` : `${type}d`; utils.logSuccess(clc.bold(clc.green("extensions")) + ` Successfully ${action} ${instanceId}`); }