blob: b7071ec4bfda893eb8697b7667fb6be9dd8f2a8c (
plain)
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
|
const fs = require("fs");
const path = require("path");
const unzip = require("unzipper");
const request = require("request");
const { dialog } = require("electron");
const { https } = require("follow-redirects");
var settings = {
gamepath: "",
file: "viper.json",
zip: "/northstar.zip",
}
if (fs.existsSync(settings.file)) {
settings.gamepath = JSON.parse(fs.readFileSync(settings.file, "utf8")).path;
settings.zip = path.join(settings.gamepath + "/northstar.zip");
}
function update() {
request({
json: true,
headers: {"User-Agent": navigator.userAgent},
url: "https://api.github.com/repos/R2Northstar/Northstar/releases/latest",
}, (error, response, body) => {
https.get(body.assets[0].browser_download_url, (res) => {
let stream = fs.createWriteStream(settings.zip);
res.pipe(stream);
stream.on("finish",() => {
stream.close();
console.log("download done");
fs.createReadStream(settings.zip).pipe(unzip.Extract({path: settings.gamepath}))
.on("finish", () => {
alert("Installation finished!")
});
})
})
})
}
|