Compare commits

...

6 commits

Author SHA1 Message Date
Slincnik
2dc7172179
Merge 7109a2a0ef into b570759c09 2024-12-11 15:16:52 +03:00
Slincnik
7109a2a0ef
refactor: added barrel file to utils 2024-12-11 15:13:07 +03:00
Slincnik
55e0118e24
feat: embed builder util 2024-12-11 15:12:32 +03:00
Slincnik
b634d9347d
feat(config): config service 2024-12-11 15:11:28 +03:00
Slincnik
9a00f82d03
build: delete unused depend 2024-12-11 15:07:11 +03:00
Jonny_Bro (Nikita)
b570759c09
Update README.md
remove codefactor image
2024-12-09 10:33:09 +05:00
13 changed files with 115 additions and 61 deletions

2
.gitignore vendored
View file

@ -3,7 +3,7 @@
Thumbs.db
# Bot Configuration
/config.js
/config.json
# DB
/giveaways.json

View file

@ -1,50 +0,0 @@
export default {
/* The token of your Discord Bot */
token: "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
/* UserID of your Discord Bot */
userId: "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
/* The URL of the MongoDB database */
mongoDB: "mongodb://127.0.0.1:27017/discordbot",
/* Set to true for production */
/* If set to false, commands only will be registered on the support.id server */
production: true,
/* Spotify */
spotify: {
clientId: "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
clientSecret: "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
},
/* YouTube Cookie */
youtubeCookie: "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
/* Support server */
support: {
id: "123456789098765432", // The ID of the support server
logs: "123456789098765432", // The channel's ID for logs on the support server (when bot joins or leaves a guild)
invite: "https://discord.gg/discord", // Invite link to the support server
},
/* Dashboard configuration */
/* dashboard: {
enabled: false, // Whether the dashboard is enabled or not
maintanceKey: "letmein", // Maintance key
port: 80, // Dashboard port
domain: "http://localhost", // The base URL of the dashboard without / at the end
secret: "XXXXXXXXXXXXXXXXXXXXXXXXXXXX", // Your Bot's Client Secret
logs: "123456789098765432", // The channel ID for logs
}, */
/* Embeds defaults */
embed: {
color: "#00FF00", // Color
footer: {
text:
"My Discord Bot | v" +
import("./package.json", {
with: { type: "json" },
}).version, // Footer text
},
},
/* Bot's owner informations */
owner: {
id: "123456789098765432", // The ID of the bot's owner
},
/* Add your own API keys here */
apiKeys: {},
};

26
config.sample.json Normal file
View file

@ -0,0 +1,26 @@
{
"token": "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"userId": "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"mongoDB": "mongodb://127.0.0.1:27017/discordbot",
"production": true,
"spotify": {
"clientId": "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"clientSecret": "XXXXXXXXXXXXXXXXXXXXXXXXXXXX"
},
"youtubeCookie": "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"support": {
"id": "123456789098765432",
"logs": "123456789098765432",
"invite": "https://discord.gg/discord"
},
"embed": {
"color": "#00FF00",
"footer": {
"text": "My Discord Bot | v1.0.0"
}
},
"owner": {
"id": "123456789098765432"
},
"apiKeys": {}
}

View file

@ -11,7 +11,6 @@
"dependencies": {
"@discord-player/extractor": "^4.5.1",
"@discordjs/opus": "^0.9.0",
"@discordjs/rest": "^2.4.0",
"@discordjs/voice": "^0.18.0",
"@napi-rs/canvas": "^0.1.63",
"chalk": "^4.1.2",

View file

@ -14,9 +14,6 @@ importers:
'@discordjs/opus':
specifier: ^0.9.0
version: 0.9.0
'@discordjs/rest':
specifier: ^2.4.0
version: 2.4.0
'@discordjs/voice':
specifier: ^0.18.0
version: 0.18.0(@discordjs/opus@0.9.0)

View file

@ -10,7 +10,6 @@ import { promises as fs } from "fs";
import { setTimeout } from "timers/promises";
import mongoose from "mongoose";
import config from "../../config.js";
import * as emojis from "../../emojis.json";
import langs from "../languages/language-meta.js";
import logger from "../helpers/logger.js";

View file

@ -1,3 +1,4 @@
import path from "node:path";
export const PROJECT_ROOT = path.join(import.meta.dirname, "..");
export const CONFIG_PATH = path.join(PROJECT_ROOT, "..", "config.json");

View file

@ -1,6 +1,6 @@
import logger from "../../helpers/logger.js";
import { client } from "../../index.js";
import { getFilePaths } from "../../utils/get-path.js";
import { getFilePaths } from "../../utils/index.js";
import { toFileURL } from "../../utils/resolve-file.js";
import registerCommands from "./functions/registerCommands.js";

View file

@ -1,6 +1,6 @@
import logger from "../../helpers/logger.js";
import { client } from "../../index.js";
import { getFilePaths } from "../../utils/get-path.js";
import { getFilePaths } from "../../utils/index.js";
import { toFileURL } from "../../utils/resolve-file.js";
export const events = [];

View file

@ -0,0 +1,63 @@
import fs from "fs";
import { CONFIG_PATH } from "../../constants/index.js";
import logger from "../../helpers/logger.js";
class ConfigService {
constructor() {
this.config = this.#loadConfig();
}
/**
*
* @param {string} key - key of the config
* @returns {*} - value of the config
*/
get(key) {
const keys = key.split(".");
return keys.reduce((config, k) => (config && config[k] !== undefined ? config[k] : undefined), this.config);
}
/**
* Set a config value.
* @param {string} key - key of the config to set
* @param {*} value - value to set
*/
set(key, value) {
const keys = key.split(".");
keys.reduce((config, k, i) => {
if (i === keys.length - 1) {
config[k] = value;
} else {
config[k] = config[k] || {};
}
return config[k];
}, this.config);
this.#saveConfig();
}
/**
* Load the config from the file.
* @returns {Config} - loaded config
*/
#loadConfig() {
if (fs.existsSync(CONFIG_PATH)) {
return JSON.parse(fs.readFileSync(CONFIG_PATH, "utf-8"));
} else {
logger.error("Config file not found");
process.exit(1);
}
}
/**
* Save the config to the file.
*/
#saveConfig() {
try {
fs.writeFileSync(CONFIG_PATH, JSON.stringify(this.config, null, 4), "utf-8");
} catch (e) {
logger.error("Failed to save config: ", e);
}
}
}
export default ConfigService;

View file

@ -1,9 +1,9 @@
import { Client } from "discord.js";
import { config } from "../../config.js";
import MongooseAdapter from "../adapters/database/MongooseAdapter.js";
import { init as initCommands } from "../handlers/command-handler/index.js";
import { init as initEvents } from "../handlers/event-handler/index.js";
import logger from "../helpers/logger.js";
import configService from "../services/config/index.js";
export class ExtendedClient extends Client {
/**
@ -11,14 +11,16 @@ export class ExtendedClient extends Client {
*/
constructor(options) {
super(options);
this.adapter = new MongooseAdapter(config.mongoDB);
this.configService = new configService();
this.adapter = new MongooseAdapter(this.configService.get("mongoDB"));
}
async init() {
try {
await this.adapter.connect();
return this.login(config.token)
return this.login(this.configService.get("token"))
.then(async () => await Promise.all([initCommands(), initEvents()]))
.catch(console.error);
} catch (error) {

14
src/utils/create-embed.js Normal file
View file

@ -0,0 +1,14 @@
import { EmbedBuilder } from "discord.js";
import { client } from "../index.js";
/**
*
* @param {import("discord.js").EmbedData} data - embed data
* @returns The generated EmbedBuilder instance.
*/
export const createEmbed = data =>
new EmbedBuilder({
footer: typeof data.footer === "object" ? data.footer : data.footer ? { text: data.footer } : client.configService.get("embed.footer"),
color: data.color ?? client.configService.get("embed.color"),
...data,
});

3
src/utils/index.js Normal file
View file

@ -0,0 +1,3 @@
export * from "./create-embed.js";
export * from "./get-path.js";
export * from "./resolve-file.js";