some updates, will update to my own fork of dashboard soon

This commit is contained in:
Jonny_Bro (Nikita) 2023-06-22 17:33:33 +05:00
parent 274672a405
commit b0078f3a26
5 changed files with 359 additions and 319 deletions

View file

@ -70,8 +70,8 @@ class Play extends BaseCommand {
leaveOnEnd: false, leaveOnEnd: false,
leaveOnStop: true, leaveOnStop: true,
skipOnNoStream: true, skipOnNoStream: true,
maxSize: 500, maxSize: 200,
maxHistorySize: 100, maxHistorySize: 50,
}); });
} }

View file

@ -1,6 +1,5 @@
const SoftUI = require("dbd-soft-ui"), const SoftUI = require("dbd-soft-ui"),
DBD = require("discord-dashboard"), DBD = require("discord-dashboard");
os = require("os");
/** /**
* *
@ -44,18 +43,17 @@ module.exports.load = async client => {
id: client.config.user, id: client.config.user,
secret: client.config.dashboard.secret, secret: client.config.dashboard.secret,
}, },
cookiesSecret: client.config.dashboard.secret,
domain: client.config.dashboard.domain, domain: client.config.dashboard.domain,
redirectUri: `${client.config.dashboard.domain}/discord/callback`, redirectUri: `${client.config.dashboard.domain}${client.config.dashboard.port !== 80 ? `:${client.config.dashboard.port}` : ""}/discord/callback`,
bot: client, bot: client,
ownerIDs: [ client.config.owner ], ownerIDs: [ client.config.owner ],
requiredPermissions: [ DBD.DISCORD_FLAGS.Permissions.VIEW_CHANNEL ],
acceptPrivacyPolicy: true,
minimizedConsoleLogs: true, minimizedConsoleLogs: true,
invite: { invite: {
clientId: client.config.user, clientId: client.config.user,
scopes: ["bot", "applications.commands"], scopes: ["bot", "applications.commands"],
permissions: "8", permissions: "8",
redirectUri: client.config.dashboard.domain, redirectUri: client.config.dashboard.domain + client.config.dashboard.port !== 80 ? `:${client.config.dashboard.port}` : "",
}, },
supportServer: { supportServer: {
slash: "/support", slash: "/support",
@ -102,43 +100,32 @@ module.exports.load = async client => {
customThemeOptions: { customThemeOptions: {
// eslint-disable-next-line no-unused-vars // eslint-disable-next-line no-unused-vars
index: async ({ req, res, config }) => { index: async ({ req, res, config }) => {
const username = req.session?.user?.username || "Guest"; const user = req.session?.user;
const username = user?.username || "Guest";
const cards = [ const cards = [
{ {
title: "Current User", title: "Current User",
icon: "single-02", icon: "single-02",
getValue: username, getValue: username,
progressBar: {
enabled: false,
getProgress: client.guilds.cache.size,
},
}, },
{ {
title: "CPU", title: "Node Version",
icon: "tv-2",
getValue: os.cpus()[0].model,
progressBar: {
enabled: false,
getProgress: 50,
},
},
{
title: "System Platform",
icon: "settings-gear-65", icon: "settings-gear-65",
getValue: os.platform(), getValue: process.versions.node,
progressBar: {
enabled: false,
getProgress: 50,
},
}, },
{ {
title: "Server Count", title: "Users Count",
icon: "favourite-28",
getValue: client.users.cache.size,
},
{
title: "Servers Count",
icon: "notification-70", icon: "notification-70",
getValue: `${client.guilds.cache.size} out of 2000`, getValue: `${client.guilds.cache.size} out of 2000`,
progressBar: { progressBar: {
enabled: true, enabled: true,
getProgress: (client.guilds.cache.size / 2000) * 100, getProgress: Math.round((client.guilds.cache.size / 2000) * 100),
}, },
}, },
]; ];
@ -196,19 +183,25 @@ module.exports.load = async client => {
}, },
commands: categories, commands: categories,
locales: { locales: {
enUS: require("../languages/en-US/dashboard.json"), enUS: require("../languages/en-US/dashboard.json").DASHBOARD,
ruRU: require("../languages/ru-RU/dashboard.json"), ruRU: require("../languages/ru-RU/dashboard.json").DASHBOARD,
ukUA: require("../languages/uk-UA/dashboard.json"), ukUA: require("../languages/uk-UA/dashboard.json").DASHBOARD,
}, },
}), }),
customPages: [
DBD.customPagesTypes.redirectToUrl("/github", () => {
return "https://github.com/JonnyBro/JaBa";
}),
],
settings: [{ settings: [{
categoryId: "setup", categoryId: "main",
categoryName: "Setup", categoryName: "Main settings",
categoryDescription: "Setup your bot with default settings!", categoryDescription: "Setup your bot here!",
categoryOptionsList: [{ categoryOptionsList: [
{
optionId: "lang", optionId: "lang",
optionName: "Language", optionName: "Language",
optionDescription: "Change bot's language easily", optionDescription: client.translate("administration/setlang:DESCRIPTION"),
optionType: DBD.formTypes.select({ optionType: DBD.formTypes.select({
"English": "en-US", "English": "en-US",
"Russian": "ru-RU", "Russian": "ru-RU",
@ -231,15 +224,41 @@ module.exports.load = async client => {
return; return;
}, },
}], },
}], {
optionId: "xd",
optionName: "OMG",
optionDescription: "Change bot's language on the server",
optionType: DBD.formTypes.select({
"English": "en-US",
"Russian": "ru-RU",
"Ukrainian": "uk-UA",
}),
getActualSet: async ({ guild }) => {
const guildData = await client.findOrCreateGuild({
id: guild.id,
}); });
DBD.customPagesTypes.redirectToUrl("github", "https://github.com/JonnyBro/JaBa"); return guildData.language || client.defaultLanguage;
},
setNew: async ({ guild, newData }) => {
const guildData = await client.findOrCreateGuild({
id: guild.id,
});
guildData.language = newData;
await guildData.save();
return;
},
},
],
}],
});
await Dashboard.init().then(() => { await Dashboard.init().then(() => {
client.logger.log(`Dashboard launched on port ${client.config.dashboard.port}`, "ready"); client.logger.log(`Dashboard launched on port ${client.config.dashboard.port}`, "ready");
}).catch(err => { }).catch(err => {
client.logger.log(`Dashboard failed to initialize: ${err}`, "error"); client.logger.log(`Dashboard failed to initialize:\n${err}`, "error");
}); });
}; };

View file

@ -1,7 +1,8 @@
{ {
"DASHBOARD": {
"name": "English", "name": "English",
"index": { "index": {
"feeds": [ "Current User", "CPU", "System Platform", "Server Count" ], "feeds": [ "Current User", "Node version", "Users Count", "Servers Count" ],
"card": { "card": {
"category": "JaBa Bot", "category": "JaBa Bot",
"title": "Simple bot made by <a href=\"https://github.com/JonnyBro\">Jonny_Bro</a>", "title": "Simple bot made by <a href=\"https://github.com/JonnyBro\">Jonny_Bro</a>",
@ -68,6 +69,11 @@
"maintenance": "Under Maintenance" "maintenance": "Under Maintenance"
} }
}, },
"sweetalert": {
"success": {
"login": "Successfully logged in."
}
},
"preloader": { "preloader": {
"text": "Page is loading..." "text": "Page is loading..."
}, },
@ -90,3 +96,4 @@
} }
} }
} }
}

View file

@ -1,91 +1,98 @@
{ {
"DASHBOARD": {
"name": "Русский", "name": "Русский",
"index": { "index": {
"feeds": [ "Current User", "CPU", "System Platform", "Server Count" ], "feeds": [ "Текущий пользователь", "Версия Node", "Кол-во пользователей", "Кол-во серверов" ],
"card": { "card": {
"category": "JaBa Bot", "category": "JaBa Bot",
"title": "Simple bot made by <a href=\"https://github.com/JonnyBro\">Jonny_Bro</a>", "title": "Простой бот, созданный <a href=\"https://github.com/JonnyBro\">Jonny_Bro</a>",
"description": "Upper Text", "description": "Верхний текст",
"image": "", "image": "",
"footer": "Bottom Text" "footer": "Нижний текст"
}, },
"feedsTitle": "Feeds", "feedsTitle": "Новости",
"graphTitle": "Graphs" "graphTitle": "Графики"
}, },
"manage": { "manage": {
"settings": { "settings": {
"memberCount": "Members", "memberCount": "Участники",
"info": { "info": {
"info": "Info", "info": "Информация",
"server": "Server Information" "server": "Информация о сервере"
} }
} }
}, },
"privacyPolicy": { "privacyPolicy": {
"title": "Privacy Policy", "title": "Политика конф.",
"description": "Privacy Policy and Terms of Service", "description": "Политика конфиденциальности и Условия использования",
"pp": "Complete Privacy Policy" "pp": "Полная политика конфиденциальности"
}, },
"partials": { "partials": {
"sidebar": { "sidebar": {
"dash": "Dashboard", "dash": "Панель управления",
"manage": "Manage Guilds", "manage": "Сервера",
"commands": "Commands", "commands": "Команды",
"pp": "Privacy Policy", "pp": "Политика конф.",
"admin": "Admin", "admin": "Админ панель",
"account": "Account Pages", "account": "Аккаунт",
"login": "Sign In", "login": "Войти",
"logout": "Sign Out" "logout": "Выйти"
}, },
"navbar": { "navbar": {
"home": "Home", "home": "Главная",
"pages": { "pages": {
"manage": "Manage Guilds", "manage": "Настройки серверов",
"settings": "Manage Guilds", "settings": "Настройки",
"commands": "Commands", "commands": "Команды",
"pp": "Privacy Policy", "pp": "Политика конфиденциальности",
"admin": "Admin Panel", "admin": "Админ панель",
"error": "Error", "error": "Ошибка",
"credits": "Credits", "credits": "Разработчики панели",
"debug": "Debug", "debug": "Отладка",
"leaderboard": "Leaderboard", "leaderboard": "Таблица лидеров",
"profile": "Profile", "profile": "Профиль",
"maintenance": "Under Maintenance" "maintenance": "Техобслуживание"
} }
}, },
"title": { "title": {
"pages": { "pages": {
"manage": "Manage Guilds", "manage": "Настройки серверов",
"settings": "Manage Guilds", "settings": "Настройки",
"commands": "Commands", "commands": "Команды",
"pp": "Privacy Policy", "pp": "Политика конфиденциальности",
"admin": "Admin Panel", "admin": "Админ панель",
"error": "Error", "error": "Ошибка",
"credits": "Credits", "credits": "Разработчики панели",
"debug": "Debug", "debug": "Отладка",
"leaderboard": "Leaderboard", "leaderboard": "Таблица лидеров",
"profile": "Profile", "profile": "Профиль",
"maintenance": "Under Maintenance" "maintenance": "Техобслуживание"
}
},
"sweetalert": {
"success": {
"login": "Вход выполнен."
} }
}, },
"preloader": { "preloader": {
"text": "Page is loading..." "text": "Загрузка..."
}, },
"premium": { "premium": {
"title": "Want more from JaBa?", "title": "Хотите большего JaBa?",
"description": "Check out premium features below!", "description": "Проверьте Премиум функции!",
"buttonText": "Become Premium" "buttonText": "Стать Премиум"
}, },
"settings": { "settings": {
"title": "Site Configuration", "title": "Настройки сайта",
"description": "Configurable Viewing Options", "description": "Настройте параметры панели управления",
"theme": { "theme": {
"title": "Site Theme", "title": "Тема",
"description": "Make the site more appealing for your eyes!" "description": "У нас есть тёмная и светлая!"
}, },
"language": { "language": {
"title": "Site Language", "title": "Язык",
"description": "Select your preffered language!" "description": "Выберите предпочитаемый язык!"
}
} }
} }
} }

View file

@ -1,91 +1,98 @@
{ {
"DASHBOARD": {
"name": "Українська", "name": "Українська",
"index": { "index": {
"feeds": [ "Current User", "CPU", "System Platform", "Server Count" ], "feeds": [ "Поточний Користувач", "Версія Node", "Кількість користувачів", "Кількість серверів" ],
"card": { "card": {
"category": "JaBa Bot", "category": "JaBa Бот",
"title": "Simple bot made by <a href=\"https://github.com/JonnyBro\">Jonny_Bro</a>", "title": "Простий бот, створений <a href=\"https://github.com/JonnyBro\">Jonny_Bro</a>",
"description": "Upper Text", "description": "Верхній Текст",
"image": "", "image": "",
"footer": "Bottom Text" "footer": "Нижній Текст"
}, },
"feedsTitle": "Feeds", "feedsTitle": "Канали",
"graphTitle": "Graphs" "graphTitle": "Графіки"
}, },
"manage": { "manage": {
"settings": { "settings": {
"memberCount": "Members", "memberCount": "Учасники",
"info": { "info": {
"info": "Info", "info": "Інформація",
"server": "Server Information" "server": "Інформація про Сервер"
} }
} }
}, },
"privacyPolicy": { "privacyPolicy": {
"title": "Privacy Policy", "title": "Політика Конфіденційності",
"description": "Privacy Policy and Terms of Service", "description": "Політика Конфіденційності та Умови Сервісу",
"pp": "Complete Privacy Policy" "pp": "Повна Політика Конфіденційності"
}, },
"partials": { "partials": {
"sidebar": { "sidebar": {
"dash": "Dashboard", "dash": "Панель Керування",
"manage": "Manage Guilds", "manage": "Налаштування серверів",
"commands": "Commands", "commands": "Команди",
"pp": "Privacy Policy", "pp": "Політика Конфіденційності",
"admin": "Admin", "admin": "Адмін",
"account": "Account Pages", "account": "Сторінки Аккаунта",
"login": "Sign In", "login": "Увійти",
"logout": "Sign Out" "logout": "Вийти"
}, },
"navbar": { "navbar": {
"home": "Home", "home": "Головна",
"pages": { "pages": {
"manage": "Manage Guilds", "manage": "Налаштування серверів",
"settings": "Manage Guilds", "settings": "Керувати",
"commands": "Commands", "commands": "Команди",
"pp": "Privacy Policy", "pp": "Політика Конфіденційності",
"admin": "Admin Panel", "admin": "Панель Адміністратора",
"error": "Error", "error": "Помилка",
"credits": "Credits", "credits": "Автори",
"debug": "Debug", "debug": "Налагодження",
"leaderboard": "Leaderboard", "leaderboard": "Таблиця Лідерів",
"profile": "Profile", "profile": "Профіль",
"maintenance": "Under Maintenance" "maintenance": "Технічне Обслуговування"
} }
}, },
"title": { "title": {
"pages": { "pages": {
"manage": "Manage Guilds", "manage": "Керувати Гілдіями",
"settings": "Manage Guilds", "settings": "Керувати",
"commands": "Commands", "commands": "Команди",
"pp": "Privacy Policy", "pp": "Політика Конфіденційності",
"admin": "Admin Panel", "admin": "Панель Адміністратора",
"error": "Error", "error": "Помилка",
"credits": "Credits", "credits": "Автори",
"debug": "Debug", "debug": "Налагодження",
"leaderboard": "Leaderboard", "leaderboard": "Таблиця Лідерів",
"profile": "Profile", "profile": "Профіль",
"maintenance": "Under Maintenance" "maintenance": "Технічне Обслуговування"
}
},
"sweetalert": {
"success": {
"login": "Вхід виконано."
} }
}, },
"preloader": { "preloader": {
"text": "Page is loading..." "text": "Завантаження..."
}, },
"premium": { "premium": {
"title": "Want more from JaBa?", "title": "Бажаєте більше від JaBa?",
"description": "Check out premium features below!", "description": "Ознайомтесь з преміум-функціями нижче!",
"buttonText": "Become Premium" "buttonText": "Стати Преміум"
}, },
"settings": { "settings": {
"title": "Site Configuration", "title": "Налаштування Сайту",
"description": "Configurable Viewing Options", "description": "Налаштовувані параметри перегляду",
"theme": { "theme": {
"title": "Site Theme", "title": "Тема",
"description": "Make the site more appealing for your eyes!" "description": "Зробіть сайт більш привабливим для своїх очей!"
}, },
"language": { "language": {
"title": "Site Language", "title": "Мова",
"description": "Select your preffered language!" "description": "Виберіть бажану мову!"
}
} }
} }
} }