mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2025-04-18 07:13:48 +00:00
102 lines
2.8 KiB
TypeScript
102 lines
2.8 KiB
TypeScript
import { Guild } from 'discord.js';
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import { state } from './Radio';
|
|
import { statistics } from './Statistics';
|
|
|
|
export interface datastore {
|
|
guild: {
|
|
id: string,
|
|
name?: string
|
|
},
|
|
statistics: statistics,
|
|
state: state | null,
|
|
updated?: string
|
|
}
|
|
|
|
export default class Datastore {
|
|
map: Map<string, datastore>;
|
|
constructor() {
|
|
this.map = new Map();
|
|
this.loadData();
|
|
}
|
|
|
|
loadData() {
|
|
const dir = path.join(path.dirname(__dirname), '../../datastore');
|
|
if (!fs.existsSync(dir)) {
|
|
fs.mkdirSync(dir);
|
|
}
|
|
//console.log("");
|
|
const dataFiles = fs.readdirSync(path.join(path.dirname(__dirname), '../../datastore')).filter((f: string) => f.endsWith('.json'));
|
|
for (const file of dataFiles) {
|
|
try {
|
|
const json = require(`../../../datastore/${file}`);
|
|
this.map.set(json.guild.id, json);
|
|
//console.log('[LOADED] ' + file + " (" + json.guild.id + ")");
|
|
//console.log(JSON.stringify(json, null, 4));
|
|
} catch (error) {
|
|
//console.log('[ERROR] Loading ' + file + ' failed');
|
|
}
|
|
}
|
|
//console.log("");
|
|
}
|
|
|
|
checkEntry(id: string | undefined){
|
|
if(!id) return;
|
|
this.loadEntry(id);
|
|
if(!this.map.has(id)){
|
|
this.createEntry(id);
|
|
//this.showEntry(this.getEntry(id));
|
|
} else {
|
|
//this.showEntry(this.getEntry(id));
|
|
}
|
|
}
|
|
|
|
createEntry(id: string){
|
|
let newData: datastore = {
|
|
guild: {
|
|
id: id,
|
|
},
|
|
statistics: {},
|
|
state: null
|
|
};
|
|
this.map.set(id, newData);
|
|
this.saveEntry(id, newData);
|
|
}
|
|
|
|
loadEntry(id: string){
|
|
try {
|
|
const json = require(`../../../datastore/` + id + '.json');
|
|
this.map.set(id, json);
|
|
} catch (error) {
|
|
}
|
|
}
|
|
|
|
getEntry(id: string){
|
|
return this.map.get(id);
|
|
}
|
|
|
|
updateEntry(guild: Guild | { id: string, name?: string }, newData: datastore) {
|
|
newData.guild.name = guild.name;
|
|
|
|
let date = new Date();
|
|
newData.updated = date.toISOString().substring(0, 10)
|
|
|
|
this.map.set(guild.id, newData);
|
|
this.saveEntry(guild.id, newData);
|
|
//this.showEntry(this.getEntry(guild.id));
|
|
}
|
|
|
|
showEntry(data : datastore){
|
|
console.log(data);
|
|
}
|
|
|
|
saveEntry(file: string, data: datastore) {
|
|
fs.writeFile(path.join(path.dirname(__dirname), '../../datastore') + "/" + file + ".json", JSON.stringify(data, null, 4), 'utf8', function(err: NodeJS.ErrnoException | null) {
|
|
if (err) {
|
|
|
|
}
|
|
});
|
|
}
|
|
};
|