electron/npm/install.js

70 lines
1.8 KiB
JavaScript
Raw Normal View History

2014-10-20 04:17:38 +00:00
#!/usr/bin/env node
const version = require('./package').version
2015-05-10 20:54:06 +00:00
const fs = require('fs')
const os = require('os')
const path = require('path')
const extract = require('extract-zip')
const { downloadArtifact } = require('@electron/get')
2015-05-10 20:54:06 +00:00
let installedVersion = null
2015-12-09 15:16:56 +00:00
try {
installedVersion = fs.readFileSync(path.join(__dirname, 'dist', 'version'), 'utf-8').replace(/^v/, '')
2016-12-27 19:49:44 +00:00
} catch (ignored) {
2015-12-09 15:16:56 +00:00
// do nothing
}
if (process.env.ELECTRON_SKIP_BINARY_DOWNLOAD) {
process.exit(0)
}
const platformPath = getPlatformPath()
2014-10-20 04:56:49 +00:00
const electronPath = process.env.ELECTRON_OVERRIDE_DIST_PATH || path.join(__dirname, 'dist', platformPath)
if (installedVersion === version && fs.existsSync(electronPath)) {
2015-12-09 15:30:46 +00:00
process.exit(0)
2015-12-09 15:16:56 +00:00
}
// downloads if not cached
downloadArtifact({
version,
artifactName: 'electron',
force: process.env.force_no_cache === 'true',
cacheRoot: process.env.electron_config_cache,
platform: process.env.npm_config_platform || process.platform,
arch: process.env.npm_config_arch || process.arch
}).then((zipPath) => extractFile(zipPath)).catch((err) => onerror(err))
2015-05-07 04:44:10 +00:00
2015-05-10 20:54:06 +00:00
// unzips and makes path.txt point at the correct executable
function extractFile (zipPath) {
2018-09-13 16:10:51 +00:00
extract(zipPath, { dir: path.join(__dirname, 'dist') }, function (err) {
2014-10-20 04:17:38 +00:00
if (err) return onerror(err)
2016-12-27 19:13:15 +00:00
fs.writeFile(path.join(__dirname, 'path.txt'), platformPath, function (err) {
2015-05-10 20:54:06 +00:00
if (err) return onerror(err)
})
2014-10-20 04:17:38 +00:00
})
2015-05-07 04:44:10 +00:00
}
2016-12-27 19:48:14 +00:00
function onerror (err) {
throw err
}
function getPlatformPath () {
const platform = process.env.npm_config_platform || os.platform()
2016-12-27 19:48:14 +00:00
switch (platform) {
case 'darwin':
return 'Electron.app/Contents/MacOS/Electron'
2016-12-27 19:48:14 +00:00
case 'freebsd':
case 'openbsd':
2016-12-27 19:48:14 +00:00
case 'linux':
return 'electron'
2016-12-27 19:48:14 +00:00
case 'win32':
return 'electron.exe'
2016-12-27 19:48:14 +00:00
default:
throw new Error('Electron builds are not available on platform: ' + platform)
}
}