X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/6b29e16ef9b86fea7d629b23fc55eab3b58a297b..8dbd5155e7414e61595cb522eb04c197952a1b9f:/stglibs/srvconf.lib/servconf.cpp diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp index 330ba8b1..85d19d48 100644 --- a/stglibs/srvconf.lib/servconf.cpp +++ b/stglibs/srvconf.lib/servconf.cpp @@ -21,13 +21,22 @@ #include "stg/servconf.h" #include "netunit.h" -#include "parsers/auth_by.h" + #include "parsers/server_info.h" + +#include "parsers/get_admins.h" +#include "parsers/get_admin.h" +#include "parsers/chg_admin.h" +#include "parsers/add_admin.h" +#include "parsers/del_admin.h" + +#include "parsers/auth_by.h" #include "parsers/check_user.h" #include "parsers/get_users.h" #include "parsers/get_user.h" #include "parsers/chg_user.h" #include "parsers/send_message.h" + #include "parsers/base.h" #include "stg/common.h" @@ -50,7 +59,11 @@ public: static void End(void * data, const char * el); template - int Exec(const std::string & request, C callback, void * data); + int Exec(const std::string & request, C callback, void * data) + { + P cp(callback, data); + return ExecImpl(request, cp); + } private: NETTRANSACT nt; @@ -59,6 +72,7 @@ private: XML_Parser parser; static bool AnsRecv(void * data, const std::string & chunk, bool final); + int ExecImpl(const std::string & request, PARSER & cp); }; bool SERVCONF::IMPL::AnsRecv(void * data, const std::string & chunk, bool final) @@ -88,6 +102,43 @@ SERVCONF::~SERVCONF() delete pImpl; } +int SERVCONF::ServerInfo(SERVER_INFO::CALLBACK f, void * data) +{ +return pImpl->Exec("", f, data); +} + +// -- Admins -- + +int SERVCONF::GetAdmins(GET_ADMINS::CALLBACK f, void * data) +{ +return pImpl->Exec("", f, data); +} + +int SERVCONF::GetAdmin(const std::string & login, GET_ADMIN::CALLBACK f, void * data) +{ +return pImpl->Exec("", f, data); +} + +int SERVCONF::ChgAdmin(const std::string & login, const ADMIN_CONF_RES & conf, CHG_ADMIN::CALLBACK f, void * data) +{ +return pImpl->Exec("" + CHG_ADMIN::Serialize(conf) + "", f, data); +} + +int SERVCONF::AddAdmin(const std::string & login, const ADMIN_CONF & conf, ADD_ADMIN::CALLBACK f, void * data) +{ +int res = pImpl->Exec("", f, data); +if (res != st_ok) + return res; +return pImpl->Exec("" + CHG_ADMIN::Serialize(conf) + "", f, data); +} + +int SERVCONF::DelAdmin(const std::string & login, DEL_ADMIN::CALLBACK f, void * data) +{ +return pImpl->Exec("", f, data); +} + +// -- Users -- + int SERVCONF::GetUsers(GET_USERS::CALLBACK f, void * data) { return pImpl->Exec("", f, data); @@ -113,11 +164,6 @@ int SERVCONF::SendMessage(const std::string & request, SEND_MESSAGE::CALLBACK f, return pImpl->Exec(request, f, data); } -int SERVCONF::ServerInfo(SERVER_INFO::CALLBACK f, void * data) -{ -return pImpl->Exec("", f, data); -} - int SERVCONF::CheckUser(const std::string & login, const std::string & password, CHECK_USER::CALLBACK f, void * data) { return pImpl->Exec("", f, data); @@ -125,7 +171,7 @@ return pImpl->Exec("GetStrError(); +return pImpl->GetStrError(); } //----------------------------------------------------------------------------- @@ -154,10 +200,8 @@ const std::string & SERVCONF::IMPL::GetStrError() const return errorMsg; } //----------------------------------------------------------------------------- -template -int SERVCONF::IMPL::Exec(const std::string & request, C callback, void * data) +int SERVCONF::IMPL::ExecImpl(const std::string & request, PARSER & cp) { -P cp(callback, data); XML_ParserReset(parser, NULL); XML_SetElementHandler(parser, Start, End); XML_SetUserData(parser, &cp);