X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e8755e448558202feb64092ef8b1d91569ecc7db..0907aa4037b12b6b88ee24495d4577a064d4f8db:/projects/sgconf/users.cpp diff --git a/projects/sgconf/users.cpp b/projects/sgconf/users.cpp index fe74e677..3bf5caab 100644 --- a/projects/sgconf/users.cpp +++ b/projects/sgconf/users.cpp @@ -27,7 +27,7 @@ if (level == 0) return dash ? std::string(level * 4 - 2, ' ') + "- " : std::string(level * 4, ' '); } -void PrintUser(const STG::GET_USER::INFO & info, size_t level = 0) +void PrintUser(const STG::GetUser::Info & info, size_t level = 0) { std::cout << Indent(level, true) << "login: " << info.login << "\n" << Indent(level) << "password: " << info.password << "\n" @@ -124,34 +124,34 @@ params.push_back(SGCONF::API_ACTION::PARAM("text", "", "\t\tmessage text") return params; } -void ConvBool(const std::string & value, RESETABLE & res) +void ConvBool(const std::string & value, STG::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]); } -RESETABLE ConvString(const std::string & value) +STG::Optional ConvString(const std::string & value) { -return value; +return STG::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, RESETABLE > & res) +void ConvServices(std::string value, STG::Optional > & res) { value.erase(std::remove(value.begin(), value.end(), ' '), value.end()); res = Split >(value, ','); } -void ConvCreditExpire(const std::string & value, RESETABLE & res) +void ConvCreditExpire(const std::string & value, STG::Optional & res) { struct tm brokenTime; if (stg_strptime(value.c_str(), "%Y-%m-%d %H:%M:%S", &brokenTime) == NULL) @@ -159,9 +159,9 @@ if (stg_strptime(value.c_str(), "%Y-%m-%d %H:%M:%S", &brokenTime) == NULL) res = stg_timegm(&brokenTime); } -void ConvIPs(const std::string & value, RESETABLE & res) +void ConvIPs(const std::string & value, STG::Optional & res) { -res = StrToIPS(value); +res = STG::UserIPs::parse(value); } struct TRAFF @@ -184,12 +184,12 @@ if (str2x(value.substr(slashPos + 1, value.length() - slashPos), res.down) < 0) return res; } -void ConvSessionTraff(std::string value, USER_STAT_RES & res) +void ConvSessionTraff(std::string value, STG::UserStatOpt & res) { value.erase(std::remove(value.begin(), value.end(), ' '), value.end()); std::vector traff(Split >(value, ',', ConvTraff)); if (traff.size() != DIR_NUM) - throw SGCONF::ACTION::ERROR("There should be prcisely " + x2str(DIR_NUM) + " records of session traffic."); + throw SGCONF::ACTION::ERROR("There should be prcisely " + std::to_string(DIR_NUM) + " records of session traffic."); for (size_t i = 0; i < DIR_NUM; ++i) { res.sessionUp[i] = traff[i].up; @@ -197,12 +197,12 @@ for (size_t i = 0; i < DIR_NUM; ++i) } } -void ConvMonthTraff(std::string value, USER_STAT_RES & res) +void ConvMonthTraff(std::string value, STG::UserStatOpt & res) { value.erase(std::remove(value.begin(), value.end(), ' '), value.end()); std::vector traff(Split >(value, ',', ConvTraff)); if (traff.size() != DIR_NUM) - throw SGCONF::ACTION::ERROR("There should be prcisely " + x2str(DIR_NUM) + " records of month traffic."); + throw SGCONF::ACTION::ERROR("There should be prcisely " + std::to_string(DIR_NUM) + " records of month traffic."); for (size_t i = 0; i < DIR_NUM; ++i) { res.monthUp[i] = traff[i].up; @@ -210,9 +210,9 @@ for (size_t i = 0; i < DIR_NUM; ++i) } } -void ConvCashInfo(const std::string & value, RESETABLE & res) +void ConvCashInfo(const std::string & value, STG::Optional & res) { -CASH_INFO info; +STG::CashInfo info; size_t pos = value.find_first_of(':'); if (pos == std::string::npos) { @@ -242,7 +242,7 @@ std::cout << "Success.\n"; void GetUsersCallback(bool result, const std::string & reason, - const std::vector & info, + const std::vector & info, void * /*data*/) { if (!result) @@ -257,7 +257,7 @@ for (size_t i = 0; i < info.size(); ++i) void GetUserCallback(bool result, const std::string & reason, - const STG::GET_USER::INFO & info, + const STG::GetUser::Info & info, void * /*data*/) { if (!result) @@ -268,12 +268,29 @@ if (!result) PrintUser(info); } +void AuthByCallback(bool result, + const std::string & reason, + const std::vector & info, + void * /*data*/) +{ +if (!result) + { + std::cerr << "Failed to get authorizer list. Reason: '" << reason << "'." << std::endl; + return; + } +std::cout << "Authorized by:\n"; +for (size_t i = 0; i < info.size(); ++i) + std::cout << Indent(1, true) << info[i] << "\n"; +} + bool GetUsersFunction(const SGCONF::CONFIG & config, const std::string & /*arg*/, const std::map & /*options*/) { -STG::SERVCONF proto(config.server.data(), +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; @@ -283,8 +300,10 @@ bool GetUserFunction(const SGCONF::CONFIG & config, const std::string & arg, const std::map & /*options*/) { -STG::SERVCONF proto(config.server.data(), +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; @@ -294,8 +313,10 @@ bool DelUserFunction(const SGCONF::CONFIG & config, const std::string & arg, const std::map & /*options*/) { -STG::SERVCONF proto(config.server.data(), +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; @@ -305,7 +326,7 @@ bool AddUserFunction(const SGCONF::CONFIG & config, const std::string & arg, const std::map & options) { -USER_CONF_RES conf; +STG::UserConfOpt conf; SGCONF::MaybeSet(options, "password", conf.password); SGCONF::MaybeSet(options, "passive", conf.passive, ConvBool); SGCONF::MaybeSet(options, "disabled", conf.disabled, ConvBool); @@ -325,13 +346,15 @@ 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; +STG::UserStatOpt stat; 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(), +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; @@ -341,7 +364,7 @@ bool ChgUserFunction(const SGCONF::CONFIG & config, const std::string & arg, const std::map & options) { -USER_CONF_RES conf; +STG::UserConfOpt conf; SGCONF::MaybeSet(options, "password", conf.password); SGCONF::MaybeSet(options, "passive", conf.passive, ConvBool); SGCONF::MaybeSet(options, "disabled", conf.disabled, ConvBool); @@ -361,14 +384,16 @@ 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; +STG::UserStatOpt stat; 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); -STG::SERVCONF proto(config.server.data(), +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; @@ -381,8 +406,10 @@ 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(), +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; @@ -403,13 +430,28 @@ 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(), +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; } +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; +} + } // namespace anonymous void SGCONF::AppendUsersOptionBlock(COMMANDS & commands, OPTION_BLOCKS & blocks) @@ -419,8 +461,9 @@ blocks.Add("User management options") .Add("get-users", SGCONF::MakeAPIAction(commands, GetUsersFunction), "\tget user list") .Add("get-user", SGCONF::MakeAPIAction(commands, "", GetUserFunction), "get user") .Add("add-user", SGCONF::MakeAPIAction(commands, "", params, AddUserFunction), "add user") - .Add("del-user", SGCONF::MakeAPIAction(commands, "", DelUserFunction), "del user") + .Add("del-user", SGCONF::MakeAPIAction(commands, "", DelUserFunction), "delete user") .Add("chg-user", SGCONF::MakeAPIAction(commands, "", params, ChgUserFunction), "change user") .Add("check-user", SGCONF::MakeAPIAction(commands, "", GetCheckParams(), CheckUserFunction), "check user existance and credentials") - .Add("send-message", SGCONF::MakeAPIAction(commands, GetMessageParams(), SendMessageFunction), "send message"); + .Add("send-message", SGCONF::MakeAPIAction(commands, GetMessageParams(), SendMessageFunction), "send message") + .Add("auth-by", SGCONF::MakeAPIAction(commands, "", AuthByFunction), "a list of authorizers user authorized by"); }