mirror of
https://github.com/OpenFusionProject/Client.git
synced 2024-11-14 18:50:04 +00:00
Migration version list patching
This commit is contained in:
parent
37699e38f8
commit
947c231b12
35
index.js
35
index.js
@ -39,7 +39,30 @@ function backup() {
|
|||||||
if (fs.existsSync(hashPath)) fs.copySync(hashPath, hashPath + ".bak");
|
if (fs.existsSync(hashPath)) fs.copySync(hashPath, hashPath + ".bak");
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateDefaults() {
|
function patchVersions() {
|
||||||
|
let current = fs.readJsonSync(versionsPath);
|
||||||
|
let newDefaults = fs.readJsonSync(
|
||||||
|
path.join(__dirname, "/defaults/versions.json")
|
||||||
|
);
|
||||||
|
for (let i = 0; i < newDefaults["versions"].length; i++) {
|
||||||
|
const newDefault = newDefaults["versions"][i];
|
||||||
|
let found = false;
|
||||||
|
for (let j = 0; j < current["versions"].length; j++) {
|
||||||
|
let version = current["versions"][j];
|
||||||
|
if (newDefault["name"] === version["name"]) {
|
||||||
|
current["versions"][j] = newDefault;
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!found) {
|
||||||
|
current["versions"].push(newDefault);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fs.writeFileSync(versionsPath, JSON.stringify(current, null, 4));
|
||||||
|
}
|
||||||
|
|
||||||
|
function patchServers() {
|
||||||
let current = fs.readJsonSync(serversPath);
|
let current = fs.readJsonSync(serversPath);
|
||||||
let newDefaults = fs.readJsonSync(
|
let newDefaults = fs.readJsonSync(
|
||||||
path.join(__dirname, "/defaults/servers.json")
|
path.join(__dirname, "/defaults/servers.json")
|
||||||
@ -72,14 +95,18 @@ function initialSetup(firstTime) {
|
|||||||
path.join(__dirname, "/defaults/servers.json"),
|
path.join(__dirname, "/defaults/servers.json"),
|
||||||
serversPath
|
serversPath
|
||||||
);
|
);
|
||||||
|
fs.copySync(
|
||||||
|
path.join(__dirname, "/defaults/versions.json"),
|
||||||
|
versionsPath
|
||||||
|
);
|
||||||
} else if (fs.existsSync(serversPath)) {
|
} else if (fs.existsSync(serversPath)) {
|
||||||
// Migration
|
// Migration
|
||||||
// Update default servers by replacing their entries
|
// Update default servers and versions
|
||||||
updateDefaults();
|
patchVersions();
|
||||||
|
patchServers();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Copy default versions and config
|
// Copy default versions and config
|
||||||
fs.copySync(path.join(__dirname, "/defaults/versions.json"), versionsPath);
|
|
||||||
fs.copySync(path.join(__dirname, "/defaults/config.json"), configPath);
|
fs.copySync(path.join(__dirname, "/defaults/config.json"), configPath);
|
||||||
fs.copySync(path.join(__dirname, "/defaults/hashes.json"), hashPath);
|
fs.copySync(path.join(__dirname, "/defaults/hashes.json"), hashPath);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user