Version 1.0.0-rc1 - Version initiale (Ajout du serveur, des playlists)

This commit is contained in:
2025-04-20 23:09:46 +02:00
parent 12c4e2740a
commit 812d5c72fa
37 changed files with 1860 additions and 157 deletions

View File

@@ -2,11 +2,13 @@ const {Database} = require("./Database")
const {__glob} = require("../GlobalVars")
const {LogType} = require("loguix")
const path = require("path")
const { get } = require("http")
const clog = new LogType("Configuration")
const config = new Database("config", __glob.DATA + path.sep + "config.json", {
token: "",
client_secret: "",
report: {
channel : "",
contact : ""
@@ -17,7 +19,9 @@ const config = new Database("config", __glob.DATA + path.sep + "config.json", {
clientId: "",
clientSecret: ""
}
}
},
website: "",
server_port: 5000,
})
function getToken() {
@@ -45,9 +49,21 @@ function getSpotifyClientSecret() {
return config.data.api.spotify.clientSecret
}
function getWebsiteLink() {
return config.data.website
}
function getPort() {
return config.data.server_port
}
function getClientSecret() {
return config.data.client_secret
}
if(getToken() == "") {
clog.error("Impossible de démarrer sans token valide")
process.exit(1)
}
module.exports = {getToken, getReportChannel, getReportContact, getYoutubeApiKey, getSpotifyClientId, getSpotifyClientSecret}
module.exports = {getToken, getClientSecret, getReportChannel, getReportContact, getYoutubeApiKey, getSpotifyClientId, getSpotifyClientSecret, getWebsiteLink, getPort}