2021-05-13 13:50:07 +02:00
|
|
|
const isDev = require('electron-is-dev')
|
|
|
|
const { Client, Authenticator } = require('minecraft-launcher-core')
|
|
|
|
const axios = require('axios').default
|
2021-05-14 16:21:22 +02:00
|
|
|
const hasha = require('hasha');
|
2021-05-13 13:50:07 +02:00
|
|
|
const fs = require('fs')
|
2021-08-10 20:35:13 +02:00
|
|
|
const { join } = require('path')
|
2021-05-13 13:50:07 +02:00
|
|
|
const constants = require("constants")
|
|
|
|
const zip = require('extract-zip')
|
|
|
|
const logger = require('electron-log')
|
2021-08-10 20:35:13 +02:00
|
|
|
const msmc = require('msmc')
|
2021-05-13 13:50:07 +02:00
|
|
|
|
|
|
|
class Minecraft {
|
|
|
|
|
2021-09-25 18:52:31 +02:00
|
|
|
appdata = process.env.APPDATA || (process.platform === 'darwin' ? process.env.HOME + '/Library/Preferences' : process.env.HOME + "/.local/share")
|
2021-05-13 13:50:07 +02:00
|
|
|
minecraftpath = join(this.appdata, ".altarik")
|
|
|
|
launcher = new Client()
|
|
|
|
auth = null
|
|
|
|
modsList = undefined
|
2021-09-19 17:31:08 +02:00
|
|
|
showNotification = undefined
|
|
|
|
|
|
|
|
setShowNotification(showNotification) {
|
|
|
|
this.showNotification = showNotification
|
|
|
|
}
|
2021-05-13 13:50:07 +02:00
|
|
|
|
2021-08-10 20:35:13 +02:00
|
|
|
/**
|
|
|
|
* Used to login through Mojang account
|
|
|
|
*/
|
2021-09-19 17:31:08 +02:00
|
|
|
login(event, win, username, password) {
|
2021-05-13 13:50:07 +02:00
|
|
|
this.auth = null
|
|
|
|
if(isDev || password.trim() !== "") {
|
|
|
|
this.auth = Authenticator.getAuth(username, password)
|
|
|
|
this.auth.then(v => {
|
|
|
|
win.loadFile('src/client/index.html').then(() => {
|
|
|
|
event.sender.send("nick", { name: v.name })
|
|
|
|
})
|
2021-09-25 18:52:31 +02:00
|
|
|
}).catch(() => {
|
2021-05-15 17:11:57 +02:00
|
|
|
event.sender.send("loginError")
|
2021-08-29 14:11:34 +02:00
|
|
|
logger.error("[MJ login] User haven't purchase the game")
|
2021-09-19 17:31:08 +02:00
|
|
|
this.showNotification("Erreur de connexion")
|
2021-05-13 13:50:07 +02:00
|
|
|
})
|
|
|
|
} else {
|
2021-09-19 17:31:08 +02:00
|
|
|
this.showNotification("Veuillez renseignez un mot de passe")
|
2021-05-13 13:50:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-10 20:35:13 +02:00
|
|
|
/**
|
|
|
|
* Used to login through a Microsoft account
|
|
|
|
*/
|
2021-09-19 17:31:08 +02:00
|
|
|
microsoftLogin(event, win) {
|
2021-08-29 14:11:34 +02:00
|
|
|
msmc.fastLaunch("electron",
|
|
|
|
(update) => {
|
|
|
|
switch (update.type) {
|
|
|
|
case "Error":
|
|
|
|
event.sender.send("loginError")
|
2021-09-19 17:31:08 +02:00
|
|
|
this.showNotification("Une erreur est survenue", update.data)
|
2021-08-29 14:11:34 +02:00
|
|
|
logger.error("MC-Account error:", update.data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}).then(result => {
|
|
|
|
if(msmc.errorCheck(result)) {
|
|
|
|
event.sender.send("loginError")
|
|
|
|
logger.error(result.reason)
|
2021-09-19 17:31:08 +02:00
|
|
|
this.showNotification("Erreur de connexion", result.reason)
|
2021-08-29 14:11:34 +02:00
|
|
|
} else {
|
|
|
|
if(!msmc.isDemoUser(result)) {
|
|
|
|
this.auth = msmc.getMCLC().getAuth(result)
|
2021-08-10 20:35:13 +02:00
|
|
|
win.loadFile('src/client/index.html').then(() => {
|
2021-08-29 14:11:34 +02:00
|
|
|
event.sender.send("nick", { name: this.auth.name })
|
2021-08-10 20:35:13 +02:00
|
|
|
})
|
2021-08-29 14:11:34 +02:00
|
|
|
} else {
|
2021-08-10 20:35:13 +02:00
|
|
|
event.sender.send("loginError")
|
2021-08-29 14:11:34 +02:00
|
|
|
logger.error("[MS login] User haven't purchase the game")
|
2021-09-19 17:31:08 +02:00
|
|
|
this.showNotification("Erreur de connexion", "Vous ne possèdez pas de licence Minecraft sur ce compte")
|
2021-08-29 14:11:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}).catch(reason => {
|
|
|
|
event.sender.send("loginError")
|
|
|
|
logger.error(reason)
|
2021-09-19 17:31:08 +02:00
|
|
|
this.showNotification("Erreur de connexion")
|
2021-08-29 14:11:34 +02:00
|
|
|
})
|
2021-08-10 20:35:13 +02:00
|
|
|
}
|
|
|
|
|
2021-09-19 17:31:08 +02:00
|
|
|
launch(event, args) {
|
2021-05-14 16:21:22 +02:00
|
|
|
this.extractJava(Number(args.chapter), event).then((javaPath) => {
|
|
|
|
this.extractMods(Number(args.chapter), event).then((chapter) => {
|
|
|
|
this.launcher.launch({
|
|
|
|
authorization: this.auth,
|
|
|
|
root: this.minecraftpath,
|
|
|
|
javaPath: javaPath,
|
|
|
|
version: {
|
|
|
|
number: chapter.minecraftVersion,
|
|
|
|
type: chapter.type | "release",
|
|
|
|
custom: chapter.customVersion
|
|
|
|
},
|
|
|
|
memory: {
|
|
|
|
max: args.maxMem,
|
|
|
|
min: args.minMem
|
|
|
|
}
|
|
|
|
})
|
|
|
|
this.launcher.on('debug', (e) => logger.info(`debug: ${e}`));
|
2021-05-15 17:11:57 +02:00
|
|
|
this.launcher.on('data', (e) => logger.info(`data: ${e}`));
|
2021-05-14 16:21:22 +02:00
|
|
|
this.launcher.on('progress', (e) => {
|
|
|
|
event.sender.send("progress", e)
|
|
|
|
logger.info(`progress ${e.type} :${e.task} / ${e.total}`)
|
|
|
|
})
|
|
|
|
this.launcher.on('arguments', (e) => {
|
|
|
|
event.sender.send("launch", e)
|
|
|
|
logger.info("launching the game")
|
|
|
|
logger.info(e)
|
|
|
|
})
|
|
|
|
this.launcher.on('close', (e) => {
|
|
|
|
event.sender.send("close", e)
|
|
|
|
if(e !== 0) {
|
|
|
|
logger.warn("Minecraft didn't close properly")
|
|
|
|
logger.warn(e)
|
2021-09-19 17:31:08 +02:00
|
|
|
this.showNotification("Une erreur est survenue", "Minecraft ne s'est pas fermé correctement")
|
2021-05-14 16:21:22 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}).catch((err) => {
|
2021-09-19 17:31:08 +02:00
|
|
|
this.showNotification("Impossible de lancer le jeu")
|
2021-05-14 16:21:22 +02:00
|
|
|
event.sender.send("close", 1)
|
|
|
|
logger.error('Unable to launch the game')
|
|
|
|
logger.error(err)
|
2021-05-13 13:50:07 +02:00
|
|
|
})
|
2021-05-14 16:21:22 +02:00
|
|
|
}).catch(err => {
|
2021-09-19 17:31:08 +02:00
|
|
|
this.showNotification("Impossible d'intaller Java pour votre configuration")
|
2021-05-13 13:50:07 +02:00
|
|
|
event.sender.send("close", 1)
|
2021-05-14 16:21:22 +02:00
|
|
|
logger.warn("Unable to install java")
|
|
|
|
logger.warn(err)
|
2021-05-13 13:50:07 +02:00
|
|
|
})
|
2021-05-14 16:21:22 +02:00
|
|
|
|
2021-05-13 13:50:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
getModsInformations(event) {
|
|
|
|
axios.get("https://altarik.fr/launcher.json").then(o => {
|
|
|
|
if(o.status === 200 && o.headers["content-type"] === "application/json") {
|
|
|
|
let folder = join(process.env.LOCALAPPDATA, "altarik-launcher", "data")
|
|
|
|
if(!fs.existsSync(folder))
|
|
|
|
fs.mkdirSync(folder)
|
2021-09-19 17:31:08 +02:00
|
|
|
let file = join(folder, "launcher.json")
|
|
|
|
if(fs.existsSync(file))
|
|
|
|
fs.rmSync(file)
|
|
|
|
fs.writeFileSync(file, JSON.stringify(o.data))
|
2021-05-13 13:50:07 +02:00
|
|
|
event.sender.send('modsInformations', this.extractModsInformations(o.data))
|
|
|
|
} else {
|
|
|
|
event.sender.send('modsInformations', this.extractModsFromFileSystem())
|
|
|
|
}
|
|
|
|
}).catch(err => {
|
|
|
|
logger.warn("Unable to connect to server")
|
|
|
|
logger.warn(err)
|
|
|
|
event.sender.send('modsInformations', this.extractModsFromFileSystem())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
extractModsFromFileSystem() {
|
2021-10-02 16:53:55 +02:00
|
|
|
let filepath = join(process.env.LOCALAPPDATA, "altarik-launcher/data/launcher.json")
|
|
|
|
if(fs.existsSync(filepath)) {
|
|
|
|
let content = fs.readFileSync(filepath)
|
|
|
|
if(content !== null) {
|
|
|
|
this.showNotification("Impossible de récupérer certaines informations en ligne", "utilisation des dernières données récupérées")
|
|
|
|
return this.extractModsInformations(JSON.parse(content))
|
|
|
|
} else {
|
|
|
|
this.showNotification("Impossible de récupérer certaines informations en ligne", "Veuillez réessayez en cliquant sur le bouton")
|
|
|
|
logger.error("Unable to get chapters informations from server or filesystem")
|
|
|
|
return null
|
|
|
|
}
|
2021-05-13 13:50:07 +02:00
|
|
|
} else {
|
2021-10-02 16:53:55 +02:00
|
|
|
return null;
|
2021-05-13 13:50:07 +02:00
|
|
|
}
|
2021-10-02 16:53:55 +02:00
|
|
|
|
2021-05-13 13:50:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
extractModsInformations(json) {
|
|
|
|
this.modsList = json.chapters
|
|
|
|
return this.modsList
|
|
|
|
}
|
|
|
|
|
|
|
|
async extractMods(chapterId, event) {
|
|
|
|
return new Promise(async (resolve, reject) => {
|
|
|
|
const modsFolder = join(this.minecraftpath, "mods")
|
|
|
|
const shaderFolder = join(this.minecraftpath, "shaderpacks")
|
|
|
|
if(fs.existsSync(modsFolder))
|
|
|
|
fs.rmSync(modsFolder, { recursive: true })
|
|
|
|
if(fs.existsSync(shaderFolder))
|
|
|
|
fs.rmSync(shaderFolder, { recursive: true })
|
|
|
|
for(const i in this.modsList) {
|
|
|
|
if(Number(i) === chapterId) {
|
|
|
|
const chapter = this.modsList[i]
|
|
|
|
for(let j in chapter.modspack.mods) {
|
2021-05-14 16:21:22 +02:00
|
|
|
event.sender.send("progress", {type: "mods", task: 0, total: chapter.modspack.mods.length })
|
2021-05-13 13:50:07 +02:00
|
|
|
let modpackFolder = join(this.minecraftpath, "modpack", chapter.title)
|
|
|
|
if(!fs.existsSync(modpackFolder))
|
|
|
|
fs.mkdirSync(modpackFolder, { recursive: true })
|
|
|
|
const path = join(modpackFolder, `modpack${j}.zip`)
|
|
|
|
try {
|
|
|
|
fs.accessSync(path, constants.W_OK)
|
2021-05-14 16:21:22 +02:00
|
|
|
let sha1 = await hasha.fromFile(path, {algorithm: 'sha1'})
|
2021-05-13 13:50:07 +02:00
|
|
|
if(sha1 === chapter.modspack.sha1sum[j]) {
|
|
|
|
await this.unzipMods(path).catch(err => {
|
|
|
|
reject(err)
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
logger.warn(`sha1sum ${sha1} don't correspond to ${chapter.modspack.sha1sum[j]} of mods ${path}`)
|
|
|
|
await this.downloadAndExtractMods(chapter.modspack.mods[j], path).catch(err => {
|
|
|
|
reject(err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
event.sender.send("progress", {type: "mods", task: Number(j)+1, total: chapter.modspack.mods.length })
|
|
|
|
} catch (err) {
|
|
|
|
try {
|
|
|
|
await this.downloadAndExtractMods(chapter.modspack.mods[j], path)
|
|
|
|
} catch(e) {
|
|
|
|
reject({ err, e })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
resolve(chapter)
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
reject("didn't found the correct chapter" + chapter)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
downloadMods(link, path) {
|
|
|
|
return new Promise((resolve, reject) => {
|
2021-09-19 17:31:08 +02:00
|
|
|
axios.get(link, {responseType: "stream"}).then(res => {
|
2021-05-13 13:50:07 +02:00
|
|
|
if(res.status === 200) {
|
2021-05-14 16:21:22 +02:00
|
|
|
if(fs.existsSync(path))
|
|
|
|
fs.rmSync(path)
|
2021-05-13 13:50:07 +02:00
|
|
|
res.data.pipe(fs.createWriteStream(path));
|
|
|
|
res.data.on("end", () => {
|
|
|
|
logger.log("download completed");
|
|
|
|
resolve("download completed")
|
2021-05-14 16:21:22 +02:00
|
|
|
})
|
2021-05-13 13:50:07 +02:00
|
|
|
} else {
|
|
|
|
reject(res.status)
|
|
|
|
}
|
|
|
|
}).catch(err => {
|
|
|
|
reject(err)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-05-14 16:21:22 +02:00
|
|
|
async unzipMods(zipLocation, outLocation=this.minecraftpath) {
|
2021-05-13 13:50:07 +02:00
|
|
|
return new Promise(async (resolve, reject) => {
|
2021-10-06 13:27:56 +02:00
|
|
|
logger.info(`unzipping ${zipLocation} file to ${outLocation}`)
|
2021-05-14 16:21:22 +02:00
|
|
|
zip(zipLocation, { dir: outLocation }).then(() => {
|
2021-05-13 13:50:07 +02:00
|
|
|
resolve()
|
|
|
|
}).catch(err => {
|
2021-10-06 13:27:56 +02:00
|
|
|
logger.err(`failed to unzip file`)
|
2021-05-13 13:50:07 +02:00
|
|
|
reject(err)
|
|
|
|
})
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
async downloadAndExtractMods(link, path) {
|
2021-05-14 16:21:22 +02:00
|
|
|
return new Promise(async (resolve, reject) => {
|
2021-05-13 13:50:07 +02:00
|
|
|
this.downloadMods(link, path).then(() => {
|
|
|
|
this.unzipMods(path).then(() => {
|
|
|
|
resolve()
|
|
|
|
}).catch(err => {
|
|
|
|
reject(err)
|
|
|
|
})
|
|
|
|
}).catch(err => {
|
|
|
|
reject(err)
|
|
|
|
})
|
|
|
|
|
|
|
|
})
|
|
|
|
}
|
2021-05-14 16:21:22 +02:00
|
|
|
|
|
|
|
async extractJava(chapterId, event) {
|
|
|
|
return new Promise(async (resolve, reject) => {
|
|
|
|
const runtime = join(this.minecraftpath, "runtime")
|
|
|
|
if(this.modsList[chapterId].java.platform[process.platform][process.arch] !== undefined) {
|
|
|
|
event.sender.send("progress", {type: "java", task: 0, total: 1 })
|
|
|
|
const infos = this.modsList[chapterId].java.platform[process.platform][process.arch]
|
|
|
|
const jre = join(runtime, infos.name)
|
|
|
|
const downloadFolder = join(runtime, "download")
|
|
|
|
const downloadFile = join(downloadFolder, `${infos.name}.zip`)
|
|
|
|
if(fs.existsSync(jre))
|
|
|
|
fs.rmSync(jre, { recursive: true })
|
|
|
|
if(!fs.existsSync(downloadFolder))
|
|
|
|
fs.mkdirSync(downloadFolder, { recursive: true })
|
|
|
|
if(fs.existsSync(downloadFile)) {
|
|
|
|
let sha1 = await hasha.fromFile(downloadFile, {algorithm: 'sha256'})
|
|
|
|
if(sha1 === infos.sha256sum) {
|
|
|
|
await this.unzipMods(downloadFile, runtime)
|
|
|
|
resolve(join(jre, 'bin', 'java.exe'))
|
|
|
|
} else {
|
|
|
|
logger.warn(`java sha256sum ${sha1} don't correspond to ${infos.sha256sum}`)
|
|
|
|
await this.downloadAndExtractJava(infos, downloadFolder, runtime).then(() => resolve(join(jre, 'bin', 'java.exe'))).catch(err => reject(err))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
await this.downloadAndExtractJava(infos, downloadFolder, runtime).then(() => resolve(join(jre, 'bin', 'java.exe'))).catch(err => reject(err))
|
|
|
|
}
|
|
|
|
event.sender.send("progress", {type: "java", task: 1, total: 1 })
|
|
|
|
} else {
|
2021-10-06 13:27:56 +02:00
|
|
|
reject("There is not available version for this system")
|
2021-05-14 16:21:22 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async downloadAndExtractJava(infos, downloadFolder, runtimeFolder) {
|
|
|
|
return new Promise((resolve, reject) => {
|
2021-10-06 13:27:56 +02:00
|
|
|
logger.info(`Downloading ${infos.name}`)
|
2021-05-14 16:21:22 +02:00
|
|
|
this.downloadMods(infos.link, join(downloadFolder, `${infos.name}.zip`)).then(() => {
|
2021-10-06 13:27:56 +02:00
|
|
|
logger.info(`download completed`)
|
|
|
|
this.unzipMods(join(downloadFolder, `${infos.name}.zip`), runtimeFolder).then(() => {
|
|
|
|
logger.info(`File unzipped`)
|
|
|
|
resolve()
|
|
|
|
}).catch(err => {
|
|
|
|
logger.info(`Failed to unzip ${join(downloadFolder, `${infos.name}.zip`)}`)
|
|
|
|
reject(err)
|
|
|
|
})
|
2021-05-14 16:21:22 +02:00
|
|
|
}).catch(err => {
|
2021-10-06 13:27:56 +02:00
|
|
|
logger.err(`Download failed`)
|
2021-05-14 16:21:22 +02:00
|
|
|
reject(err)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
2021-05-15 17:11:57 +02:00
|
|
|
|
|
|
|
invalidateData(event) {
|
2021-09-19 17:31:08 +02:00
|
|
|
logger.info("invalidate game data...")
|
2021-05-15 17:11:57 +02:00
|
|
|
const assets = join(this.minecraftpath, 'assets')
|
|
|
|
const librairies = join(this.minecraftpath,'libraries')
|
|
|
|
const natives = join(this.minecraftpath, 'natives')
|
|
|
|
if(fs.existsSync(assets))
|
|
|
|
fs.rmdirSync(assets, { recursive: true })
|
|
|
|
if(fs.existsSync(librairies))
|
|
|
|
fs.rmdirSync(librairies, { recursive: true })
|
|
|
|
if(fs.existsSync(natives))
|
|
|
|
fs.rmdirSync(natives, { recursive: true })
|
2021-09-19 17:31:08 +02:00
|
|
|
logger.info("Game data invalidated")
|
2021-05-15 17:11:57 +02:00
|
|
|
event.sender.send("invalidated")
|
|
|
|
}
|
2021-05-13 13:50:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = new Minecraft
|