firebase-functions
Version:
Firebase SDK for Cloud Functions
135 lines (133 loc) • 5.23 kB
JavaScript
const require_logger_index = require('../logger/index.js');
const require_params_index = require('../params/index.js');
const require_common_options = require('../common/options.js');
const require_common_encoding = require('../common/encoding.js');
//#region src/v2/options.ts
const MemoryOptionToMB = {
"128MiB": 128,
"256MiB": 256,
"512MiB": 512,
"1GiB": 1024,
"2GiB": 2048,
"4GiB": 4096,
"8GiB": 8192,
"16GiB": 16384,
"32GiB": 32768
};
let globalOptions;
/**
* Sets default options for all functions written using the 2nd gen SDK.
* @param options Options to set as default
*/
function setGlobalOptions(options) {
if (globalOptions) {
require_logger_index.warn("Calling setGlobalOptions twice leads to undefined behavior");
}
globalOptions = options;
}
/**
* Get the currently set default options.
* Used only for trigger generation.
* @internal
*/
function getGlobalOptions() {
return globalOptions || {};
}
/**
* Apply GlobalOptions to trigger definitions.
* @internal
*/
function optionsToTriggerAnnotations(opts) {
const annotation = {};
require_common_encoding.copyIfPresent(annotation, opts, "concurrency", "minInstances", "maxInstances", "ingressSettings", "labels", "vpcConnector", "secrets");
const vpcEgress = opts.vpcEgress ?? opts.vpcConnectorEgressSettings;
if (vpcEgress !== undefined) {
if (vpcEgress === null || vpcEgress instanceof require_common_options.ResetValue) {
annotation.vpcConnectorEgressSettings = null;
} else {
annotation.vpcConnectorEgressSettings = vpcEgress;
}
}
require_common_encoding.convertIfPresent(annotation, opts, "availableMemoryMb", "memory", (mem) => {
return MemoryOptionToMB[mem];
});
require_common_encoding.convertIfPresent(annotation, opts, "regions", "region", (region) => {
if (typeof region === "string") {
return [region];
}
return region;
});
require_common_encoding.convertIfPresent(annotation, opts, "serviceAccountEmail", "serviceAccount", require_common_encoding.serviceAccountFromShorthand);
require_common_encoding.convertIfPresent(annotation, opts, "timeout", "timeoutSeconds", require_common_encoding.durationFromSeconds);
require_common_encoding.convertIfPresent(annotation, opts, "failurePolicy", "retry", (retry) => {
return retry ? { retry: true } : null;
});
return annotation;
}
/**
* Apply GlobalOptions to endpoint manifest.
* @internal
*/
function optionsToEndpoint(opts) {
const endpoint = {};
require_common_encoding.copyIfPresent(endpoint, opts, "omit", "concurrency", "minInstances", "maxInstances", "ingressSettings", "labels", "timeoutSeconds", "cpu");
require_common_encoding.convertIfPresent(endpoint, opts, "serviceAccountEmail", "serviceAccount");
if (opts.vpcEgress && opts.vpcConnectorEgressSettings) {
require_logger_index.warn("vpcEgress and vpcConnectorEgressSettings are both set. Using vpcEgress");
}
const vpcEgress = opts.vpcEgress ?? opts.vpcConnectorEgressSettings;
const connector = opts.vpcConnector;
const networkInterface = opts.networkInterface;
if (connector !== undefined || vpcEgress !== undefined || networkInterface !== undefined) {
const resetConnector = connector === null || connector instanceof require_common_options.ResetValue;
const hasConnector = !!connector;
const resetNetwork = networkInterface === null || networkInterface instanceof require_common_options.ResetValue;
const hasNetwork = !!networkInterface && !resetNetwork;
if (hasNetwork) {
if (!networkInterface.network && !networkInterface.subnetwork) {
throw new Error("At least one of network or subnetwork must be specified in networkInterface.");
}
}
if (hasNetwork && hasConnector) {
throw new Error("Cannot set both vpcConnector and networkInterface");
} else if (resetConnector && !hasNetwork || resetNetwork && !hasConnector) {
endpoint.vpc = require_common_options.RESET_VALUE;
} else {
const vpc = {};
require_common_encoding.convertIfPresent(vpc, opts, "connector", "vpcConnector");
if (vpcEgress !== undefined) {
vpc.egressSettings = vpcEgress;
}
require_common_encoding.convertIfPresent(vpc, opts, "networkInterfaces", "networkInterface", (a) => [a]);
endpoint.vpc = vpc;
}
}
require_common_encoding.convertIfPresent(endpoint, opts, "availableMemoryMb", "memory", (mem) => {
return typeof mem === "object" ? mem : MemoryOptionToMB[mem];
});
require_common_encoding.convertIfPresent(endpoint, opts, "region", "region", (region) => {
if (typeof region === "string") {
return [region];
}
return region;
});
require_common_encoding.convertIfPresent(endpoint, opts, "secretEnvironmentVariables", "secrets", (secrets) => secrets.map((secret) => ({ key: typeof secret === "string" ? secret : secret.name })));
return endpoint;
}
/**
* @hidden
* @alpha
*/
function __getSpec() {
return {
globalOptions: getGlobalOptions(),
params: require_params_index.declaredParams.map((p) => p.toSpec())
};
}
//#endregion
exports.RESET_VALUE = require_common_options.RESET_VALUE;
exports.__getSpec = __getSpec;
exports.getGlobalOptions = getGlobalOptions;
exports.optionsToEndpoint = optionsToEndpoint;
exports.optionsToTriggerAnnotations = optionsToTriggerAnnotations;
exports.setGlobalOptions = setGlobalOptions;