-
Notifications
You must be signed in to change notification settings - Fork 91
/
updater.js
416 lines (378 loc) · 11.3 KB
/
updater.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
import child_process from 'node:child_process';
import fs from 'node:fs';
import os from 'node:os';
import path from 'node:path';
import process from 'node:process';
import del from 'del';
import ncp from 'ncp';
import semver from 'semver';
let platform = process.platform;
platform = /^win/.test(platform) ? 'win' : /^darwin/.test(platform) ? 'mac' : 'linux' + (process.arch == 'ia32' ? '32' : '64');
/**
* @typedef {object} Platform
* @property {string} url - The URL to the package
* @property {string} execPath - The path to the executable
*/
/**
* @typedef {object} Packages
* @property {Platform} win - The Windows package
* @property {Platform} mac - The macOS package
* @property {Platform} linux32 - The Linux 32-bit package
* @property {Platform} linux64 - The Linux 64-bit package
*/
/**
* @typedef {object} Manifest
* @property {string} name - The name of the application
* @property {string} version - The current version of the application
* @property {string} manifestUrl - The URL to the remote manifest file
* @property {Packages} packages - The packages for the application
*/
/**
* @typedef {object} UpdaterOptions
* @property {string} temporaryDirectory - The path to a directory to download the updates to and unpack them in. Defaults to [`os.tmpdir()`](https://nodejs.org/api/os.html#os_os_tmpdir)
*/
class updater {
/**
* Creates new instance of updater.
*
* @constructor
* @param {Manifest} manifest - See the [manifest schema](https://github.com/nwutils/nw-updater?tab=readme-ov-file#manifest-schema).
* @param {UpdaterOptions} options - Optional
*/
constructor(manifest, options) {
this.manifest = manifest;
this.options = {
temporaryDirectory: options && options.temporaryDirectory || os.tmpdir()
};
}
/**
* Check the latest available version of the application by requesting the manifest specified in `manifestUrl`.
*
* @async
* @method
* @returns {Promise.<boolean>}
*/
async checkNewVersion() {
const response = await axios({
method: 'get',
url: this.manifest.manifestUrl,
responseType: 'json'
});
return semver.gt(response.data.version, this.manifest.version);
}
/**
* Downloads the new app to a temorary folder.
*
* @async
* @method
* @param {Manifest} newManifest - see [manifest schema](https://github.com/nwutils/nw-updater?tab=readme-ov-file#manifest-schema) below
* @returns {Promise.<void>}
*/
async download(newManifest) {
const manifest = newManifest ?? this.manifest;
const url = manifest.packages[platform].url;
const filename = decodeURI(path.basename(url))
const destinationPath = path.resolve(this.options.temporaryDirectory, filename);
const writeStream = fs.createWriteStream(destinationPath);
const response = await axios({
method: 'get',
url: url,
responseType: 'stream'
});
await stream.promises.pipeline(response.data, writeStream);
}
/**
* Returns executed application path.
*
* @returns {string}
*/
getAppPath() {
let appPath = {
mac: path.join(process.cwd(), '../../..'),
win: path.dirname(process.execPath)
};
appPath.linux32 = appPath.win;
appPath.linux64 = appPath.win;
return appPath[platform];
}
/**
* Returns current application executable.
*
* @returns {string}
*/
getAppExec() {
let execFolder = this.getAppPath();
let exec = {
mac: '',
win: path.basename(process.execPath),
linux32: path.basename(process.execPath),
linux64: path.basename(process.execPath)
};
return path.join(execFolder, exec[platform]);
}
/**
* Will unpack the `filename` in temporary folder.
* For Windows, [unzip](https://www.mkssoftware.com/docs/man1/unzip.1.asp) is used (which is [not signed](https://github.com/edjafarov/node-webkit-updater/issues/68)).
*
* @param {string} filename
* @param {function} cb - Callback arguments: error, unpacked directory
* @param {object} manifest
*/
unpack(filename, cb, manifest) {
pUnpack[platform](filename, cb, manifest, this.options.temporaryDirectory);
}
/**
* Runs installer
* @param {string} appPath
* @param {array} args - Arguments which will be passed when running the new app
* @param {object} options - Optional
* @returns {function}
*/
runInstaller(appPath, args, options) {
return pRun[platform].apply(this, arguments);
}
/**
* Installs the app (copies current application to `copyPath`)
* @param {string} copyPath
* @param {function} cb - Callback arguments: error
*/
install(copyPath, cb) {
pInstall[platform].apply(this, arguments);
}
/**
* Runs the app from original app executable path.
* @param {string} execPath
* @param {array} args - Arguments passed to the app being ran.
* @param {object} options - Optional. See `spawn` from nodejs docs.
*
* Note: if this doesn't work, try `gui.Shell.openItem(execPath)` (see [node-webkit Shell](https://github.com/rogerwang/node-webkit/wiki/Shell)).
*/
run(execPath, args, options) {
var arg = arguments;
if (platform.indexOf('linux') === 0) arg[0] = path.dirname(arg[0]);
pRun[platform].apply(this, arg);
}
}
/**
* @private
* @param {string} zipPath
* @param {string} temporaryDirectory
* @return {string}
*/
var getZipDestinationDirectory = function (zipPath, temporaryDirectory) {
return path.join(temporaryDirectory, path.basename(zipPath, path.extname(zipPath)));
},
/**
* @private
* @param {object} manifest
* @return {string}
*/
getExecPathRelativeToPackage = function (manifest) {
var execPath = manifest.packages[platform] && manifest.packages[platform].execPath;
if (execPath) {
return execPath;
}
else {
var suffix = {
win: '.exe',
mac: '.app'
};
return manifest.name + (suffix[platform] || '');
}
};
var pUnpack = {
/**
* @private
*/
mac: function (filename, cb, manifest, temporaryDirectory) {
var args = arguments,
extension = path.extname(filename),
destination = path.join(temporaryDirectory, path.basename(filename, extension));
if (!fs.existsSync(destination)) {
fs.mkdirSync(destination);
}
if (extension === ".zip") {
child_process.exec('unzip -xo "' + filename + '" >/dev/null', { cwd: destination }, function (err) {
if (err) {
console.log(err);
return cb(err);
}
var appPath = path.join(destination, getExecPathRelativeToPackage(manifest));
cb(null, appPath);
})
}
else if (extension === ".dmg") {
// just in case if something was wrong during previous mount
child_process.exec('hdiutil unmount /Volumes/' + path.basename(filename, '.dmg'), function (err) {
// create a CDR from the DMG to bypass any steps which require user interaction
var cdrPath = filename.replace(/.dmg$/, '.cdr');
child_process.exec('hdiutil convert "' + filename + '" -format UDTO -o "' + cdrPath + '"', function (err) {
child_process.exec('hdiutil attach "' + cdrPath + '" -nobrowse', function (err) {
if (err) {
if (err.code == 1) {
pUnpack.mac.apply(this, args);
}
return cb(err);
}
findMountPoint(path.basename(filename, '.dmg'), cb);
});
});
});
function findMountPoint(dmg_name, callback) {
child_process.exec('hdiutil info', function (err, stdout) {
if (err) return callback(err);
var results = stdout.split("\n");
var dmgExp = new RegExp(dmg_name + '$');
for (var i = 0, l = results.length; i < l; i++) {
if (results[i].match(dmgExp)) {
var mountPoint = results[i].split("\t").pop();
var fileToRun = path.join(mountPoint, dmg_name + ".app");
return callback(null, fileToRun);
}
}
callback(Error("Mount point not found"));
})
}
}
},
/**
* @private
*/
win: function (filename, cb, manifest, temporaryDirectory) {
var destinationDirectory = getZipDestinationDirectory(filename, temporaryDirectory),
unzip = function () {
// unzip by C. Spieler (docs: https://www.mkssoftware.com/docs/man1/unzip.1.asp, issues: http://www.info-zip.org/)
child_process.exec('"' + path.resolve(__dirname, 'tools/unzip.exe') + '" -u -o "' +
filename + '" -d "' + destinationDirectory + '" > NUL', function (err) {
if (err) {
return cb(err);
}
cb(null, path.join(destinationDirectory, getExecPathRelativeToPackage(manifest)));
});
};
fs.stat(destinationDirectory, function (err, _) {
if (!err) {
del(destinationDirectory, { force: true }, function (err) {
if (err) {
cb(err);
}
else {
unzip();
}
});
}
else {
unzip();
}
});
},
/**
* @private
*/
linux32: function (filename, cb, manifest, temporaryDirectory) {
//filename fix
child_process.exec('tar -zxvf "' + filename + '" >/dev/null', { cwd: temporaryDirectory }, function (err) {
console.log(arguments);
if (err) {
console.log(err);
return cb(err);
}
cb(null, path.join(temporaryDirectory, getExecPathRelativeToPackage(manifest)));
})
}
};
pUnpack.linux64 = pUnpack.linux32;
var pRun = {
/**
* @private
*/
mac: function (appPath, args, options) {
//spawn
if (args && args.length) {
args = [appPath].concat('--args', args);
} else {
args = [appPath];
}
return run('open', args, options);
},
/**
* @private
*/
win: function (appPath, args, options, cb) {
return run(appPath, args, options, cb);
},
/**
* @private
*/
linux32: function (appPath, args, options, cb) {
var appExec = path.join(appPath, path.basename(this.getAppExec()));
fs.chmodSync(appExec, '0o755')
if (!options) options = {};
options.cwd = appPath;
return run(appPath + "/" + path.basename(this.getAppExec()), args, options, cb);
}
};
pRun.linux64 = pRun.linux32;
/**
* @private
*/
function run(path, args, options) {
var opts = {
detached: true
};
for (var key in options) {
opts[key] = options[key];
}
var sp = child_process.spawn(path, args, opts);
sp.unref();
return sp;
}
var pInstall = {
/**
* @private
*/
mac: function (to, cb) {
ncp(this.getAppPath(), to, cb);
},
/**
* @private
*/
win: function (to, cb) {
var self = this;
var errCounter = 50;
deleteApp(appDeleted);
function appDeleted(err) {
if (err) {
errCounter--;
if (errCounter > 0) {
setTimeout(function () {
deleteApp(appDeleted);
}, 100);
} else {
return cb(err);
}
}
else {
ncp(self.getAppPath(), to, appCopied);
}
}
function deleteApp(cb) {
del(to + '/**/*', { force: true }, cb);
}
function appCopied(err) {
if (err) {
setTimeout(deleteApp, 100, appDeleted);
return
}
cb();
}
},
/**
* @private
*/
linux32: function (to, cb) {
ncp(this.getAppPath(), to, cb);
}
};
pInstall.linux64 = pInstall.linux32;
export default updater;