X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/76fb825a64343da7a8aa9b16c5dbcab709504832..3f044094a85b8542286107bd6a9da921fc990681:/stglibs/srvconf.lib/parsers/chg_user.cpp diff --git a/stglibs/srvconf.lib/parsers/chg_user.cpp b/stglibs/srvconf.lib/parsers/chg_user.cpp index b5f4eb73..a9fddf15 100644 --- a/stglibs/srvconf.lib/parsers/chg_user.cpp +++ b/stglibs/srvconf.lib/parsers/chg_user.cpp @@ -19,17 +19,39 @@ * Author : Maxim Mamontov */ -#include "parser_chg_user.h" +#include "chg_user.h" -#include +#include "stg/user_conf.h" +#include "stg/user_stat.h" + +#include #include using namespace STG; -CHG_USER::PARSER::PARSER() - : callback(NULL), - data(NULL), +namespace +{ + +template +void appendResetable(std::ostream & stream, const std::string & name, const T & value) +{ +if (!value.empty()) + stream << "<" << name << " value=\"" << value.data() << "\"/>"; +} + +template +void appendResetable(std::ostream & stream, const std::string & name, size_t suffix, const T & value) +{ +if (!value.empty()) + stream << "<" << name << suffix << " value=\"" << value.data() << "\"/>"; +} + +} // namespace anonymous + +CHG_USER::PARSER::PARSER(SIMPLE::CALLBACK f, void * d) + : callback(f), + data(d), depth(0) { } @@ -63,9 +85,63 @@ if (attr && attr[0] && attr[1]) else callback(false, "Invalid response.", data); } -//----------------------------------------------------------------------------- -void CHG_USER::PARSER::SetCallback(CALLBACK f, void * d) + +std::string CHG_USER::Serialize(const USER_CONF_RES & conf, const USER_STAT_RES & stat) { -callback = f; -data = d; +std::ostringstream stream; + +// Conf + +appendResetable(stream, "credit", conf.credit); +appendResetable(stream, "creditExpire", conf.creditExpire); +appendResetable(stream, "password", conf.password); +appendResetable(stream, "down", conf.disabled); // TODO: down -> disabled +appendResetable(stream, "passive", conf.passive); +appendResetable(stream, "disableDetailStat", conf.disabledDetailStat); // TODO: disable -> disabled +appendResetable(stream, "aonline", conf.alwaysOnline); // TODO: aonline -> alwaysOnline +appendResetable(stream, "ip", conf.ips); // TODO: ip -> ips + +if (!conf.nextTariff.empty()) + stream << ""; +else if (!conf.tariffName.empty()) + stream << ""; + +appendResetable(stream, "note", conf.note); +appendResetable(stream, "name", conf.realName); // TODO: name -> realName +appendResetable(stream, "address", conf.address); +appendResetable(stream, "email", conf.email); +appendResetable(stream, "phone", conf.phone); +appendResetable(stream, "group", conf.group); + +for (size_t i = 0; i < conf.userdata.size(); ++i) + appendResetable(stream, "userdata", i, conf.userdata[i]); + +// Stat + +if (!stat.cashAdd.empty()) + stream << ""; +else if (!stat.cashSet.empty()) + stream << ""; + +appendResetable(stream, "freeMb", stat.freeMb); + +std::ostringstream traff; +for (size_t i = 0; i < stat.sessionUp.size(); ++i) + if (!stat.sessionUp[i].empty()) + traff << " SU" << i << "=\"" << stat.sessionUp[i].data() << "\""; +for (size_t i = 0; i < stat.sessionDown.size(); ++i) + if (!stat.sessionDown[i].empty()) + traff << " SD" << i << "=\"" << stat.sessionDown[i].data() << "\""; +for (size_t i = 0; i < stat.monthUp.size(); ++i) + if (!stat.monthUp[i].empty()) + traff << " MU" << i << "=\"" << stat.monthUp[i].data() << "\""; +for (size_t i = 0; i < stat.monthDown.size(); ++i) + if (!stat.monthDown[i].empty()) + traff << " MD" << i << "=\"" << stat.monthDown[i].data() << "\""; + +std::string traffData = traff.str(); +if (!traffData.empty()) + stream << ""; + +return stream.str(); }