2019-09-27 18:03:12 +02:00
|
|
|
require('dotenv').config();
|
2021-09-28 16:51:53 +02:00
|
|
|
const path = require('path');
|
|
|
|
const fse = require('fs-extra');
|
2019-09-27 18:03:12 +02:00
|
|
|
const { notarize } = require('electron-notarize');
|
2021-10-29 15:48:43 +02:00
|
|
|
const { deepAssign } = require('builder-util');
|
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';
|
2021-10-29 15:48:43 +02:00
|
|
|
const copyPlugIn = ['darwin', 'mas'].includes(context.electronPlatformName);
|
2019-09-27 18:03:12 +02:00
|
|
|
|
2021-10-29 15:48:43 +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-10-29 15:48:43 +02:00
|
|
|
|
2021-09-28 16:51:53 +02:00
|
|
|
// Resign to sign safari extension
|
2021-10-29 15:48:43 +02:00
|
|
|
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',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (context.packager.packagerOptions.prepackaged == null) {
|
|
|
|
await context.packager.sign(appPath, context.appOutDir, masBuildOptions, context.arch);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
await context.packager.signApp(context, true);
|
|
|
|
}
|
2021-09-28 16:51:53 +02:00
|
|
|
}
|
2021-10-29 15:48:43 +02:00
|
|
|
}
|
2021-09-28 16:51:53 +02:00
|
|
|
|
2021-10-29 15:48:43 +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
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|