-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoupdate.js
89 lines (75 loc) · 2.57 KB
/
autoupdate.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
const http = require('follow-redirects').https
const extract = require('extract-zip')
const fs = require('fs')
const path = require('path')
const { app, dialog } = require('electron')
const unzipUpdate = (zipDir) => {
return new Promise((resolve, reject) => {
process.noAsar = true
extract(zipDir, { dir: path.join(process.cwd(), '_update') }).then(() => {
process.noAsar = false
fs.rm(zipDir, {force: true}, resolve)
}).catch(err => {
process.noAsar = false
reject(err)
})
})
}
const downloadUpdate = async (repoName) => {
return new Promise((resolve, reject) => {
const _path = path.join(process.cwd(), '_update', 'update.zip')
const url = `https://github.com/qurs/${repoName}/releases/latest/download/HammerPlusPlus-Manager.zip`
const urlData = new URL(url)
if (!urlData) return reject()
if (fs.existsSync(_path)) {
fs.rmSync(_path, {force: true})
}
http.get({
hostname: urlData.hostname,
path: urlData.pathname,
headers: {'User-Agent': 'Mozilla/5.0 (Windows NT 10; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0'},
}, res => {
res.on('data', chunk => {
fs.appendFileSync(_path, chunk)
})
res.on('end', () => {
if (res.statusCode != 200) {
reject()
}
else {
resolve(_path)
}
})
})
})
}
exports.checkUpdate = repoName => {
return new Promise(async (resolve, reject) => {
const res = await fetch(`https://api.github.com/repos/qurs/${repoName}/releases/latest`)
const data = await res.json()
if (!data || !data.zipball_url) return reject()
const package = require('./package.json')
if (data.tag_name != package.version) {
console.log('UPDATE IS REQUIRED!')
dialog.showErrorBox('Обновление', `Доступно новое обновление ${data.tag_name}! Скачайте по следующей ссылке: https://github.com/qurs/hammerpp-manager/releases/latest`)
resolve(false)
// try {
// fs.mkdirSync( path.join(process.cwd(), '_update'), {force: true} )
// } catch (error) {}
// downloadUpdate(repoName).then(_path => {
// unzipUpdate(_path).then(() => {
// app.relaunch()
// app.exit(0)
// fs.cpSync( path.join(process.cwd(), '_update'), path.join(process.cwd()), {recursive: true, force: true} )
// fs.rmSync( path.join(process.cwd(), '_update'), {recursive: true, force: true} )
// }).catch(err => {
// dialog.showErrorBox('Распаковка', 'При распаковке обновления произошла ошибка! ' + err)
// })
// })
// resolve(true)
}
else {
resolve(false)
}
})
}