electron/atom/browser/api/lib/auto-updater/auto-updater-win.js

64 lines
1.9 KiB
JavaScript
Raw Normal View History

2016-01-14 21:16:42 +00:00
const app = require('electron').app;
const EventEmitter = require('events').EventEmitter;
const url = require('url');
const squirrelUpdate = require('./squirrel-update-win');
const util = require('util');
2016-01-12 02:40:23 +00:00
function AutoUpdater() {
AutoUpdater.super_.call(this);
}
2016-01-12 02:40:23 +00:00
util.inherits(AutoUpdater, EventEmitter);
2016-01-12 02:40:23 +00:00
AutoUpdater.prototype.quitAndInstall = function() {
squirrelUpdate.processStart();
return app.quit();
};
2016-01-12 02:40:23 +00:00
AutoUpdater.prototype.setFeedURL = function(updateURL) {
return this.updateURL = updateURL;
};
2016-01-12 02:40:23 +00:00
AutoUpdater.prototype.checkForUpdates = function() {
if (!this.updateURL) {
return this.emitError('Update URL is not set');
}
if (!squirrelUpdate.supported()) {
return this.emitError('Can not find Squirrel');
}
this.emit('checking-for-update');
return squirrelUpdate.download(this.updateURL, (function(_this) {
return function(error, update) {
if (error != null) {
return _this.emitError(error);
}
if (update == null) {
return _this.emit('update-not-available');
}
_this.emit('update-available');
return squirrelUpdate.update(_this.updateURL, function(error) {
var date, releaseNotes, version;
2016-01-12 02:40:23 +00:00
if (error != null) {
return _this.emitError(error);
}
releaseNotes = update.releaseNotes, version = update.version;
2016-01-12 02:40:23 +00:00
// Following information is not available on Windows, so fake them.
date = new Date;
url = _this.updateURL;
return _this.emit('update-downloaded', {}, releaseNotes, version, date, url, function() {
return _this.quitAndInstall();
2016-01-12 02:40:23 +00:00
});
});
};
})(this));
};
// Private: Emit both error object and message, this is to keep compatibility
// with Old APIs.
AutoUpdater.prototype.emitError = function(message) {
return this.emit('error', new Error(message), message);
};
2016-01-12 02:40:23 +00:00
module.exports = new AutoUpdater;