electron/lib/browser/api/auto-updater/auto-updater-win.ts

77 lines
2.3 KiB
TypeScript
Raw Normal View History

import { app } from 'electron/main';
2020-07-01 19:27:12 +00:00
import { EventEmitter } from 'events';
import * as squirrelUpdate from '@electron/internal/browser/api/auto-updater/squirrel-update-win';
2016-01-12 02:40:23 +00:00
2016-07-26 01:40:55 +00:00
class AutoUpdater extends EventEmitter {
2020-07-01 19:27:12 +00:00
updateAvailable: boolean = false;
updateURL: string | null = null;
2016-07-26 01:40:55 +00:00
quitAndInstall () {
if (!this.updateAvailable) {
2020-07-01 19:27:12 +00:00
return this.emitError(new Error('No update available, can\'t quit and install'));
2016-07-26 01:40:55 +00:00
}
2020-03-20 20:28:31 +00:00
squirrelUpdate.processStart();
app.quit();
}
2016-07-26 01:40:55 +00:00
getFeedURL () {
2020-03-20 20:28:31 +00:00
return this.updateURL;
}
2016-07-26 01:40:55 +00:00
2020-07-01 19:27:12 +00:00
setFeedURL (options: { url: string } | string) {
let updateURL: string;
2018-02-16 05:02:10 +00:00
if (typeof options === 'object') {
if (typeof options.url === 'string') {
2020-03-20 20:28:31 +00:00
updateURL = options.url;
2018-02-16 05:02:10 +00:00
} else {
2020-03-20 20:28:31 +00:00
throw new Error('Expected options object to contain a \'url\' string property in setFeedUrl call');
2018-02-16 05:02:10 +00:00
}
} else if (typeof options === 'string') {
2020-03-20 20:28:31 +00:00
updateURL = options;
} else {
2020-03-20 20:28:31 +00:00
throw new Error('Expected an options object with a \'url\' property to be provided');
}
2020-03-20 20:28:31 +00:00
this.updateURL = updateURL;
}
2016-07-26 01:40:55 +00:00
checkForUpdates () {
2020-07-01 19:27:12 +00:00
const url = this.updateURL;
if (!url) {
return this.emitError(new Error('Update URL is not set'));
}
2016-07-26 01:40:55 +00:00
if (!squirrelUpdate.supported()) {
2020-07-01 19:27:12 +00:00
return this.emitError(new Error('Can not find Squirrel'));
}
2020-03-20 20:28:31 +00:00
this.emit('checking-for-update');
2020-07-01 19:27:12 +00:00
squirrelUpdate.checkForUpdate(url, (error, update) => {
if (error != null) {
2020-03-20 20:28:31 +00:00
return this.emitError(error);
}
2016-07-26 01:40:55 +00:00
if (update == null) {
2020-03-20 20:28:31 +00:00
return this.emit('update-not-available');
2016-07-26 01:40:55 +00:00
}
2020-03-20 20:28:31 +00:00
this.updateAvailable = true;
this.emit('update-available');
2020-07-01 19:27:12 +00:00
squirrelUpdate.update(url, (error) => {
2016-07-26 01:40:55 +00:00
if (error != null) {
2020-03-20 20:28:31 +00:00
return this.emitError(error);
2016-07-26 01:40:55 +00:00
}
2020-03-20 20:28:31 +00:00
const { releaseNotes, version } = update;
2016-08-08 20:06:14 +00:00
// Date is not available on Windows, so fake it.
2020-03-20 20:28:31 +00:00
const date = new Date();
2016-07-26 01:40:55 +00:00
this.emit('update-downloaded', {}, releaseNotes, version, date, this.updateURL, () => {
2020-03-20 20:28:31 +00:00
this.quitAndInstall();
});
});
});
2016-07-26 01:40:55 +00:00
}
2016-01-15 22:12:57 +00:00
2016-07-26 01:40:55 +00:00
// Private: Emit both error object and message, this is to keep compatibility
// with Old APIs.
2020-07-01 19:27:12 +00:00
emitError (error: Error) {
this.emit('error', error, error.message);
2016-07-26 01:40:55 +00:00
}
}
2016-01-12 02:40:23 +00:00
2020-07-01 19:27:12 +00:00
export default new AutoUpdater();