2024-01-02 03:45:06 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* dtranslatebot Discord Translate Bot
|
|
|
|
* Copyright (C) 2023-2024 Syping
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* This software is provided as-is, no warranties are given to you, we are not
|
|
|
|
* responsible for anything with use of the software, you are self responsible.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2024-01-29 22:47:42 +01:00
|
|
|
#include <dpp/json.h>
|
2024-01-11 21:49:01 +01:00
|
|
|
#include <mutex>
|
2024-02-03 07:16:12 +01:00
|
|
|
#include <filesystem>
|
2024-01-29 22:47:42 +01:00
|
|
|
#include <fstream>
|
2024-01-02 03:45:06 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include "settings.h"
|
2024-02-04 07:10:02 +01:00
|
|
|
#include "translator_libretranslate.h"
|
|
|
|
using namespace bot::settings;
|
2024-01-25 20:48:28 +01:00
|
|
|
|
2024-02-04 08:05:55 +01:00
|
|
|
void process_guild_settings(const dpp::json &json, std::vector<guild> *guilds, std::vector<dpp::snowflake> *webhookIds)
|
|
|
|
{
|
|
|
|
for (auto json_guild = json.begin(); json_guild != json.end(); json_guild++) {
|
|
|
|
if (json_guild->is_object()) {
|
|
|
|
guild guild;
|
|
|
|
|
|
|
|
auto json_guild_id = json_guild->find("id");
|
|
|
|
if (json_guild_id != json_guild->end()) {
|
|
|
|
if (json_guild_id->is_number())
|
|
|
|
guild.id = *json_guild_id;
|
|
|
|
else if (json_guild_id->is_string())
|
|
|
|
guild.id = std::stoull(std::string(*json_guild_id));
|
|
|
|
else
|
|
|
|
throw std::invalid_argument("Guild id isvalue() not a number or a string");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
guild.id = std::stoull(json_guild.key());
|
|
|
|
|
|
|
|
for (auto json_channel = json_guild->begin(); json_channel != json_guild->end(); json_channel++) {
|
|
|
|
if (json_channel->is_object()) {
|
|
|
|
channel channel;
|
|
|
|
|
|
|
|
auto json_channel_id = json_channel->find("id");
|
|
|
|
if (json_channel_id != json_channel->end()) {
|
|
|
|
if (json_channel_id->is_number())
|
|
|
|
channel.id = *json_channel_id;
|
|
|
|
else if (json_channel_id->is_string())
|
|
|
|
channel.id = std::stoull(std::string(*json_channel_id));
|
|
|
|
else
|
|
|
|
throw std::invalid_argument("Channel id is not a number or a string");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
channel.id = std::stoull(json_channel.key());
|
|
|
|
|
|
|
|
auto json_channel_source = json_channel->find("source");
|
|
|
|
if (json_channel_source != json_channel->end())
|
|
|
|
channel.source = *json_channel_source;
|
|
|
|
|
|
|
|
auto json_channel_target = json_channel->find("target");
|
|
|
|
if (json_channel_target != json_channel->end()) {
|
|
|
|
if (json_channel_target->is_string()) {
|
|
|
|
target target;
|
|
|
|
target.target = *json_channel_target;
|
|
|
|
target.webhook = dpp::webhook(json_channel->at("webhook"));
|
|
|
|
webhookIds->push_back(target.webhook.id);
|
|
|
|
channel.targets.push_back(std::move(target));
|
|
|
|
}
|
|
|
|
else if (json_channel_target->is_object()) {
|
|
|
|
for (auto json_target = json_channel_target->begin(); json_target != json_channel_target->end(); json_target++) {
|
|
|
|
target target;
|
|
|
|
target.target = json_target.key();
|
|
|
|
target.webhook = dpp::webhook(*json_target);
|
|
|
|
webhookIds->push_back(target.webhook.id);
|
|
|
|
channel.targets.push_back(std::move(target));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!channel.source.empty() && !channel.targets.empty())
|
|
|
|
guild.channel.push_back(std::move(channel));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
guilds->push_back(std::move(guild));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void process_preflang_settings(const dpp::json &json, std::vector<std::string> *preflangs)
|
|
|
|
{
|
|
|
|
for (auto json_preflang = json.begin(); json_preflang != json.end(); json_preflang++) {
|
|
|
|
if (std::distance(json.begin(), json_preflang) >= 25) {
|
|
|
|
std::cerr << "\"preferred_lang\" is limited to 25 languages" << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
preflangs->push_back(*json_preflang);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool process_translator_settings(const dpp::json &json, translator *translator)
|
|
|
|
{
|
|
|
|
if (!json.is_object()) {
|
|
|
|
std::cerr << "Translate settings needs to be in a object" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto json_translate_hostname = json.find("hostname");
|
|
|
|
if (json_translate_hostname == json.end()) {
|
|
|
|
std::cerr << "\"hostname\" can not be found in Translate settings" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
translator->hostname = *json_translate_hostname;
|
|
|
|
|
|
|
|
auto json_translate_port = json.find("port");
|
|
|
|
if (json_translate_port == json.end()) {
|
|
|
|
std::cerr << "\"port\" can not be found in Translate settings" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
translator->port = *json_translate_port;
|
|
|
|
|
|
|
|
auto json_translate_url = json.find("url");
|
|
|
|
if (json_translate_url == json.end()) {
|
|
|
|
std::cerr << "\"url\" can not be found in Translate settings" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
translator->url = *json_translate_url;
|
|
|
|
|
|
|
|
auto json_translate_tls = json.find("tls");
|
|
|
|
if (json_translate_tls != json.end())
|
|
|
|
translator->tls = *json_translate_tls;
|
|
|
|
else
|
|
|
|
translator->tls = false;
|
|
|
|
|
|
|
|
auto json_translate_apiKey = json.find("apiKey");
|
|
|
|
if (json_translate_apiKey != json.end())
|
|
|
|
translator->apiKey = *json_translate_apiKey;
|
|
|
|
else
|
|
|
|
translator->apiKey.clear();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
void settings::add_channel(const channel &channel, dpp::snowflake guild_id)
|
2024-01-25 20:48:28 +01:00
|
|
|
{
|
|
|
|
for (auto guild = m_guilds.begin(); guild != m_guilds.end(); guild++) {
|
|
|
|
if (guild->id == guild_id) {
|
|
|
|
guild->channel.push_back(channel);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We will create the guild structure when it is not in memory
|
2024-02-04 07:10:02 +01:00
|
|
|
guild guild;
|
2024-01-25 20:48:28 +01:00
|
|
|
guild.id = guild_id;
|
2024-02-03 07:16:12 +01:00
|
|
|
guild.channel.push_back(std::move(channel));
|
|
|
|
m_guilds.push_back(std::move(guild));
|
2024-01-25 21:25:33 +01:00
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
bool settings::add_target(const target &target, dpp::snowflake guild_id, dpp::snowflake channel_id)
|
2024-02-03 08:10:28 +01:00
|
|
|
{
|
|
|
|
for (auto guild = m_guilds.begin(); guild != m_guilds.end(); guild++) {
|
|
|
|
if (guild->id == guild_id) {
|
|
|
|
for (auto channel = guild->channel.begin(); channel != guild->channel.end(); channel++) {
|
|
|
|
if (channel->id == channel_id) {
|
|
|
|
channel->targets.push_back(target);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
void settings::add_translatebot_webhook(dpp::snowflake webhook_id)
|
2024-01-25 21:25:33 +01:00
|
|
|
{
|
2024-02-03 07:16:12 +01:00
|
|
|
m_webhookIds.push_back(webhook_id);
|
2024-01-25 20:48:28 +01:00
|
|
|
}
|
2024-01-02 03:45:06 +01:00
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
uint16_t settings::get_avatar_size()
|
2024-01-17 12:38:16 +01:00
|
|
|
{
|
|
|
|
return m_avatarSize;
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
const channel* settings::get_channel(const guild *guild, dpp::snowflake channel_id)
|
2024-01-02 03:45:06 +01:00
|
|
|
{
|
|
|
|
for (auto channel = guild->channel.begin(); channel != guild->channel.end(); channel++) {
|
|
|
|
if (channel->id == channel_id)
|
|
|
|
return &(*channel);
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
const channel* settings::get_channel(dpp::snowflake guild_id, dpp::snowflake channel_id)
|
2024-01-12 11:18:15 +01:00
|
|
|
{
|
|
|
|
for (auto guild = m_guilds.begin(); guild != m_guilds.end(); guild++) {
|
|
|
|
if (guild->id == guild_id) {
|
|
|
|
for (auto channel = guild->channel.begin(); channel != guild->channel.end(); channel++) {
|
|
|
|
if (channel->id == channel_id)
|
|
|
|
return &(*channel);
|
|
|
|
}
|
2024-01-29 22:47:42 +01:00
|
|
|
return nullptr;
|
2024-01-12 11:18:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
const guild* settings::get_guild(dpp::snowflake guild_id)
|
2024-01-02 03:45:06 +01:00
|
|
|
{
|
|
|
|
for (auto guild = m_guilds.begin(); guild != m_guilds.end(); guild++) {
|
|
|
|
if (guild->id == guild_id)
|
|
|
|
return &(*guild);
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
const std::vector<std::string> settings::get_preferred_languages()
|
2024-01-25 20:48:28 +01:00
|
|
|
{
|
|
|
|
return m_preflangs;
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
const std::filesystem::path settings::get_storage_path()
|
2024-02-03 07:16:12 +01:00
|
|
|
{
|
|
|
|
return m_storagepath;
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
const translator* settings::get_translate()
|
2024-01-02 03:45:06 +01:00
|
|
|
{
|
2024-02-04 07:10:02 +01:00
|
|
|
return &m_translator;
|
2024-01-02 03:45:06 +01:00
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
std::unique_ptr<bot::translator::translator> settings::get_translator()
|
2024-01-25 20:48:28 +01:00
|
|
|
{
|
|
|
|
const std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
2024-02-04 07:10:02 +01:00
|
|
|
std::unique_ptr<bot::translator::libretranslate> libretranslate(
|
|
|
|
new bot::translator::libretranslate(m_translator.hostname, m_translator.port, m_translator.url, m_translator.tls, m_translator.apiKey));
|
2024-01-25 20:48:28 +01:00
|
|
|
return libretranslate;
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
const std::string settings::get_token()
|
2024-01-02 03:45:06 +01:00
|
|
|
{
|
|
|
|
return m_token;
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
bool settings::is_translatebot(dpp::snowflake webhook_id)
|
2024-01-12 12:53:16 +01:00
|
|
|
{
|
|
|
|
for (auto id = m_webhookIds.begin(); id != m_webhookIds.end(); id++) {
|
|
|
|
if (*id == webhook_id)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
void settings::lock()
|
2024-01-02 03:45:06 +01:00
|
|
|
{
|
|
|
|
m_mutex.lock();
|
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
bool settings::parse(const std::string &data)
|
2024-01-02 03:45:06 +01:00
|
|
|
{
|
2024-01-12 11:18:15 +01:00
|
|
|
try {
|
2024-02-04 07:10:02 +01:00
|
|
|
const dpp::json json = dpp::json::parse(data);
|
2024-01-12 11:18:15 +01:00
|
|
|
if (!json.is_object()) {
|
|
|
|
std::cerr << "JSON configuration file is corrupt" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2024-01-02 03:45:06 +01:00
|
|
|
|
2024-01-12 11:18:15 +01:00
|
|
|
auto json_token = json.find("token");
|
|
|
|
if (json_token == json.end()) {
|
|
|
|
std::cerr << "Bot token can not be found" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
2024-01-02 03:45:06 +01:00
|
|
|
|
2024-01-12 11:18:15 +01:00
|
|
|
const std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
2024-02-04 08:05:55 +01:00
|
|
|
m_token = *json_token;
|
2024-01-02 03:45:06 +01:00
|
|
|
|
2024-02-03 07:16:12 +01:00
|
|
|
auto json_storage = json.find("storage");
|
|
|
|
if (json_storage != json.end())
|
2024-02-04 08:05:55 +01:00
|
|
|
m_storagepath = std::string(*json_storage);
|
2024-02-03 07:16:12 +01:00
|
|
|
else if (char *storagepath = getenv("DTRANSLATEBOT_STORAGE"))
|
|
|
|
m_storagepath = storagepath;
|
|
|
|
|
|
|
|
if (m_storagepath.empty())
|
|
|
|
m_storagepath = std::filesystem::current_path();
|
|
|
|
|
|
|
|
// In future we should allow more services here, for now it's only LibreTranslate
|
2024-02-04 08:05:55 +01:00
|
|
|
auto json_translator = json.find("translator");
|
|
|
|
if (json_translator == json.end()) {
|
|
|
|
std::cerr << "Translator settings can not be found" << std::endl;
|
2024-01-11 21:49:01 +01:00
|
|
|
return false;
|
|
|
|
}
|
2024-02-04 08:05:55 +01:00
|
|
|
if (!process_translator_settings(*json_translator, &m_translator))
|
2024-01-12 00:09:18 +01:00
|
|
|
return false;
|
2024-01-12 12:53:16 +01:00
|
|
|
|
2024-01-17 12:38:16 +01:00
|
|
|
auto json_avatarSize = json.find("avatar_size");
|
|
|
|
if (json_avatarSize != json.end()) {
|
2024-02-04 08:05:55 +01:00
|
|
|
m_avatarSize = *json_avatarSize;
|
2024-01-17 12:38:16 +01:00
|
|
|
if (m_avatarSize < 16)
|
|
|
|
m_avatarSize = 16;
|
|
|
|
else if (m_avatarSize > 4096)
|
|
|
|
m_avatarSize = 4096;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m_avatarSize = 256;
|
|
|
|
|
2024-01-12 12:53:16 +01:00
|
|
|
m_guilds.clear();
|
2024-01-25 20:48:28 +01:00
|
|
|
m_preflangs.clear();
|
2024-01-12 12:53:16 +01:00
|
|
|
m_webhookIds.clear();
|
2024-01-11 21:49:01 +01:00
|
|
|
|
|
|
|
auto json_guilds = json.find("guilds");
|
2024-02-04 08:05:55 +01:00
|
|
|
if (json_guilds != json.end() && json_guilds->is_object())
|
|
|
|
process_guild_settings(*json_guilds, &m_guilds, &m_webhookIds);
|
2024-01-12 12:53:16 +01:00
|
|
|
|
2024-01-25 20:48:28 +01:00
|
|
|
auto json_preflangs = json.find("preferred_lang");
|
2024-02-04 08:05:55 +01:00
|
|
|
if (json_preflangs != json.end() && json_preflangs->is_array())
|
|
|
|
process_preflang_settings(*json_preflangs, &m_preflangs);
|
2024-01-25 20:48:28 +01:00
|
|
|
|
2024-01-11 21:49:01 +01:00
|
|
|
return true;
|
2024-01-02 03:45:06 +01:00
|
|
|
}
|
2024-01-12 11:18:15 +01:00
|
|
|
catch (const dpp::json::exception &exception) {
|
|
|
|
std::cerr << "Exception thrown while parsing configuration: " << exception.what() << std::endl;
|
|
|
|
}
|
2024-01-11 21:49:01 +01:00
|
|
|
catch (const std::exception &exception) {
|
|
|
|
std::cerr << "Exception thrown while parsing configuration: " << exception.what() << std::endl;
|
|
|
|
}
|
|
|
|
return false;
|
2024-01-02 03:45:06 +01:00
|
|
|
}
|
|
|
|
|
2024-02-04 07:10:02 +01:00
|
|
|
bool settings::parse_file(const std::string &filename)
|
|
|
|
{
|
|
|
|
std::ifstream ifs(filename, std::ios::in | std::ios::binary);
|
|
|
|
if (!ifs.is_open()) {
|
|
|
|
std::cerr << "Failed to open JSON configuration file located at " << filename << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string sdata(std::istreambuf_iterator<char>{ifs}, {});
|
|
|
|
ifs.close();
|
|
|
|
|
|
|
|
return parse(std::move(sdata));
|
|
|
|
}
|
|
|
|
|
|
|
|
void settings::unlock()
|
2024-01-02 03:45:06 +01:00
|
|
|
{
|
|
|
|
m_mutex.unlock();
|
|
|
|
}
|