X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/d3b6a58593b94c9ff41c30a7517086d607f28f10..46b0747592074017ff0ea4b33d4a7194235886e5:/projects/sgconf/admins.cpp diff --git a/projects/sgconf/admins.cpp b/projects/sgconf/admins.cpp deleted file mode 100644 index b560f581..00000000 --- a/projects/sgconf/admins.cpp +++ /dev/null @@ -1,163 +0,0 @@ -#include "admins.h" - -#include "api_action.h" -#include "options.h" -#include "config.h" - -#include "stg/servconf.h" -#include "stg/servconf_types.h" -#include "stg/os_int.h" - -#include -#include -#include -#include - -namespace -{ - -std::string Indent(size_t level, bool dash = false) -{ -if (level == 0) - return ""; -return dash ? std::string(level * 4 - 2, ' ') + "- " : std::string(level * 4, ' '); -} - -std::string PrivToString(const PRIV& priv) -{ -return std::string("") + - (priv.corpChg ? "1" : "0") + - (priv.serviceChg ? "1" : "0") + - (priv.tariffChg ? "1" : "0") + - (priv.adminChg ? "1" : "0") + - (priv.userAddDel ? "1" : "0") + - (priv.userPasswd ? "1" : "0") + - (priv.userCash ? "1" : "0") + - (priv.userConf ? "1" : "0") + - (priv.userStat ? "1" : "0"); -} - -void PrintAdmin(const STG::GET_ADMIN::INFO & info, size_t level = 0) -{ -std::cout << Indent(level, true) << "login: " << info.login << "\n" - << Indent(level) << "priviledges: " << PrivToString(info.priv) << "\n"; -} - -std::vector GetAdminParams() -{ -std::vector params; -params.push_back({"priv", "", "priviledges"}); -return params; -} - -void SimpleCallback(bool result, - const std::string & reason, - void * /*data*/) -{ -if (!result) - { - std::cerr << "Operation failed. Reason: '" << reason << "'." << std::endl; - return; - } -std::cout << "Success.\n"; -} - -void GetAdminsCallback(bool result, - const std::string & reason, - const std::vector & info, - void * /*data*/) -{ -if (!result) - { - std::cerr << "Failed to get admin list. Reason: '" << reason << "'." << std::endl; - return; - } -std::cout << "Admins:\n"; -for (size_t i = 0; i < info.size(); ++i) - PrintAdmin(info[i], 1); -} - -void GetAdminCallback(bool result, - const std::string & reason, - const std::vector & info, - void * data) -{ -assert(data != NULL && "Expecting pointer to std::string with the admin's login."); -const std::string & login = *static_cast(data); -if (!result) - { - std::cerr << "Failed to get admin. Reason: '" << reason << "'." << std::endl; - return; - } -for (size_t i = 0; i < info.size(); ++i) - if (info[i].login == login) - PrintAdmin(info[i]); -} - - -bool GetAdminsFunction(const SGCONF::CONFIG & config, - const std::string & /*arg*/, - const std::map & /*options*/) -{ -STG::SERVCONF proto(config.server.data(), - config.port.data(), - config.userName.data(), - config.userPass.data()); -return proto.GetAdmins(GetAdminsCallback, NULL) == STG::st_ok; -} - -bool GetAdminFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & /*options*/) -{ -STG::SERVCONF proto(config.server.data(), - config.port.data(), - config.userName.data(), - config.userPass.data()); -// STG currently doesn't support . -// So get a list of admins and filter it. 'data' param holds a pointer to 'login'. -std::string login(arg); -return proto.GetAdmins(GetAdminCallback, &login) == STG::st_ok; -} - -bool DelAdminFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & /*options*/) -{ -STG::SERVCONF proto(config.server.data(), - config.port.data(), - config.userName.data(), - config.userPass.data()); -return proto.DelAdmin(arg, SimpleCallback, NULL) == STG::st_ok; -} - -bool AddAdminFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & /*options*/) -{ -// TODO -std::cerr << "Unimplemented.\n"; -return false; -} - -bool ChgAdminFunction(const SGCONF::CONFIG & config, - const std::string & arg, - const std::map & options) -{ -// TODO -std::cerr << "Unimplemented.\n"; -return false; -} - -} // namespace anonymous - -void SGCONF::AppendAdminsOptionBlock(COMMANDS & commands, OPTION_BLOCKS & blocks) -{ -std::vector params(GetAdminParams()); -blocks.Add("Admin management options") - .Add("get-admins", SGCONF::MakeAPIAction(commands, GetAdminsFunction), "\tget admin list") - .Add("get-admin", SGCONF::MakeAPIAction(commands, "", GetAdminFunction), "get admin") - .Add("add-admin", SGCONF::MakeAPIAction(commands, "", params, AddAdminFunction), "add admin") - .Add("del-admin", SGCONF::MakeAPIAction(commands, "", DelAdminFunction), "del admin") - .Add("chg-admin", SGCONF::MakeAPIAction(commands, "", params, ChgAdminFunction), "change admin"); -}