X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e5499c61083684b28bcbc6950aae66cbf0938703..e9ae1f101b5418c0ba2e6c9d86b23c12f0140982:/libs/srvconf/parsers/chg_user.cpp diff --git a/libs/srvconf/parsers/chg_user.cpp b/libs/srvconf/parsers/chg_user.cpp index e30392f3..c0a08382 100644 --- a/libs/srvconf/parsers/chg_user.cpp +++ b/libs/srvconf/parsers/chg_user.cpp @@ -21,20 +21,19 @@ #include "chg_user.h" -#include "resetable_utils.h" +#include "optional_utils.h" #include "stg/user_conf.h" #include "stg/user_stat.h" #include "stg/common.h" #include -#include #include using namespace STG; -CHG_USER::PARSER::PARSER(SIMPLE::CALLBACK f, void * d, const std::string & e) +ChgUser::Parser::Parser(Simple::Callback f, void* d, const std::string& e) : callback(f), data(d), encoding(e), @@ -42,102 +41,101 @@ CHG_USER::PARSER::PARSER(SIMPLE::CALLBACK f, void * d, const std::string & e) { } //----------------------------------------------------------------------------- -int CHG_USER::PARSER::ParseStart(const char *el, const char **attr) +int ChgUser::Parser::ParseStart(const char* el, const char** attr) { -depth++; -if (depth == 1) + depth++; + if (depth == 1) { - if (strcasecmp(el, "SetUser") == 0) - ParseAnswer(el, attr); - else if (strcasecmp(el, "DelUser") == 0) - ParseAnswer(el, attr); - else if (strcasecmp(el, "AddUser") == 0) - ParseAnswer(el, attr); + if (strcasecmp(el, "SetUser") == 0) + ParseAnswer(el, attr); + else if (strcasecmp(el, "DelUser") == 0) + ParseAnswer(el, attr); + else if (strcasecmp(el, "AddUser") == 0) + ParseAnswer(el, attr); } -return 0; + return 0; } //----------------------------------------------------------------------------- -void CHG_USER::PARSER::ParseEnd(const char *) +void ChgUser::Parser::ParseEnd(const char* /*unused*/) { -depth--; + depth--; } //----------------------------------------------------------------------------- -void CHG_USER::PARSER::ParseAnswer(const char * /*el*/, const char ** attr) +void ChgUser::Parser::ParseAnswer(const char* /*el*/, const char** attr) { -if (!callback) - return; -if (attr && attr[0] && attr[1]) - callback(strcasecmp(attr[1], "ok") == 0, attr[2] && attr[3] ? attr[3] : "", data); -else - callback(false, "Invalid response.", data); + if (!callback) + return; + if (attr && attr[0] && attr[1]) + callback(strcasecmp(attr[1], "ok") == 0, attr[2] && attr[3] ? attr[3] : "", data); + else + callback(false, "Invalid response.", data); } -std::string CHG_USER::Serialize(const USER_CONF_RES & conf, const USER_STAT_RES & stat, const std::string & encoding) +std::string ChgUser::serialize(const UserConfOpt& conf, const UserStatOpt& stat, const std::string& encoding) { -std::ostringstream stream; - -// Conf - -appendResetableTag(stream, "credit", conf.credit); -appendResetableTag(stream, "creditExpire", conf.creditExpire); -appendResetableTag(stream, "password", conf.password); -appendResetableTag(stream, "down", conf.disabled); // TODO: down -> disabled -appendResetableTag(stream, "passive", conf.passive); -appendResetableTag(stream, "disableDetailStat", conf.disabledDetailStat); // TODO: disable -> disabled -appendResetableTag(stream, "aonline", conf.alwaysOnline); // TODO: aonline -> alwaysOnline -appendResetableTag(stream, "ip", conf.ips); // TODO: ip -> ips - -if (!conf.nextTariff.empty()) - stream << ""; -else if (!conf.tariffName.empty()) - stream << ""; - -appendResetableTag(stream, "note", MaybeEncode(MaybeIconv(conf.note, encoding, "koi8-ru"))); -appendResetableTag(stream, "name", MaybeEncode(MaybeIconv(conf.realName, encoding, "koi8-ru"))); // TODO: name -> realName -appendResetableTag(stream, "address", MaybeEncode(MaybeIconv(conf.address, encoding, "koi8-ru"))); -appendResetableTag(stream, "email", MaybeEncode(MaybeIconv(conf.email, encoding, "koi8-ru"))); -appendResetableTag(stream, "phone", MaybeEncode(MaybeIconv(conf.phone, encoding, "cp1251"))); -appendResetableTag(stream, "group", MaybeEncode(MaybeIconv(conf.group, encoding, "koi8-ru"))); -appendResetableTag(stream, "corp", conf.corp); - -for (size_t i = 0; i < conf.userdata.size(); ++i) - appendResetableTag(stream, "userdata", i, MaybeEncode(MaybeIconv(conf.userdata[i], encoding, "koi8-ru"))); - -if (!conf.services.empty()) + std::ostringstream stream; + + // Conf + + appendResetableTag(stream, "credit", conf.credit); + appendResetableTag(stream, "creditExpire", conf.creditExpire); + appendResetableTag(stream, "password", conf.password); + appendResetableTag(stream, "down", conf.disabled); // TODO: down -> disabled + appendResetableTag(stream, "passive", conf.passive); + appendResetableTag(stream, "disableDetailStat", conf.disabledDetailStat); // TODO: disable -> disabled + appendResetableTag(stream, "aonline", conf.alwaysOnline); // TODO: aonline -> alwaysOnline + appendResetableTag(stream, "ip", conf.ips); // TODO: ip -> ips + + if (!conf.nextTariff.empty()) + stream << ""; + else if (!conf.tariffName.empty()) + stream << ""; + + appendResetableTag(stream, "note", maybeEncode(maybeIconv(conf.note, encoding, "koi8-ru"))); + appendResetableTag(stream, "name", maybeEncode(maybeIconv(conf.realName, encoding, "koi8-ru"))); // TODO: name -> realName + appendResetableTag(stream, "address", maybeEncode(maybeIconv(conf.address, encoding, "koi8-ru"))); + appendResetableTag(stream, "email", maybeEncode(maybeIconv(conf.email, encoding, "koi8-ru"))); + appendResetableTag(stream, "phone", maybeEncode(maybeIconv(conf.phone, encoding, "cp1251"))); + appendResetableTag(stream, "group", maybeEncode(maybeIconv(conf.group, encoding, "koi8-ru"))); + appendResetableTag(stream, "corp", conf.corp); + + for (size_t i = 0; i < conf.userdata.size(); ++i) + appendResetableTag(stream, "userdata", i, maybeEncode(maybeIconv(conf.userdata[i], encoding, "koi8-ru"))); + + if (!conf.services.empty()) { - stream << ""; - for (size_t i = 0; i < conf.services.data().size(); ++i) - stream << ""; - stream << ""; + stream << ""; + for (size_t i = 0; i < conf.services.data().size(); ++i) + stream << ""; + stream << ""; } -// Stat - -if (!stat.cashAdd.empty()) - stream << ""; -else if (!stat.cashSet.empty()) - stream << ""; - -appendResetableTag(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 << ""; - -std::cerr << stream.str() << "\n"; -return stream.str(); + // Stat + + if (!stat.cashAdd.empty()) + stream << ""; + else if (!stat.cashSet.empty()) + stream << ""; + + appendResetableTag(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(); }