86 lines
2.4 KiB
C++
86 lines
2.4 KiB
C++
#include "settings.h"
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
#include <nlohmann/json.hpp>
|
|
#include <string>
|
|
|
|
Settings::Settings(std::string path) {
|
|
this->settings_file_path = path;
|
|
|
|
if (!std::filesystem::exists(path)) {
|
|
std::ofstream output(path);
|
|
|
|
nlohmann::json settings = R"({
|
|
"ofds_modules_dir":".local/share/checks_parser/modules/ofd",
|
|
"stores_modules_dir":".local/share/checks_parser/modules/stores",
|
|
"ofds_modules_url":"https://foxarmy.org/checks-parser/modules/ofd/",
|
|
"stores_modules_url":"https://foxarmy.org/checks-parser/modules/modules/",
|
|
"print_header": true,
|
|
"print_total": true,
|
|
"output_order": {
|
|
"goods_name": {
|
|
"position":1,
|
|
"name":"Goods name"
|
|
},
|
|
"goods_price_per_unit": {
|
|
"position":2,
|
|
"name":"Goods price per unit"
|
|
},
|
|
"goods_quantity": {
|
|
"position":3,
|
|
"name":"Goods quantity"
|
|
},
|
|
"goods_net_weight": {
|
|
"position":4,
|
|
"name":"Goods net weight"
|
|
},
|
|
"goods_total": {
|
|
"position":5,
|
|
"name":"Goods total"
|
|
}
|
|
}
|
|
})"_json;
|
|
|
|
output << settings;
|
|
output.flush();
|
|
output.close();
|
|
this->settings = settings;
|
|
} else {
|
|
std::ifstream input(path);
|
|
|
|
nlohmann::json settings = nlohmann::json::parse(input);
|
|
this->settings = settings;
|
|
}
|
|
}
|
|
|
|
void Settings::write_setting(std::string setting, std::string value) {
|
|
std::ofstream output(this->settings_file_path, std::fstream::trunc);
|
|
|
|
this->settings[setting] = value;
|
|
|
|
output << this->settings;
|
|
}
|
|
std::string Settings::get_setting(std::string setting) {
|
|
return this->settings[setting];
|
|
}
|
|
|
|
void Settings::set_settings_file_path(std::string path) {
|
|
this->settings_file_path = path;
|
|
}
|
|
|
|
std::string Settings::get_settings_file_path() {
|
|
return this->settings_file_path;
|
|
}
|
|
|
|
nlohmann::json& Settings::get_all_settings() { return this->settings; }
|
|
|
|
void Settings::alter_setting(std::string setting, std::string value) {
|
|
this->settings[setting] = value;
|
|
}
|
|
|
|
void Settings::flush() {
|
|
std::ofstream output(this->settings_file_path, std::fstream::trunc);
|
|
|
|
output << this->settings;
|
|
}
|