[HostUpdater > Linux] Major self-rewrite
This commit is contained in:
parent
f8c5c3e0cf
commit
2ac0a241fa
1 changed files with 8 additions and 33 deletions
|
@ -1,14 +1,11 @@
|
||||||
const { app, autoUpdater } = require('electron');
|
const { app, autoUpdater } = require('electron');
|
||||||
const events = require('events');
|
|
||||||
|
|
||||||
const { get } = require('request');
|
const { get } = require('request');
|
||||||
|
|
||||||
const vParse = s => s.split('.').map(x => parseInt(x));
|
|
||||||
const vNewer = (a, b) => a.some((x, i) => x === b[i] ? undefined : (x > b[i]));
|
|
||||||
|
|
||||||
class HostLinux extends events.EventEmitter {
|
module.exports = process.platform === 'linux' ? new (class HostLinux extends require('events').EventEmitter {
|
||||||
setFeedURL(url) {
|
setFeedURL(url) {
|
||||||
this.updateUrl = url;
|
this.url = url;
|
||||||
}
|
}
|
||||||
|
|
||||||
quitAndInstall() {
|
quitAndInstall() {
|
||||||
|
@ -17,34 +14,12 @@ class HostLinux extends events.EventEmitter {
|
||||||
}
|
}
|
||||||
|
|
||||||
async checkForUpdates() {
|
async checkForUpdates() {
|
||||||
this.emit('checking-for-update');
|
get(this.url, (e, r) => {
|
||||||
|
if (e) return this.emit('error');
|
||||||
|
|
||||||
try {
|
if (r.statusCode === 204) return this.emit('update-not-available');
|
||||||
const current = vParse(app.getVersion());
|
|
||||||
|
|
||||||
get(this.updateUrl, (err, res, body) => {
|
this.emit('update-manually');
|
||||||
if (err) return this.emit('error');
|
});
|
||||||
if (res.statusCode === 204) return this.emit('update-not-available');
|
|
||||||
|
|
||||||
const latest = vParse(JSON.parse(body).name);
|
|
||||||
if (vNewer(latest, current)) return this.emit('update-manually', latest.join('.'));
|
|
||||||
|
|
||||||
this.emit('update-not-available');
|
|
||||||
});
|
|
||||||
} catch (e) {
|
|
||||||
log('HostLinux', 'Error', e);
|
|
||||||
this.emit('error');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
})() : autoUpdater;
|
||||||
|
|
||||||
|
|
||||||
switch (process.platform) {
|
|
||||||
case 'darwin':
|
|
||||||
module.exports = autoUpdater;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'linux':
|
|
||||||
module.exports = new HostLinux();
|
|
||||||
break;
|
|
||||||
}
|
|
Loading…
Reference in a new issue