2018-10-03 14:34:43 +00:00
|
|
|
//
|
|
|
|
// libtgvoip is free and unencumbered public domain software.
|
|
|
|
// For more information, see http://unlicense.org or the UNLICENSE file
|
|
|
|
// you should have received with this source code distribution.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "VoIPServerConfig.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "logging.h"
|
|
|
|
#include <sstream>
|
|
|
|
#include <locale>
|
|
|
|
|
|
|
|
using namespace tgvoip;
|
|
|
|
|
|
|
|
ServerConfig* ServerConfig::sharedInstance=NULL;
|
|
|
|
|
|
|
|
ServerConfig::ServerConfig(){
|
|
|
|
}
|
|
|
|
|
|
|
|
ServerConfig::~ServerConfig(){
|
|
|
|
}
|
|
|
|
|
|
|
|
ServerConfig *ServerConfig::GetSharedInstance(){
|
|
|
|
if(!sharedInstance)
|
|
|
|
sharedInstance=new ServerConfig();
|
|
|
|
return sharedInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ServerConfig::GetBoolean(std::string name, bool fallback){
|
|
|
|
MutexGuard sync(mutex);
|
2019-02-06 18:22:38 +00:00
|
|
|
if(ContainsKey(name) && config[name].is_bool())
|
|
|
|
return config[name].bool_value();
|
2018-10-03 14:34:43 +00:00
|
|
|
return fallback;
|
|
|
|
}
|
|
|
|
|
|
|
|
double ServerConfig::GetDouble(std::string name, double fallback){
|
|
|
|
MutexGuard sync(mutex);
|
2019-02-06 18:22:38 +00:00
|
|
|
if(ContainsKey(name) && config[name].is_number())
|
|
|
|
return config[name].number_value();
|
2018-10-03 14:34:43 +00:00
|
|
|
return fallback;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t ServerConfig::GetInt(std::string name, int32_t fallback){
|
|
|
|
MutexGuard sync(mutex);
|
2019-02-06 18:22:38 +00:00
|
|
|
if(ContainsKey(name) && config[name].is_number())
|
|
|
|
return config[name].int_value();
|
2018-10-03 14:34:43 +00:00
|
|
|
return fallback;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ServerConfig::GetString(std::string name, std::string fallback){
|
|
|
|
MutexGuard sync(mutex);
|
2019-02-06 18:22:38 +00:00
|
|
|
if(ContainsKey(name) && config[name].is_string())
|
|
|
|
return config[name].string_value();
|
2018-10-03 14:34:43 +00:00
|
|
|
return fallback;
|
|
|
|
}
|
|
|
|
|
2019-02-06 18:22:38 +00:00
|
|
|
void ServerConfig::Update(std::string jsonString){
|
2018-10-03 14:34:43 +00:00
|
|
|
MutexGuard sync(mutex);
|
|
|
|
LOGD("=== Updating voip config ===");
|
2019-02-06 18:22:38 +00:00
|
|
|
LOGD("%s", jsonString.c_str());
|
|
|
|
std::string jsonError;
|
|
|
|
config=json11::Json::parse(jsonString, jsonError);
|
|
|
|
if(!jsonError.empty())
|
|
|
|
LOGE("Error parsing server config: %s", jsonError.c_str());
|
2018-10-03 14:34:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ServerConfig::ContainsKey(std::string key){
|
2019-02-06 18:22:38 +00:00
|
|
|
return config.object_items().find(key)!=config.object_items().end();
|
2018-10-03 14:34:43 +00:00
|
|
|
}
|