-
Notifications
You must be signed in to change notification settings - Fork 31
/
auto-updater.js
executable file
·111 lines (92 loc) · 2.66 KB
/
auto-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
const app = require('electron').app
const autoUpdater = require('electron').autoUpdater
const ChildProcess = require('child_process')
const Menu = require('electron').Menu
const path = require('path')
var state = 'checking'
exports.initialize = function () {
if (process.mas) return
autoUpdater.on('checking-for-update', function () {
state = 'checking'
exports.updateMenu()
})
autoUpdater.on('update-available', function () {
state = 'checking'
exports.updateMenu()
})
autoUpdater.on('update-downloaded', function () {
state = 'installed'
exports.updateMenu()
})
autoUpdater.on('update-not-available', function () {
state = 'no-update'
exports.updateMenu()
})
autoUpdater.on('error', function () {
state = 'no-update'
exports.updateMenu()
})
autoUpdater.setFeedURL(`https://electron-api-demos.githubapp.com/updates?version=${app.getVersion()}`)
autoUpdater.checkForUpdates()
}
exports.updateMenu = function () {
if (process.mas) return
var menu = Menu.getApplicationMenu()
if (!menu) return
menu.items.forEach(function (item) {
if (item.submenu) {
item.submenu.items.forEach(function (item) {
switch (item.key) {
case 'checkForUpdate':
item.visible = state === 'no-update'
break
case 'checkingForUpdate':
item.visible = state === 'checking'
break
case 'restartToUpdate':
item.visible = state === 'installed'
break
}
})
}
})
}
exports.createShortcut = function (callback) {
spawnUpdate([
'--createShortcut',
path.basename(process.execPath),
'--shortcut-locations',
'StartMenu'
], callback)
}
exports.removeShortcut = function (callback) {
spawnUpdate([
'--removeShortcut',
path.basename(process.execPath)
], callback)
}
function spawnUpdate (args, callback) {
var updateExe = path.resolve(path.dirname(process.execPath), '..', 'Update.exe')
var stdout = ''
var spawned = null
try {
spawned = ChildProcess.spawn(updateExe, args)
} catch (error) {
if (error && error.stdout == null) error.stdout = stdout
process.nextTick(function () { callback(error) })
return
}
var error = null
spawned.stdout.on('data', function (data) { stdout += data })
spawned.on('error', function (processError) {
if (!error) error = processError
})
spawned.on('close', function (code, signal) {
if (!error && code !== 0) {
error = new Error('Command failed: ' + code + ' ' + signal)
}
if (error && error.code == null) error.code = code
if (error && error.stdout == null) error.stdout = stdout
callback(error)
})
}