fchat-rising/electron/pack.js

149 lines
7.4 KiB
JavaScript
Raw Normal View History

2018-09-28 00:08:10 +00:00
process.env.DEBUG = 'electron-windows-installer:main';
2018-08-10 16:59:37 +00:00
const path = require('path');
const pkg = require(path.join(__dirname, 'package.json'));
const fs = require('fs');
const child_process = require('child_process');
2019-07-07 21:44:32 +00:00
const _ = require('lodash');
2018-08-10 16:59:37 +00:00
const distDir = path.join(__dirname, 'dist');
const isBeta = pkg.version.indexOf('beta') !== -1;
2018-08-18 19:37:53 +00:00
const modules = path.join(__dirname, 'app', 'node_modules');
2019-07-07 21:44:32 +00:00
// const spellcheckerPath = 'spellchecker/build/Release/spellchecker.node',
// keytarPath = 'keytar/build/Release/keytar.node',
// integerPath = 'integer/build/Release/integer.node',
// betterSqlite3 = 'better-sqlite3/build/Release/better_sqlite3.node';
//
// mkdir(path.dirname(path.join(modules, spellcheckerPath)));
// mkdir(path.dirname(path.join(modules, keytarPath)));
// fs.copyFileSync(require.resolve(spellcheckerPath), path.join(modules, spellcheckerPath));
// fs.copyFileSync(require.resolve(keytarPath), path.join(modules, keytarPath));
const includedPaths = [
2020-04-01 22:19:55 +00:00
// 'spellchecker/build/Release/spellchecker.node',
2019-10-21 23:25:59 +00:00
'keytar/build/Release/keytar.node',
2020-04-04 20:30:08 +00:00
'throat',
2020-04-04 20:32:13 +00:00
'node-fetch',
2020-04-04 20:30:08 +00:00
'jquery'
2019-07-07 21:44:32 +00:00
];
_.each(
includedPaths,
(p) => {
let from = p;
let to = p;
if (_.isArray(p)) {
from = p[0];
to = p[1];
}
fs.mkdirSync(path.dirname(path.join(modules, to)), {recursive: true});
fs.copyFileSync(require.resolve(from), path.join(modules, to));
2019-07-07 21:44:32 +00:00
}
);
2018-08-18 19:37:53 +00:00
2018-08-10 16:59:37 +00:00
require('electron-packager')({
dir: path.join(__dirname, 'app'),
out: distDir,
overwrite: true,
name: 'F-Chat',
icon: path.join(__dirname, 'build', 'icon'),
ignore: ['\.map$'],
osxSign: process.argv.length > 2 ? {identity: process.argv[2]} : false,
2022-01-02 22:37:57 +00:00
prune: false,
arch: process.platform === 'darwin' ? ['x64', 'arm64'] : undefined
2018-08-10 16:59:37 +00:00
}).then((appPaths) => {
if (process.env.SKIP_INSTALLER) {
return;
}
2018-08-10 16:59:37 +00:00
if(process.platform === 'win32') {
console.log('Creating Windows installer');
const icon = path.join(__dirname, 'build', 'icon.ico');
2020-06-18 20:43:02 +00:00
const setupName = `F-Chat Rising Setup.exe`;
2018-08-10 16:59:37 +00:00
if(fs.existsSync(path.join(distDir, setupName))) fs.unlinkSync(path.join(distDir, setupName));
const nupkgName = path.join(distDir, `fchat-${pkg.version}-full.nupkg`);
const deltaName = path.join(distDir, `fchat-${pkg.version}-delta.nupkg`);
if(fs.existsSync(nupkgName)) fs.unlinkSync(nupkgName);
if(fs.existsSync(deltaName)) fs.unlinkSync(deltaName);
if(process.argv.length <= 3) console.warn('Warning: Creating unsigned installer');
require('electron-winstaller').createWindowsInstaller({
appDirectory: appPaths[0],
outputDirectory: distDir,
2018-09-28 00:08:10 +00:00
iconUrl: 'file:///%localappdata%\\fchat\\app.ico',
2018-08-10 16:59:37 +00:00
setupIcon: icon,
noMsi: true,
exe: 'F-Chat.exe',
2020-06-18 20:43:02 +00:00
title: 'F-Chat Rising',
2018-08-10 16:59:37 +00:00
setupExe: setupName,
2020-06-23 23:38:16 +00:00
name: 'fchat'
2020-06-18 20:43:02 +00:00
// remoteReleases: 'https://client.f-list.net/win32/' + (isBeta ? '?channel=beta' : ''),
// signWithParams: process.argv.length > 3 ? `/a /f ${process.argv[2]} /p ${process.argv[3]} /fd sha256 /tr http://timestamp.digicert.com /td sha256` : undefined
2019-09-17 17:14:14 +00:00
}).catch((e) => console.error(`Error while creating installer: ${e.message}`));
2018-08-10 16:59:37 +00:00
} else if(process.platform === 'darwin') {
console.log('Creating Mac DMG');
2022-01-02 22:37:57 +00:00
_.each([{ name: 'Intel', path: appPaths[0] }, { name: 'M1', path: appPaths[1] }], (arch) => {
console.log(arch.name, arch.path);
const target = path.join(distDir, `F-Chat Rising ${arch.name}.dmg`);
if(fs.existsSync(target)) fs.unlinkSync(target);
const appPath = path.join(arch.path, 'F-Chat.app');
if(process.argv.length <= 2) console.warn('Warning: Creating unsigned DMG');
require('appdmg')({
basepath: arch.path,
target,
specification: {
title: 'F-Chat Rising',
icon: path.join(__dirname, 'build', 'icon.png'),
background: path.join(__dirname, 'build', 'dmg.png'),
contents: [{x: 555, y: 345, type: 'link', path: '/Applications'}, {x: 555, y: 105, type: 'file', path: appPath}],
'code-sign': process.argv.length > 2 ? {
'signing-identity': process.argv[2]
} : undefined
}
}).on('error', console.error);
const zipName = `F-Chat_Rising_${arch.name}_${pkg.version}.zip`;
const zipPath = path.join(distDir, zipName);
if(fs.existsSync(zipPath)) fs.unlinkSync(zipPath);
const child = child_process.spawn('zip', ['-r', '-y', '-9', zipPath, 'F-Chat.app'], {cwd: arch.path});
child.stdout.on('data', () => {});
child.stderr.on('data', (data) => console.error(data.toString()));
fs.writeFileSync(path.join(distDir, 'updates.json'), JSON.stringify({
releases: [{version: pkg.version, updateTo: {url: 'https://client.f-list.net/darwin/' + zipName}}],
currentRelease: pkg.version
}));
});
2018-08-10 16:59:37 +00:00
} else {
console.log('Creating Linux AppImage');
fs.renameSync(path.join(appPaths[0], 'F-Chat'), path.join(appPaths[0], 'AppRun'));
fs.copyFileSync(path.join(__dirname, 'build', 'icon.png'), path.join(appPaths[0], 'icon.png'));
2018-08-18 19:37:53 +00:00
const libDir = path.join(appPaths[0], 'usr', 'lib'), libSource = path.join(__dirname, 'build', 'linux-libs');
2019-09-17 17:14:14 +00:00
fs.mkdirSync(libDir, {recursive: true});
2018-08-18 19:37:53 +00:00
for(const file of fs.readdirSync(libSource))
fs.copyFileSync(path.join(libSource, file), path.join(libDir, file));
2018-08-10 16:59:37 +00:00
fs.symlinkSync(path.join(appPaths[0], 'icon.png'), path.join(appPaths[0], '.DirIcon'));
fs.writeFileSync(path.join(appPaths[0], 'fchat.desktop'), '[Desktop Entry]\nName=F-Chat\nExec=AppRun\nIcon=icon\nType=Application\nCategories=GTK;GNOME;Utility;');
require('axios').get('https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage', {responseType: 'stream'}).then((res) => {
const downloaded = path.join(distDir, 'appimagetool.AppImage');
2018-08-18 19:37:53 +00:00
const stream = fs.createWriteStream(downloaded);
res.data.pipe(stream);
stream.on('close', () => {
2023-09-03 03:15:15 +00:00
const args = [appPaths[0], 'fchat.AppImage', '-u', 'gh-releases-zsync|hearmeneigh|fchat-rising|latest|F-Chat-Rising-*-linux.AppImage.zsync'];
2018-08-10 16:59:37 +00:00
if(process.argv.length > 2) args.push('-s', '--sign-key', process.argv[2]);
else console.warn('Warning: Creating unsigned AppImage');
2021-03-17 23:29:56 +00:00
if(process.argv.length > 3) args.push('--sign-args', `--no-tty --pinentry-mode loopback --yes --passphrase=${process.argv[3]}`);
2018-08-18 19:37:53 +00:00
fs.chmodSync(downloaded, 0o755);
2018-08-10 16:59:37 +00:00
child_process.spawn(downloaded, ['--appimage-extract'], {cwd: distDir}).on('close', () => {
2019-09-17 17:14:14 +00:00
const child = child_process.spawn(path.join(distDir, 'squashfs-root', 'AppRun'), args, {cwd: distDir, env: {ARCH: 'x86_64'}});
2018-08-10 16:59:37 +00:00
child.stdout.on('data', (data) => console.log(data.toString()));
child.stderr.on('data', (data) => console.error(data.toString()));
});
});
}, (e) => console.error(`HTTP error: ${e.message}`));
}
}, (e) => console.log(`Error while packaging: ${e.message}`));