2017-03-27 14:09:27 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
const path = require('path');
|
|
|
|
const fs = require('fs');
|
|
|
|
const meow = require('meow');
|
|
|
|
const appdmg = require('appdmg');
|
|
|
|
const plist = require('plist');
|
|
|
|
const Ora = require('ora');
|
|
|
|
const execa = require('execa');
|
2019-05-12 16:40:16 +00:00
|
|
|
const composeIcon = require('./compose-icon');
|
2017-03-27 14:09:27 +00:00
|
|
|
|
2018-04-29 12:07:51 +00:00
|
|
|
if (process.platform !== 'darwin') {
|
|
|
|
console.error('macOS only');
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2017-03-27 14:09:27 +00:00
|
|
|
const cli = meow(`
|
2018-04-29 12:02:41 +00:00
|
|
|
Usage
|
2018-04-29 11:57:59 +00:00
|
|
|
$ create-dmg <app> [destination]
|
2018-04-29 12:02:41 +00:00
|
|
|
|
2018-04-29 13:58:01 +00:00
|
|
|
Options
|
|
|
|
--overwrite Overwrite existing DMG with the same name
|
|
|
|
|
2018-04-29 12:02:41 +00:00
|
|
|
Examples
|
2017-03-27 14:09:27 +00:00
|
|
|
$ create-dmg 'Lungo.app'
|
2018-04-29 12:02:41 +00:00
|
|
|
$ create-dmg 'Lungo.app' Build/Releases
|
2018-04-29 13:58:01 +00:00
|
|
|
`, {
|
|
|
|
flags: {
|
|
|
|
overwrite: {
|
|
|
|
type: 'boolean'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2017-03-27 14:09:27 +00:00
|
|
|
|
2018-04-29 12:07:51 +00:00
|
|
|
let [appPath, destPath] = cli.input;
|
2017-03-27 14:09:27 +00:00
|
|
|
|
2018-04-29 12:07:51 +00:00
|
|
|
if (!appPath) {
|
2017-03-27 14:09:27 +00:00
|
|
|
console.error('Specify an app');
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2018-04-29 12:07:51 +00:00
|
|
|
if (!destPath) {
|
|
|
|
destPath = process.cwd();
|
2018-04-29 11:57:59 +00:00
|
|
|
}
|
|
|
|
|
2017-03-31 02:04:34 +00:00
|
|
|
let infoPlist;
|
|
|
|
try {
|
|
|
|
infoPlist = fs.readFileSync(path.join(appPath, 'Contents/Info.plist'), 'utf8');
|
2018-10-17 07:59:58 +00:00
|
|
|
} catch (error) {
|
|
|
|
if (error.code === 'ENOENT') {
|
2018-04-29 12:07:51 +00:00
|
|
|
console.error(`Could not find \`${path.relative(process.cwd(), appPath)}\``);
|
2017-03-31 02:04:34 +00:00
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2018-10-17 07:59:58 +00:00
|
|
|
throw error;
|
2017-03-31 02:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const appInfo = plist.parse(infoPlist);
|
2018-04-29 13:51:47 +00:00
|
|
|
const appName = appInfo.CFBundleDisplayName || appInfo.CFBundleName;
|
2019-05-12 16:40:16 +00:00
|
|
|
const appIconName = appInfo.CFBundleIconFile.replace(/\.icns/, '');
|
2018-04-29 13:46:11 +00:00
|
|
|
const dmgPath = path.join(destPath, `${appName} ${appInfo.CFBundleShortVersionString}.dmg`);
|
2017-03-27 14:09:27 +00:00
|
|
|
|
|
|
|
const ora = new Ora('Creating DMG');
|
|
|
|
ora.start();
|
|
|
|
|
2019-05-12 16:40:16 +00:00
|
|
|
async function init() {
|
|
|
|
if (cli.flags.overwrite) {
|
|
|
|
try {
|
|
|
|
fs.unlinkSync(dmgPath);
|
|
|
|
} catch (_) {}
|
2017-03-27 14:09:27 +00:00
|
|
|
}
|
|
|
|
|
2019-05-12 16:40:16 +00:00
|
|
|
ora.text = 'Creating icon';
|
|
|
|
const composedIconPath = await composeIcon(path.join(appPath, 'Contents/Resources', `${appIconName}.icns`));
|
|
|
|
|
|
|
|
const ee = appdmg({
|
|
|
|
target: dmgPath,
|
|
|
|
basepath: process.cwd(),
|
|
|
|
specification: {
|
|
|
|
title: appName,
|
|
|
|
icon: composedIconPath,
|
|
|
|
//
|
|
|
|
// Use transparent background and `background-color` option when this is fixed:
|
|
|
|
// https://github.com/LinusU/node-appdmg/issues/135
|
|
|
|
background: path.join(__dirname, 'assets/dmg-background.png'),
|
|
|
|
'icon-size': 160,
|
|
|
|
format: 'ULFO',
|
|
|
|
window: {
|
|
|
|
size: {
|
|
|
|
width: 660,
|
|
|
|
height: 400
|
|
|
|
}
|
|
|
|
},
|
|
|
|
contents: [
|
|
|
|
{
|
|
|
|
x: 180,
|
|
|
|
y: 170,
|
|
|
|
type: 'file',
|
|
|
|
path: appPath
|
|
|
|
},
|
|
|
|
{
|
|
|
|
x: 480,
|
|
|
|
y: 170,
|
|
|
|
type: 'link',
|
|
|
|
path: '/Applications'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
});
|
2017-03-27 14:09:27 +00:00
|
|
|
|
2019-05-12 16:40:16 +00:00
|
|
|
ee.on('progress', info => {
|
|
|
|
if (info.type === 'step-begin') {
|
|
|
|
ora.text = info.title;
|
2018-05-01 14:37:08 +00:00
|
|
|
}
|
2019-05-12 16:40:16 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
ee.on('finish', async () => {
|
|
|
|
try {
|
|
|
|
ora.text = 'Replacing DMG icon';
|
|
|
|
// Seticon is a native tool to change files icons (Source: https://github.com/sveinbjornt/osxiconutils)
|
|
|
|
await execa(path.join(__dirname, 'seticon'), [composedIconPath, dmgPath]);
|
|
|
|
|
|
|
|
ora.text = 'Code signing DMG';
|
|
|
|
let identity;
|
|
|
|
const {stdout} = await execa('security', ['find-identity', '-v', '-p', 'codesigning']);
|
|
|
|
if (stdout.includes('Developer ID Application:')) {
|
|
|
|
identity = 'Developer ID Application';
|
|
|
|
} else if (stdout.includes('Mac Developer:')) {
|
|
|
|
identity = 'Mac Developer';
|
|
|
|
} else {
|
|
|
|
const err = new Error();
|
|
|
|
err.stderr = 'No usable identity found';
|
|
|
|
throw err;
|
|
|
|
}
|
2018-05-01 14:37:08 +00:00
|
|
|
|
2019-05-12 16:40:16 +00:00
|
|
|
await execa('codesign', ['--sign', identity, dmgPath]);
|
|
|
|
const {stderr} = await execa('codesign', [dmgPath, '--display', '--verbose=2']);
|
|
|
|
|
|
|
|
const match = /^Authority=(.*)$/m.exec(stderr);
|
|
|
|
if (!match) {
|
|
|
|
ora.fail('Not code signed');
|
|
|
|
process.exit(1);
|
|
|
|
}
|
2017-03-27 14:09:27 +00:00
|
|
|
|
2019-05-12 16:40:16 +00:00
|
|
|
ora.info(`Code signing identity: ${match[1]}`).start();
|
|
|
|
ora.succeed('DMG created');
|
|
|
|
} catch (error) {
|
|
|
|
ora.fail(`Code signing failed. The DMG is fine, just not code signed.\n${error.stderr.trim()}`);
|
|
|
|
process.exit(2);
|
2017-03-27 14:09:27 +00:00
|
|
|
}
|
2019-05-12 16:40:16 +00:00
|
|
|
});
|
2017-03-27 14:09:27 +00:00
|
|
|
|
2019-05-12 16:40:16 +00:00
|
|
|
ee.on('error', error => {
|
|
|
|
ora.fail(error);
|
|
|
|
process.exit(1);
|
|
|
|
});
|
|
|
|
}
|
2017-03-27 14:09:27 +00:00
|
|
|
|
2019-05-12 16:40:16 +00:00
|
|
|
init().catch(error => {
|
2018-04-29 12:07:51 +00:00
|
|
|
ora.fail(error);
|
2017-03-27 14:09:27 +00:00
|
|
|
process.exit(1);
|
|
|
|
});
|