X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/090b0586b6561e4b3aa87d8365026aad119150f9..1d86aae69cf0561169826c013a512bc57017a99e:/projects/sgconf/users.cpp diff --git a/projects/sgconf/users.cpp b/projects/sgconf/users.cpp index 773ebbbb..e9be65a6 100644 --- a/projects/sgconf/users.cpp +++ b/projects/sgconf/users.cpp @@ -84,7 +84,8 @@ std::vector GetUserParams() { std::vector params; params.push_back(SGCONF::API_ACTION::PARAM("password", "", "\tuser's password")); -params.push_back(SGCONF::API_ACTION::PARAM("cash", "", "\t\tuser's cash")); +params.push_back(SGCONF::API_ACTION::PARAM("cash-add", "", "cash to add (with optional comment)")); +params.push_back(SGCONF::API_ACTION::PARAM("cash-set", "", "cash to set (with optional comment)")); params.push_back(SGCONF::API_ACTION::PARAM("credit", "", "\tuser's credit")); params.push_back(SGCONF::API_ACTION::PARAM("credit-expire", "", "\tcredit expiration")); params.push_back(SGCONF::API_ACTION::PARAM("free", "", "\tprepaid traffic")); @@ -101,7 +102,7 @@ params.push_back(SGCONF::API_ACTION::PARAM("email", "", "\t\tuser's email params.push_back(SGCONF::API_ACTION::PARAM("name", "", "\tuser's real name")); params.push_back(SGCONF::API_ACTION::PARAM("address", "
", "\tuser's postal address")); params.push_back(SGCONF::API_ACTION::PARAM("phone", "", "\t\tuser's phone number")); -params.push_back(SGCONF::API_ACTION::PARAM("corp", "", "\t\tcorporation name")); +params.push_back(SGCONF::API_ACTION::PARAM("corp", "", "\tcorporation name")); params.push_back(SGCONF::API_ACTION::PARAM("session-traffic", "", "coma-separated session upload and download")); params.push_back(SGCONF::API_ACTION::PARAM("month-traffic", "", "coma-separated month upload and download")); params.push_back(SGCONF::API_ACTION::PARAM("user-data", "", "coma-separated user data values")); @@ -145,6 +146,12 @@ value.erase(std::remove(value.begin(), value.end(), ' '), value.end()); Splice(res, Split > >(value, ',', ConvString)); } +void ConvServices(std::string value, RESETABLE > & res) +{ +value.erase(std::remove(value.begin(), value.end(), ' '), value.end()); +res = Split >(value, ','); +} + void ConvCreditExpire(const std::string & value, RESETABLE & res) { struct tm brokenTime; @@ -204,6 +211,24 @@ for (size_t i = 0; i < DIR_NUM; ++i) } } +void ConvCashInfo(const std::string & value, RESETABLE & res) +{ +CASH_INFO info; +size_t pos = value.find_first_of(':'); +if (pos == std::string::npos) + { + if (str2x(value, info.first) < 0) + throw SGCONF::ACTION::ERROR("Cash should be a double value. Got: '" + value + "'"); + } +else + { + if (str2x(value.substr(0, pos), info.first) < 0) + throw SGCONF::ACTION::ERROR("Cash should be a double value. Got: '" + value + "'"); + info.second = value.substr(pos + 1); + } +res = info; +} + void SimpleCallback(bool result, const std::string & reason, void * /*data*/) @@ -294,14 +319,15 @@ SGCONF::MaybeSet(options, "email", conf.email); SGCONF::MaybeSet(options, "note", conf.note); SGCONF::MaybeSet(options, "name", conf.realName); SGCONF::MaybeSet(options, "corp", conf.corp); -SGCONF::MaybeSet(options, "services", conf.services, ConvStringList); +SGCONF::MaybeSet(options, "services", conf.services, ConvServices); SGCONF::MaybeSet(options, "group", conf.group); +SGCONF::MaybeSet(options, "credit", conf.credit); SGCONF::MaybeSet(options, "next-tariff", conf.nextTariff); SGCONF::MaybeSet(options, "user-data", conf.userdata, ConvStringList); SGCONF::MaybeSet(options, "credit-expire", conf.creditExpire, ConvCreditExpire); SGCONF::MaybeSet(options, "ips", conf.ips, ConvIPs); USER_STAT_RES stat; -SGCONF::MaybeSet(options, "cash", stat.cash); +SGCONF::MaybeSet(options, "cash-set", stat.cashSet, ConvCashInfo); SGCONF::MaybeSet(options, "free", stat.freeMb); SGCONF::MaybeSet(options, "session-traffic", stat, ConvSessionTraff); SGCONF::MaybeSet(options, "month-traffic", stat, ConvMonthTraff); @@ -329,14 +355,16 @@ SGCONF::MaybeSet(options, "email", conf.email); SGCONF::MaybeSet(options, "note", conf.note); SGCONF::MaybeSet(options, "name", conf.realName); SGCONF::MaybeSet(options, "corp", conf.corp); -SGCONF::MaybeSet(options, "services", conf.services, ConvStringList); +SGCONF::MaybeSet(options, "services", conf.services, ConvServices); SGCONF::MaybeSet(options, "group", conf.group); +SGCONF::MaybeSet(options, "credit", conf.credit); SGCONF::MaybeSet(options, "next-tariff", conf.nextTariff); SGCONF::MaybeSet(options, "user-data", conf.userdata, ConvStringList); SGCONF::MaybeSet(options, "credit-expire", conf.creditExpire, ConvCreditExpire); SGCONF::MaybeSet(options, "ips", conf.ips, ConvIPs); USER_STAT_RES stat; -SGCONF::MaybeSet(options, "cash", stat.cash); +SGCONF::MaybeSet(options, "cash-add", stat.cashAdd, ConvCashInfo); +SGCONF::MaybeSet(options, "cash-set", stat.cashSet, ConvCashInfo); SGCONF::MaybeSet(options, "free", stat.freeMb); SGCONF::MaybeSet(options, "session-traffic", stat, ConvSessionTraff); SGCONF::MaybeSet(options, "month-traffic", stat, ConvMonthTraff);