1
0
Fork 0
forked from svrjs/svrjs

Lint out the codebase

This commit is contained in:
Dorian Niemiec 2024-08-27 10:55:24 +02:00
parent 5a3e6765f1
commit fd5e8ba70e
4 changed files with 41 additions and 42 deletions

View file

@ -687,17 +687,24 @@ if (!disableMods) {
// If there was another error, try creating the temp folder and then the modloader folder again
fs.mkdirSync(process.dirname + "/temp");
try {
fs.mkdirSync(process.dirname + "/temp/" + modloaderFolderName);
fs.mkdirSync(
process.dirname + "/temp/" + modloaderFolderName,
);
} catch (err) {
// If there was another error, throw it
if (err.code != "EEXIST") throw err;
}
}
}
// Create a subfolder for the current mod within the modloader folder
fs.mkdirSync(process.dirname + "/temp/" + modloaderFolderName + "/" + modFileRaw);
// Create a subfolder for the current mod within the modloader folder
fs.mkdirSync(
process.dirname +
"/temp/" +
modloaderFolderName +
"/" +
modFileRaw,
);
} catch (err) {
// If there was an error creating the folder, ignore it if it's a known error
if (err.code != "EEXIST" && err.code != "ENOENT") throw err;

View file

@ -199,25 +199,20 @@ module.exports = (req, res, logFacilities, config, next) => {
if (cacheEntry) {
cb(cacheEntry.hash);
} else {
crypto.scrypt(
password,
list[_i].salt,
64,
(err, derivedKey) => {
if (err) {
res.error(500, err);
} else {
const key = derivedKey.toString("hex");
scryptCache.push({
hash: key,
password: hashedPassword,
salt: list[_i].salt,
addDate: new Date(),
});
cb(key);
}
},
);
crypto.scrypt(password, list[_i].salt, 64, (err, derivedKey) => {
if (err) {
res.error(500, err);
} else {
const key = derivedKey.toString("hex");
scryptCache.push({
hash: key,
password: hashedPassword,
salt: list[_i].salt,
addDate: new Date(),
});
cb(key);
}
});
}
}
} else if (list[_i].pbkdf2) {

View file

@ -9,25 +9,22 @@ module.exports = (req, res, logFacilities, config, next) => {
req.originalParsedURL.pathname[req.originalParsedURL.pathname.length - 1] !=
"/"
) {
fs.stat(
"." + decodeURIComponent(req.parsedURL.pathname),
(err, stats) => {
if (err || !stats.isDirectory()) {
try {
next();
} catch (err) {
res.error(500, err);
}
} else {
res.redirect(
req.originalParsedURL.pathname +
"/" +
req.parsedURL.search +
req.parsedURL.hash,
);
fs.stat("." + decodeURIComponent(req.parsedURL.pathname), (err, stats) => {
if (err || !stats.isDirectory()) {
try {
next();
} catch (err) {
res.error(500, err);
}
},
);
} else {
res.redirect(
req.originalParsedURL.pathname +
"/" +
req.parsedURL.search +
req.parsedURL.hash,
);
}
});
} else {
next();
}

View file

@ -119,7 +119,7 @@ if (!process.singleThreaded) {
let oldLog = console.log;
console.log = (...params) => {
if (
a == "ChildProcess.prototype.send() - Sorry! Not implemented yet"
params[0] == "ChildProcess.prototype.send() - Sorry! Not implemented yet"
) {
throw new Error("NOT IMPLEMENTED");
} else {