X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/5985f3c811497f87ac58b64695b6d28879f07c65..c00e81f9f50c4fe50ee32b02a689d68c9bc595b6:/projects/sgconf/users.cpp diff --git a/projects/sgconf/users.cpp b/projects/sgconf/users.cpp index 61d36736..9c6c30b5 100644 --- a/projects/sgconf/users.cpp +++ b/projects/sgconf/users.cpp @@ -1,5 +1,7 @@ #include "users.h" +#include "api_action.h" +#include "options.h" #include "config.h" #include "stg/servconf.h" @@ -7,6 +9,8 @@ #include "stg/common.h" #include +#include +#include namespace { @@ -42,7 +46,6 @@ std::cout << Indent(level, true) << "login: " << info.login << "\n" << Indent(level) << "name: " << info.name << "\n" << Indent(level) << "address: " << info.address << "\n" << Indent(level) << "phone: " << info.phone << "\n" - << Indent(level) << "free mb: " << info.stat.freeMb << "\n" << Indent(level) << "last ping time: " << TimeToString(info.pingTime) << "\n" << Indent(level) << "last activity time: " << TimeToString(info.lastActivityTime) << "\n" << Indent(level) << "traffic:\n"; @@ -57,6 +60,54 @@ for (size_t i = 0; i < DIR_NUM; ++i) std::cout << Indent(level) << "user data:\n"; for (size_t i = 0; i < USERDATA_NUM; ++i) std::cout << Indent(level + 1, true) << "user data " << i << ": " << info.userData[i] << "\n"; +if (!info.authBy.empty()) + { + std::cout << Indent(level) << "auth by:\n"; + for (size_t i = 0; i < info.authBy.size(); ++i) + std::cout << Indent(level + 1, true) << info.authBy[i] << "\n"; + } +} + +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("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")); +params.push_back(SGCONF::API_ACTION::PARAM("disabled", "", "\tdisable user (y|n)")); +params.push_back(SGCONF::API_ACTION::PARAM("passive", "", "\tmake user passive (y|n)")); +params.push_back(SGCONF::API_ACTION::PARAM("disable-detail-stat", "", "disable detail stat (y|n)")); +params.push_back(SGCONF::API_ACTION::PARAM("always-online", "", "\tmake user always online (y|n)")); +params.push_back(SGCONF::API_ACTION::PARAM("ips", "", "\t\tcoma-separated list of ips")); +params.push_back(SGCONF::API_ACTION::PARAM("tariff", "", "\tcurrent tariff")); +params.push_back(SGCONF::API_ACTION::PARAM("next-tariff", "", "tariff starting from the next month")); +params.push_back(SGCONF::API_ACTION::PARAM("group", "", "\t\tuser's group")); +params.push_back(SGCONF::API_ACTION::PARAM("note", "", "\t\tuser's note")); +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("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")); +return params; +} + +std::vector GetCheckParams() +{ +std::vector params; +params.push_back(SGCONF::API_ACTION::PARAM("password", "", "\tuser's password")); +return params; +} + +std::vector GetMessageParams() +{ +std::vector params; +params.push_back(SGCONF::API_ACTION::PARAM("logins", "", "\tlist of logins to send a message")); +params.push_back(SGCONF::API_ACTION::PARAM("text", "", "\t\tmessage text")); +return params; } void SimpleCallback(bool result, @@ -99,11 +150,9 @@ if (!result) PrintUser(info); } -} // namespace anonymous - -bool SGCONF::GetUsersFunction(const SGCONF::CONFIG & config, - const std::string & /*arg*/, - const std::map & /*options*/) +bool GetUsersFunction(const SGCONF::CONFIG & config, + const std::string & /*arg*/, + const std::map & /*options*/) { STG::SERVCONF proto(config.server.data(), config.port.data(), @@ -112,9 +161,9 @@ STG::SERVCONF proto(config.server.data(), return proto.GetUsers(GetUsersCallback, NULL) == STG::st_ok; } -bool SGCONF::GetUserFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & /*options*/) +bool GetUserFunction(const SGCONF::CONFIG & config, + const std::string & arg, + const std::map & /*options*/) { STG::SERVCONF proto(config.server.data(), config.port.data(), @@ -123,9 +172,9 @@ STG::SERVCONF proto(config.server.data(), return proto.GetUser(arg, GetUserCallback, NULL) == STG::st_ok; } -bool SGCONF::DelUserFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & /*options*/) +bool DelUserFunction(const SGCONF::CONFIG & config, + const std::string & arg, + const std::map & /*options*/) { STG::SERVCONF proto(config.server.data(), config.port.data(), @@ -134,20 +183,53 @@ STG::SERVCONF proto(config.server.data(), return proto.DelUser(arg, SimpleCallback, NULL) == STG::st_ok; } -bool SGCONF::AddUserFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & /*options*/) +bool AddUserFunction(const SGCONF::CONFIG & config, + const std::string & arg, + const std::map & /*options*/) +{ +// TODO +std::cerr << "Unimplemented.\n"; +return false; +} + +bool ChgUserFunction(const SGCONF::CONFIG & config, + const std::string & arg, + const std::map & options) { // TODO std::cerr << "Unimplemented.\n"; return false; } -bool SGCONF::ChgUserFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & options) +bool CheckUserFunction(const SGCONF::CONFIG & config, + const std::string & arg, + const std::map & options) { // TODO std::cerr << "Unimplemented.\n"; return false; } + +bool SendMessageFunction(const SGCONF::CONFIG & config, + const std::string & arg, + const std::map & options) +{ +// TODO +std::cerr << "Unimplemented.\n"; +return false; +} + +} // namespace anonymous + +void SGCONF::AppendUsersOptionBlock(COMMANDS & commands, OPTION_BLOCKS & blocks) +{ +std::vector params(GetUserParams()); +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("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"); +}