forked from nwutils/nw-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdater.js
418 lines (380 loc) · 12.1 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
417
418
var request = require('request');
var path = require('path');
var os = require('os');
var fs = require('fs');
var exec = require('child_process').exec;
var spawn = require('child_process').spawn;
var ncp = require('ncp');
var del = require('del');
var semver = require('semver');
var gui = global.window.nwDispatcher.requireNwGui();
var platform = process.platform;
platform = /^win/.test(platform)? 'win' : /^darwin/.test(platform)? 'mac' : 'linux' + (process.arch == 'ia32' ? '32' : '64');
/**
* Creates new instance of updater. Manifest could be a `package.json` of project.
*
* Note that compressed apps are assumed to be downloaded in the format produced by [node-webkit-builder](https://github.com/mllrsohn/node-webkit-builder) (or [grunt-node-webkit-builder](https://github.com/mllrsohn/grunt-node-webkit-builder)).
*
* @constructor
* @param {object} manifest - See the [manifest schema](#manifest-schema) below.
*/
function updater(manifest){
this.manifest = manifest;
}
/**
* Will check the latest available version of the application by requesting the manifest specified in `manifestUrl`.
*
* The callback will always be called; the second parameter indicates whether or not there's a newer version.
* This function assumes you use [Semantic Versioning](http://semver.org) and enforces it; if your local version is `0.2.0` and the remote one is `0.1.23456` then the callback will be called with `false` as the second paramter. If on the off chance you don't use semantic versioning, you could manually download the remote manifest and call `download` if you're happy that the remote version is newer.
*
* @param {function} cb - Callback arguments: error, newerVersionExists (`Boolean`), remoteManifest
*/
updater.prototype.checkNewVersion = function(cb){
request.get(this.manifest.manifestUrl, gotManifest.bind(this)); //get manifest from url
/**
* @private
*/
function gotManifest(err, req, data){
if(err) {
return cb(err);
}
if(req.statusCode < 200 || req.statusCode > 299){
return cb(new Error(req.statusCode));
}
try{
data = JSON.parse(data);
} catch(e){
return cb(e)
}
cb(null, semver.gt(data.version, this.manifest.version), data);
}
};
/**
* Downloads the new app to a template folder
* @param {Function} cb - called when download completes. Callback arguments: error, downloaded filepath
* @param {Object} newManifest - see [manifest schema](#manifest-schema) below
* @return {Request} Request - stream, the stream contains `manifest` property with new manifest and 'content-length' property with the size of package.
*/
updater.prototype.download = function(cb, newManifest){
var manifest = newManifest || this.manifest;
var url = manifest.packages[platform].url;
var pkg = request(url, function(err, response){
if(err){
cb(err);
}
if(response.statusCode < 200 || response.statusCode >= 300){
pkg.abort();
return cb(new Error(response.statusCode));
}
});
pkg.on('response', function(response){
if(response && response.headers && response.headers['content-length']){
pkg['content-length'] = response.headers['content-length'];
}
});
var filename = path.basename(url),
destinationPath = path.join(os.tmpdir(), filename);
// download the package to template folder
fs.unlink(path.join(os.tmpdir(), filename), function(){
pkg.pipe(fs.createWriteStream(destinationPath));
pkg.resume();
});
pkg.on('error', cb);
pkg.on('end', appDownloaded);
pkg.pause();
function appDownloaded(){
process.nextTick(function(){
if(pkg.response.statusCode >= 200 && pkg.response.statusCode < 300){
cb(null, destinationPath);
}
});
}
return pkg;
};
/**
* Returns executed application path
* @returns {string}
*/
updater.prototype.getAppPath = function(){
var 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}
*/
updater.prototype.getAppExec = function(){
var execFolder = this.getAppPath();
var 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.
*
* @param {string} filename
* @param {function} cb - Callback arguments: error, unpacked directory
* @param {object} manifest
*/
updater.prototype.unpack = function(filename, cb, manifest){
pUnpack[platform].apply(this, arguments);
};
/**
* @private
* @param {string} zipPath
* @return {string}
*/
var getZipDestinationDirectory = function(zipPath){
return path.join(os.tmpdir(), 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){
var args = arguments,
extension = path.extname(filename),
destination = path.join(os.tmpdir(), path.basename(filename, extension));
if(!fs.existsSync(destination)){
fs.mkdirSync(destination);
}
if(extension === ".zip"){
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
exec('hdiutil unmount /Volumes/'+path.basename(filename, '.dmg'), function(err){
exec('hdiutil attach ' + filename + ' -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) {
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){
var destinationDirectory = getZipDestinationDirectory(filename),
unzip = function(){
// unzip by C. Spieler (docs: https://www.mkssoftware.com/docs/man1/unzip.1.asp, issues: http://www.info-zip.org/)
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.exists(destinationDirectory, function(exists){
if(exists) {
del(destinationDirectory, {force: true}, function (err) {
if (err) {
cb(err);
}
else {
unzip();
}
});
}
else {
unzip();
}
});
},
/**
* @private
*/
linux32: function(filename, cb, manifest){
//filename fix
exec('tar -zxvf ' + filename + ' >/dev/null',{cwd: os.tmpdir()}, function(err){
console.log(arguments);
if(err){
console.log(err);
return cb(err);
}
cb(null,path.join(os.tmpdir(), getExecPathRelativeToPackage(manifest)));
})
}
};
pUnpack.linux64 = pUnpack.linux32;
/**
* Runs installer
* @param {string} appPath
* @param {array} args - Arguments which will be passed when running the new app
* @param {object} options - Optional
* @returns {function}
*/
updater.prototype.runInstaller = function(appPath, args, options){
return pRun[platform].apply(this, arguments);
};
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, 0755)
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 = spawn(path, args, opts);
sp.unref();
return sp;
}
/**
* Installs the app (copies current application to `copyPath`)
* @param {string} copyPath
* @param {function} cb - Callback arguments: error
*/
updater.prototype.install = function(copyPath, cb){
pInstall[platform].apply(this, arguments);
};
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;
/**
* 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)).
*/
updater.prototype.run = function(execPath, args, options){
var arg = arguments;
if(platform.indexOf('linux') === 0) arg[0] = path.dirname(arg[0]);
pRun[platform].apply(this, arg);
};
module.exports = updater;