bitwarden-desktop/scripts/after-sign.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
2.1 KiB
JavaScript
Raw Normal View History

2022-02-24 20:50:19 +01:00
/* eslint-disable @typescript-eslint/no-var-requires, no-console */
2019-09-27 18:03:12 +02:00
require("dotenv").config();
2021-09-28 16:51:53 +02:00
const path = require("path");
2022-02-24 20:50:19 +01:00
const { deepAssign } = require("builder-util");
2022-02-24 20:50:19 +01:00
const { notarize } = require("electron-notarize");
const fse = require("fs-extra");
2019-09-27 18:03:12 +02:00
exports.default = run;
async function run(context) {
2019-09-30 15:32:33 +02:00
console.log("## After sign");
2019-09-27 23:27:57 +02:00
// console.log(context);
2019-09-27 18:03:12 +02:00
2020-09-22 23:02:33 +02:00
const appName = context.packager.appInfo.productFilename;
const appPath = `${context.appOutDir}/${appName}.app`;
2019-09-27 18:03:12 +02:00
const macBuild = context.electronPlatformName === "darwin";
const copyPlugIn = ["darwin", "mas"].includes(context.electronPlatformName);
2019-09-27 18:03:12 +02:00
if (copyPlugIn) {
2021-09-28 16:51:53 +02:00
// Copy Safari plugin to work-around https://github.com/electron-userland/electron-builder/issues/5552
const plugIn = path.join(__dirname, "../PlugIns");
if (fse.existsSync(plugIn)) {
fse.mkdirSync(path.join(appPath, "Contents/PlugIns"));
fse.copySync(
path.join(plugIn, "safari.appex"),
path.join(appPath, "Contents/PlugIns/safari.appex")
);
2021-09-28 16:51:53 +02:00
// Resign to sign safari extension
if (context.electronPlatformName === "mas") {
const masBuildOptions = deepAssign(
{},
context.packager.platformSpecificBuildOptions,
context.packager.config.mas
);
if (context.targets.some((e) => e.name === "mas-dev")) {
deepAssign(masBuildOptions, {
type: "development",
});
2021-09-28 16:51:53 +02:00
}
if (context.packager.packagerOptions.prepackaged == null) {
await context.packager.sign(appPath, context.appOutDir, masBuildOptions, context.arch);
2021-12-20 15:47:17 +01:00
}
} else {
await context.packager.signApp(context, true);
2021-12-20 15:47:17 +01:00
}
}
2021-12-20 15:47:17 +01:00
}
2021-09-28 16:51:53 +02:00
if (macBuild) {
2019-09-27 18:03:12 +02:00
console.log("### Notarizing " + appPath);
2020-09-22 22:55:40 +02:00
const appleId = process.env.APPLE_ID_USERNAME || process.env.APPLEID;
const appleIdPassword = process.env.APPLE_ID_PASSWORD || `@keychain:AC_PASSWORD`;
2019-09-27 18:03:12 +02:00
return await notarize({
appBundleId: "com.bitwarden.desktop",
appPath: appPath,
appleId: appleId,
2020-09-22 22:55:40 +02:00
appleIdPassword: appleIdPassword,
2019-09-27 18:03:12 +02:00
});
}
}