2022-10-16 14:47:18 +00:00
|
|
|
const fs = require('fs');
|
2022-10-16 19:13:30 +00:00
|
|
|
const fu = require('./fileUtil');
|
2022-10-16 14:47:18 +00:00
|
|
|
const path = require('path');
|
2022-10-16 19:13:30 +00:00
|
|
|
const crypto = require('crypto');
|
2022-10-16 16:52:34 +00:00
|
|
|
const axios = require('axios').default;
|
2022-10-17 16:10:17 +00:00
|
|
|
const dpapi = require('wincrypt');
|
2022-10-16 21:10:07 +00:00
|
|
|
const executeUtil = require('./executeUtil');
|
2022-10-16 19:13:30 +00:00
|
|
|
const { EventEmitter } = require('events');
|
|
|
|
const { DownloaderHelper } = require('node-downloader-helper');
|
2022-10-16 14:47:18 +00:00
|
|
|
|
2022-10-16 16:52:34 +00:00
|
|
|
const checkUpdateURL = "https://osu.ppy.sh/web/check-updates.php?action=check&stream=";
|
2022-10-17 16:10:17 +00:00
|
|
|
const osuEncryptBuffer = Buffer.from('cu24180ncjeiu0ci1nwui', "utf-8")
|
2022-10-16 14:47:18 +00:00
|
|
|
const osuEntities = [
|
|
|
|
'avcodec-51.dll',
|
|
|
|
'avformat-52.dll',
|
|
|
|
'avutil-49.dll',
|
|
|
|
'bass.dll',
|
|
|
|
'bass_fx.dll',
|
|
|
|
'collection.db',
|
|
|
|
'd3dcompiler_47.dll',
|
|
|
|
'Data',
|
|
|
|
'Downloads',
|
|
|
|
'libEGL.dll',
|
|
|
|
'libGLESv2.dll',
|
|
|
|
'Logs',
|
|
|
|
'Microsoft.Ink.dll',
|
|
|
|
'OpenTK.dll',
|
|
|
|
'osu!.cfg',
|
|
|
|
'osu!.db',
|
|
|
|
'osu!.exe',
|
|
|
|
'osu!auth.dll',
|
|
|
|
'osu!gameplay.dll',
|
|
|
|
'osu!seasonal.dll',
|
|
|
|
'osu!ui.dll',
|
|
|
|
'presence.db',
|
|
|
|
'pthreadGC2.dll',
|
|
|
|
'scores.db',
|
|
|
|
'Skins',
|
|
|
|
'Songs'
|
|
|
|
]
|
|
|
|
|
|
|
|
async function isValidOsuFolder(path) {
|
|
|
|
const allFiles = await fs.promises.readdir(path);
|
|
|
|
let matches = 0;
|
|
|
|
for (const file of allFiles) {
|
|
|
|
if (osuEntities.includes(file)) matches = matches + 1;
|
|
|
|
}
|
|
|
|
return Math.round((matches / osuEntities.length) * 100) >= 60;
|
|
|
|
}
|
|
|
|
|
2022-10-16 16:41:15 +00:00
|
|
|
async function getLatestConfig(osuPath) {
|
|
|
|
const configFileInfo = {
|
|
|
|
name: "",
|
|
|
|
path: "",
|
|
|
|
get: async (key) => {
|
2022-10-17 23:46:04 +00:00
|
|
|
if (!configFileInfo.path)
|
|
|
|
return "";
|
2022-10-16 16:41:15 +00:00
|
|
|
const fileStream = await fs.promises.readFile(configFileInfo.path, "utf-8");
|
|
|
|
const lines = fileStream.split(/\r?\n/)
|
|
|
|
for (const line of lines) {
|
|
|
|
if (line.includes(' = ')) {
|
|
|
|
const argsPair = line.split(' = ', 2);
|
|
|
|
const keyname = argsPair[0]
|
|
|
|
const value = argsPair[1];
|
|
|
|
if (keyname == key) {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-10-17 23:46:04 +00:00
|
|
|
const userOsuConfig = path.join(osuPath, `osu!.${process.env['USERNAME']}.cfg`)
|
|
|
|
if (fs.existsSync(userOsuConfig)) {
|
|
|
|
configFileInfo.name = `osu!.${process.env['USERNAME']}.cfg`;
|
|
|
|
configFileInfo.path = userOsuConfig;
|
2022-10-16 16:41:15 +00:00
|
|
|
}
|
|
|
|
return configFileInfo;
|
|
|
|
}
|
|
|
|
|
2022-10-16 16:52:34 +00:00
|
|
|
async function getUpdateFiles(releaseStream) {
|
|
|
|
const releaseData = await axios.get(checkUpdateURL + releaseStream, {});
|
|
|
|
return releaseData.data;
|
2022-10-16 16:41:15 +00:00
|
|
|
}
|
|
|
|
|
2022-10-16 19:13:30 +00:00
|
|
|
async function filesThatNeedUpdate(osuPath, updateFiles) {
|
|
|
|
const filesToDownload = [];
|
|
|
|
for (const updatedFile of updateFiles) {
|
|
|
|
const fileName = updatedFile.filename;
|
|
|
|
const fileHash = updatedFile.file_hash;
|
|
|
|
const fileURL = updatedFile.url_full;
|
|
|
|
|
|
|
|
const fileOnDisk = path.join(osuPath, fileName);
|
|
|
|
if (await fu.existsAsync(fileOnDisk)) {
|
|
|
|
const binaryFileContents = await fs.promises.readFile(fileOnDisk);
|
|
|
|
const existingFileMD5 = crypto.createHash("md5").update(binaryFileContents).digest("hex");
|
|
|
|
if (existingFileMD5.toLowerCase() != fileHash.toLowerCase()) {
|
|
|
|
filesToDownload.push({
|
|
|
|
fileName,
|
|
|
|
fileURL
|
|
|
|
})
|
2022-10-20 17:08:48 +00:00
|
|
|
//console.log("hashes are not matching", `(${existingFileMD5} - ${fileHash})`);
|
2022-10-16 19:13:30 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
filesToDownload.push({
|
|
|
|
fileName,
|
|
|
|
fileURL
|
|
|
|
});
|
2022-10-20 17:08:48 +00:00
|
|
|
//console.log("new file " + fileName);
|
2022-10-16 19:13:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return filesToDownload;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function downloadUpdateFiles(osuPath, filesToUpdate) {
|
|
|
|
const eventEmitter = new EventEmitter();
|
|
|
|
let completedIndex = 0;
|
|
|
|
filesToUpdate.forEach(async (fileToUpdate) => {
|
|
|
|
const filePath = path.join(osuPath, fileToUpdate.fileName);
|
2022-10-20 17:08:48 +00:00
|
|
|
console.log(filePath);
|
2022-10-16 20:44:56 +00:00
|
|
|
if (await fu.existsAsync(filePath))
|
|
|
|
await fs.promises.rm(filePath);
|
2022-10-16 21:10:07 +00:00
|
|
|
|
2022-10-16 19:13:30 +00:00
|
|
|
const fileDownload = new DownloaderHelper(fileToUpdate.fileURL, osuPath, {
|
|
|
|
fileName: fileToUpdate.fileName,
|
|
|
|
override: true,
|
|
|
|
});
|
|
|
|
fileDownload.on('end', () => {
|
|
|
|
completedIndex = completedIndex + 1;
|
|
|
|
if (completedIndex >= filesToUpdate.length)
|
|
|
|
eventEmitter.emit('completed');
|
|
|
|
});
|
2022-10-20 17:08:48 +00:00
|
|
|
fileDownload.on('error', (err) => {
|
|
|
|
console.log(err);
|
|
|
|
eventEmitter.emit('error');
|
|
|
|
});
|
2022-10-16 19:13:30 +00:00
|
|
|
|
|
|
|
fileDownload.start().catch(err => console.error(err));
|
|
|
|
});
|
|
|
|
|
|
|
|
return eventEmitter;
|
|
|
|
}
|
|
|
|
|
2022-10-16 21:10:07 +00:00
|
|
|
async function startWithDevServer(osuPath, serverDomain, onExit) {
|
|
|
|
const osuExe = path.join(osuPath, "osu!.exe");
|
|
|
|
if (!await fu.existsAsync(osuExe)) return false;
|
|
|
|
executeUtil.runFile(osuPath, osuExe, ["-devserver", serverDomain], onExit);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-10-17 23:46:04 +00:00
|
|
|
async function encryptString(value) {
|
|
|
|
return Buffer.from(await dpapi.protect(Buffer.from(value, 'utf-8'), osuEncryptBuffer, 'CurrentUser'), 'utf-8').toString('base64');
|
|
|
|
}
|
|
|
|
|
|
|
|
async function decryptString(value) {
|
|
|
|
const decrypted = await dpapi.unprotect(Buffer.from(value, 'base64'), osuEncryptBuffer, 'CurrentUser');
|
|
|
|
return decrypted.toString();
|
2022-10-17 16:10:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function setConfigValue(configPath, key, value) {
|
|
|
|
const configLines = new Array();
|
|
|
|
const fileStream = await fs.promises.readFile(configPath, "utf-8");
|
|
|
|
const lines = fileStream.split(/\r?\n/)
|
|
|
|
for (const line of lines) {
|
|
|
|
if (line.includes(' = ')) {
|
2022-10-17 23:46:04 +00:00
|
|
|
const argsPair = line.split(' = ', 2);
|
|
|
|
const keyname = argsPair[0].trim();
|
2022-10-17 16:10:17 +00:00
|
|
|
if (key == keyname) {
|
|
|
|
configLines.push(`${keyname} = ${value}`);
|
|
|
|
} else {
|
|
|
|
configLines.push(line);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
configLines.push(line);
|
|
|
|
}
|
|
|
|
}
|
2022-10-17 23:46:04 +00:00
|
|
|
await fs.promises.writeFile(configPath, configLines.join("\n"), 'utf-8');
|
2022-10-17 16:10:17 +00:00
|
|
|
}
|
|
|
|
|
2022-10-17 23:46:04 +00:00
|
|
|
module.exports = {
|
|
|
|
isValidOsuFolder, getLatestConfig, getUpdateFiles, filesThatNeedUpdate,
|
|
|
|
downloadUpdateFiles, startOsuWithDevServer: startWithDevServer, setConfigValue,
|
|
|
|
encryptString, decryptString
|
|
|
|
}
|