mirror of
https://github.com/atom/atom.git
synced 2026-02-13 16:14:59 -05:00
118 lines
3.4 KiB
CoffeeScript
118 lines
3.4 KiB
CoffeeScript
autoUpdater = null
|
|
_ = require 'underscore-plus'
|
|
{EventEmitter} = require 'events'
|
|
path = require 'path'
|
|
|
|
IdleState = 'idle'
|
|
CheckingState = 'checking'
|
|
DownladingState = 'downloading'
|
|
UpdateAvailableState = 'update-available'
|
|
NoUpdateAvailableState = 'no-update-available'
|
|
UnsupportedState = 'unsupported'
|
|
ErrorState = 'error'
|
|
|
|
module.exports =
|
|
class AutoUpdateManager
|
|
_.extend @prototype, EventEmitter.prototype
|
|
|
|
constructor: (@version, @testMode) ->
|
|
@state = IdleState
|
|
if process.platform is 'win32'
|
|
# Squirrel for Windows can't handle query params
|
|
# https://github.com/Squirrel/Squirrel.Windows/issues/132
|
|
@feedUrl = 'https://atom.io/api/updates'
|
|
else
|
|
@iconPath = path.resolve(__dirname, '..', '..', 'resources', 'atom.png')
|
|
@feedUrl = "https://atom.io/api/updates?version=#{@version}"
|
|
|
|
process.nextTick => @setupAutoUpdater()
|
|
|
|
setupAutoUpdater: ->
|
|
if process.platform is 'win32'
|
|
autoUpdater = require './auto-updater-win32'
|
|
else
|
|
autoUpdater = require 'auto-updater'
|
|
|
|
autoUpdater.on 'error', (event, message) =>
|
|
@setState(ErrorState)
|
|
console.error "Error Downloading Update: #{message}"
|
|
|
|
autoUpdater.setFeedUrl @feedUrl
|
|
|
|
autoUpdater.on 'checking-for-update', =>
|
|
@setState(CheckingState)
|
|
|
|
autoUpdater.on 'update-not-available', =>
|
|
@setState(NoUpdateAvailableState)
|
|
|
|
autoUpdater.on 'update-available', =>
|
|
@setState(DownladingState)
|
|
|
|
autoUpdater.on 'update-downloaded', (event, releaseNotes, @releaseVersion) =>
|
|
@setState(UpdateAvailableState)
|
|
@emitUpdateAvailableEvent(@getWindows()...)
|
|
|
|
# Only released versions should check for updates.
|
|
@scheduleUpdateCheck() unless /\w{7}/.test(@version)
|
|
|
|
switch process.platform
|
|
when 'win32'
|
|
@setState(UnsupportedState) unless autoUpdater.supportsUpdates()
|
|
when 'linux'
|
|
@setState(UnsupportedState)
|
|
|
|
emitUpdateAvailableEvent: (windows...) ->
|
|
return unless @releaseVersion?
|
|
for atomWindow in windows
|
|
atomWindow.sendMessage('update-available', {@releaseVersion})
|
|
return
|
|
|
|
setState: (state) ->
|
|
return if @state is state
|
|
@state = state
|
|
@emit 'state-changed', @state
|
|
|
|
getState: ->
|
|
@state
|
|
|
|
scheduleUpdateCheck: ->
|
|
checkForUpdates = => @check(hidePopups: true)
|
|
fourHours = 1000 * 60 * 60 * 4
|
|
setInterval(checkForUpdates, fourHours)
|
|
checkForUpdates()
|
|
|
|
check: ({hidePopups}={}) ->
|
|
unless hidePopups
|
|
autoUpdater.once 'update-not-available', @onUpdateNotAvailable
|
|
autoUpdater.once 'error', @onUpdateError
|
|
|
|
autoUpdater.checkForUpdates() unless @testMode
|
|
|
|
install: ->
|
|
autoUpdater.quitAndInstall() unless @testMode
|
|
|
|
onUpdateNotAvailable: =>
|
|
autoUpdater.removeListener 'error', @onUpdateError
|
|
dialog = require 'dialog'
|
|
dialog.showMessageBox
|
|
type: 'info'
|
|
buttons: ['OK']
|
|
icon: @iconPath
|
|
message: 'No update available.'
|
|
title: 'No Update Available'
|
|
detail: "Version #{@version} is the latest version."
|
|
|
|
onUpdateError: (event, message) =>
|
|
autoUpdater.removeListener 'update-not-available', @onUpdateNotAvailable
|
|
dialog = require 'dialog'
|
|
dialog.showMessageBox
|
|
type: 'warning'
|
|
buttons: ['OK']
|
|
icon: @iconPath
|
|
message: 'There was an error checking for updates.'
|
|
title: 'Update Error'
|
|
detail: message
|
|
|
|
getWindows: ->
|
|
global.atomApplication.windows
|