mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-10 08:12:42 +08:00
61 lines
2.6 KiB
JavaScript
61 lines
2.6 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.expandMacro = expandMacro;
|
|
const builder_util_1 = require("builder-util");
|
|
function expandMacro(pattern, arch, appInfo, extra = {}, isProductNameSanitized = true) {
|
|
if (arch == null) {
|
|
pattern = pattern
|
|
// tslint:disable-next-line:no-invalid-template-strings
|
|
.replace("-${arch}", "")
|
|
// tslint:disable-next-line:no-invalid-template-strings
|
|
.replace(" ${arch}", "")
|
|
// tslint:disable-next-line:no-invalid-template-strings
|
|
.replace("_${arch}", "")
|
|
// tslint:disable-next-line:no-invalid-template-strings
|
|
.replace("/${arch}", "");
|
|
}
|
|
return pattern.replace(/\${([_a-zA-Z./*+]+)}/g, (match, p1) => {
|
|
switch (p1) {
|
|
case "productName":
|
|
return isProductNameSanitized ? appInfo.sanitizedProductName : appInfo.productName;
|
|
case "arch":
|
|
if (arch == null) {
|
|
// see above, we remove macro if no arch
|
|
return "";
|
|
}
|
|
return arch;
|
|
case "author": {
|
|
const companyName = appInfo.companyName;
|
|
if (companyName == null) {
|
|
throw new builder_util_1.InvalidConfigurationError(`cannot expand pattern "${pattern}": author is not specified`, "ERR_ELECTRON_BUILDER_AUTHOR_UNSPECIFIED");
|
|
}
|
|
return companyName;
|
|
}
|
|
case "platform":
|
|
return process.platform;
|
|
case "channel":
|
|
return appInfo.channel || "latest";
|
|
default: {
|
|
if (p1 in appInfo) {
|
|
return appInfo[p1];
|
|
}
|
|
if (p1.startsWith("env.")) {
|
|
const envName = p1.substring("env.".length);
|
|
const envValue = process.env[envName];
|
|
if (envValue == null) {
|
|
throw new builder_util_1.InvalidConfigurationError(`cannot expand pattern "${pattern}": env ${envName} is not defined`, "ERR_ELECTRON_BUILDER_ENV_NOT_DEFINED");
|
|
}
|
|
return envValue;
|
|
}
|
|
const value = extra[p1];
|
|
if (value == null) {
|
|
throw new builder_util_1.InvalidConfigurationError(`cannot expand pattern "${pattern}": macro ${p1} is not defined`, "ERR_ELECTRON_BUILDER_MACRO_NOT_DEFINED");
|
|
}
|
|
else {
|
|
return value;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
//# sourceMappingURL=macroExpander.js.map
|