Added some rudimentary server info

This commit is contained in:
2022-09-25 01:31:59 -04:00
parent c4286373e3
commit 13e730df7b
3 changed files with 47 additions and 6 deletions

38
app/MinecraftServer.js Normal file
View File

@ -0,0 +1,38 @@
const fs = require('fs');
class Server {
constructor(dir) {
this.rootDir = dir;
this.name = dir.split('/').at(-1);
this.pidFilePath = this.rootDir + '/pid.txt';
// read version file
var versionFilePath = this.rootDir + '/current_version.txt';
this.version = fs.readFileSync(versionFilePath, {encoding:'utf8', flag:'r'});
// set server state
if (fs.existsSync(this.pidFilePath)) {
this.state = true;
} else {
this.state = false;
}
}
start() {
console.log('Starting server...');
}
stop() {
console.log('Stopping server...');
}
getPid() {
if (fs.existsSync(this.pidFilePath)) {
return fs.readFileSync(this.pidFilePath, {encoding:'utf8', flag:'r'})
}
return -1;
}
}
exports.Server = Server;