X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/c02633d77cb05a5deb05440d77b12ccc5bc19b85..a91e9542b384905187890f161d4da5396996fcfd:/projects/sgconf/users.cpp diff --git a/projects/sgconf/users.cpp b/projects/sgconf/users.cpp index 3bf5caab..d1dd1a73 100644 --- a/projects/sgconf/users.cpp +++ b/projects/sgconf/users.cpp @@ -2,6 +2,7 @@ #include "api_action.h" #include "options.h" +#include "makeproto.h" #include "config.h" #include "utils.h" @@ -11,11 +12,13 @@ #include "stg/user_stat.h" #include "stg/user_ips.h" #include "stg/common.h" +#include "stg/splice.h" #include #include #include #include +#include namespace { @@ -124,34 +127,34 @@ params.push_back(SGCONF::API_ACTION::PARAM("text", "", "\t\tmessage text") return params; } -void ConvBool(const std::string & value, STG::Optional & res) +void ConvBool(const std::string & value, std::optional & res) { res = !value.empty() && value[0] == 'y'; } -void Splice(std::vector > & lhs, const std::vector > & rhs) +void Splice(std::vector > & lhs, const std::vector > & rhs) { for (size_t i = 0; i < lhs.size() && i < rhs.size(); ++i) - lhs[i].splice(rhs[i]); + STG::splice(lhs[i], rhs[i]); } -STG::Optional ConvString(const std::string & value) +std::optional ConvString(const std::string & value) { -return STG::Optional(value); +return std::optional(value); } -void ConvStringList(std::string value, std::vector > & res) +void ConvStringList(std::string value, std::vector > & res) { -Splice(res, Split > >(value, ',', ConvString)); +Splice(res, Split > >(value, ',', ConvString)); } -void ConvServices(std::string value, STG::Optional > & res) +void ConvServices(std::string value, std::optional > & res) { value.erase(std::remove(value.begin(), value.end(), ' '), value.end()); res = Split >(value, ','); } -void ConvCreditExpire(const std::string & value, STG::Optional & res) +void ConvCreditExpire(const std::string & value, std::optional & res) { struct tm brokenTime; if (stg_strptime(value.c_str(), "%Y-%m-%d %H:%M:%S", &brokenTime) == NULL) @@ -159,7 +162,7 @@ if (stg_strptime(value.c_str(), "%Y-%m-%d %H:%M:%S", &brokenTime) == NULL) res = stg_timegm(&brokenTime); } -void ConvIPs(const std::string & value, STG::Optional & res) +void ConvIPs(const std::string & value, std::optional & res) { res = STG::UserIPs::parse(value); } @@ -210,7 +213,7 @@ for (size_t i = 0; i < DIR_NUM; ++i) } } -void ConvCashInfo(const std::string & value, STG::Optional & res) +void ConvCashInfo(const std::string & value, std::optional & res) { STG::CashInfo info; size_t pos = value.find_first_of(':'); @@ -287,39 +290,21 @@ bool GetUsersFunction(const SGCONF::CONFIG & config, const std::string & /*arg*/, const std::map & /*options*/) { -STG::ServConf proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.GetUsers(GetUsersCallback, NULL) == STG::st_ok; +return makeProto(config).GetUsers(GetUsersCallback, NULL) == STG::st_ok; } bool GetUserFunction(const SGCONF::CONFIG & config, const std::string & arg, const std::map & /*options*/) { -STG::ServConf proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.GetUser(arg, GetUserCallback, NULL) == STG::st_ok; +return makeProto(config).GetUser(arg, GetUserCallback, NULL) == STG::st_ok; } bool DelUserFunction(const SGCONF::CONFIG & config, const std::string & arg, const std::map & /*options*/) { -STG::ServConf proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.DelUser(arg, SimpleCallback, NULL) == STG::st_ok; +return makeProto(config).DelUser(arg, SimpleCallback, NULL) == STG::st_ok; } bool AddUserFunction(const SGCONF::CONFIG & config, @@ -351,13 +336,7 @@ 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); -STG::ServConf proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.AddUser(arg, conf, stat, SimpleCallback, NULL) == STG::st_ok; +return makeProto(config).AddUser(arg, conf, stat, SimpleCallback, NULL) == STG::st_ok; } bool ChgUserFunction(const SGCONF::CONFIG & config, @@ -390,13 +369,7 @@ 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); -STG::ServConf proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.ChgUser(arg, conf, stat, SimpleCallback, NULL) == STG::st_ok; +return makeProto(config).ChgUser(arg, conf, stat, SimpleCallback, NULL) == STG::st_ok; } bool CheckUserFunction(const SGCONF::CONFIG & config, @@ -406,13 +379,7 @@ bool CheckUserFunction(const SGCONF::CONFIG & config, std::map::const_iterator it(options.find("password")); if (it == options.end()) throw SGCONF::ACTION::ERROR("Password is not specified."); -STG::ServConf proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.CheckUser(arg, it->second, SimpleCallback, NULL) == STG::st_ok; +return makeProto(config).CheckUser(arg, it->second, SimpleCallback, NULL) == STG::st_ok; } bool SendMessageFunction(const SGCONF::CONFIG & config, @@ -430,26 +397,14 @@ it = options.find("text"); if (it == options.end()) throw SGCONF::ACTION::ERROR("Message text is not specified."); std::string text = it->second; -STG::ServConf proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.SendMessage(logins, text, SimpleCallback, NULL) == STG::st_ok; +return makeProto(config).SendMessage(logins, text, SimpleCallback, NULL) == STG::st_ok; } bool AuthByFunction(const SGCONF::CONFIG & config, const std::string & arg, const std::map & /*options*/) { -STG::ServConf proto(config.server.data(), - config.port.data(), - config.localAddress.data(), - config.localPort.data(), - config.userName.data(), - config.userPass.data()); -return proto.AuthBy(arg, AuthByCallback, NULL) == STG::st_ok; +return makeProto(config).AuthBy(arg, AuthByCallback, NULL) == STG::st_ok; } } // namespace anonymous