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

75 lines
2.1 KiB
JavaScript
Raw Normal View History

'use strict'
2016-01-15 22:12:57 +00:00
2018-09-13 16:10:51 +00:00
const { app } = require('electron')
const { EventEmitter } = require('events')
const squirrelUpdate = require('@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 {
quitAndInstall () {
if (!this.updateAvailable) {
return this.emitError('No update available, can\'t quit and install')
}
squirrelUpdate.processStart()
2016-08-08 20:06:14 +00:00
app.quit()
}
2016-07-26 01:40:55 +00:00
getFeedURL () {
return this.updateURL
}
2016-07-26 01:40:55 +00:00
setFeedURL (options) {
let updateURL
2018-02-16 05:02:10 +00:00
if (typeof options === 'object') {
if (typeof options.url === 'string') {
updateURL = options.url
} else {
throw new Error('Expected options object to contain a \'url\' string property in setFeedUrl call')
}
} else if (typeof options === 'string') {
updateURL = options
} else {
2018-02-16 05:02:10 +00:00
throw new Error('Expected an options object with a \'url\' property to be provided')
}
2016-07-26 01:40:55 +00:00
this.updateURL = updateURL
}
2016-07-26 01:40:55 +00:00
checkForUpdates () {
if (!this.updateURL) {
return this.emitError('Update URL is not set')
}
2016-07-26 01:40:55 +00:00
if (!squirrelUpdate.supported()) {
return this.emitError('Can not find Squirrel')
}
2016-07-26 01:40:55 +00:00
this.emit('checking-for-update')
squirrelUpdate.checkForUpdate(this.updateURL, (error, update) => {
if (error != null) {
return this.emitError(error)
}
2016-07-26 01:40:55 +00:00
if (update == null) {
return this.emit('update-not-available')
}
this.updateAvailable = true
this.emit('update-available')
squirrelUpdate.update(this.updateURL, (error) => {
if (error != null) {
return this.emitError(error)
}
2018-09-13 16:10:51 +00:00
const { releaseNotes, version } = update
2016-08-08 20:06:14 +00:00
// Date is not available on Windows, so fake it.
const date = new Date()
2016-07-26 01:40:55 +00:00
this.emit('update-downloaded', {}, releaseNotes, version, date, this.updateURL, () => {
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.
emitError (message) {
2016-08-08 20:06:14 +00:00
this.emit('error', new Error(message), message)
2016-07-26 01:40:55 +00:00
}
}
2016-01-12 02:40:23 +00:00
module.exports = new AutoUpdater()