mirror of https://github.com/Kylart/KawAnime.git
56 lines
1.1 KiB
JavaScript
56 lines
1.1 KiB
JavaScript
module.exports = (app, routes) => {
|
|
const {autoUpdater} = require('electron-updater')
|
|
let isUpdateAvailable = false
|
|
let isInstallable = false
|
|
let downloadProgress
|
|
let error
|
|
|
|
autoUpdater.on('update-available', () => {
|
|
isUpdateAvailable = true
|
|
})
|
|
|
|
autoUpdater.on('update-not-available', () => {
|
|
isUpdateAvailable = false
|
|
})
|
|
|
|
autoUpdater.on('error', (err) => {
|
|
error = err
|
|
})
|
|
|
|
autoUpdater.on('download-progress', (progressObj) => {
|
|
downloadProgress = progressObj
|
|
})
|
|
|
|
autoUpdater.on('update-downloaded', () => {
|
|
isInstallable = true
|
|
})
|
|
|
|
autoUpdater.checkForUpdates()
|
|
|
|
routes.push(
|
|
(app) => {
|
|
app.get('/_isUpdateAvailable', (req, res) => {
|
|
res.send({
|
|
ok: isUpdateAvailable,
|
|
data: error
|
|
})
|
|
})
|
|
},
|
|
(app) => {
|
|
app.get('/_isInstallable', (req, res) => {
|
|
res.send({
|
|
ok: isInstallable,
|
|
progress: downloadProgress
|
|
})
|
|
})
|
|
},
|
|
(app) => {
|
|
app.get('/_quitAndInstall', () => {
|
|
autoUpdater.quitAndInstall()
|
|
})
|
|
}
|
|
)
|
|
|
|
return routes
|
|
}
|