X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/cad325f5f0516da6b1d1d44c509ce194e2f08f46..85b2cf6a5286a94b5e35c7fc6b17bdf941f56420:/stglibs/srvconf.lib/servconf.cpp diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp index 01f21790..92773d7f 100644 --- a/stglibs/srvconf.lib/servconf.cpp +++ b/stglibs/srvconf.lib/servconf.cpp @@ -30,6 +30,10 @@ #include "parsers/get_admin.h" #include "parsers/chg_admin.h" +#include "parsers/get_tariffs.h" +#include "parsers/get_tariff.h" +#include "parsers/chg_tariff.h" + #include "parsers/auth_by.h" #include "parsers/get_users.h" #include "parsers/get_user.h" @@ -99,7 +103,7 @@ if (XML_Parse(sc->parser, chunk.c_str(), chunk.length(), final) == XML_STATUS_ER return true; } -bool SERVCONF::IMPL::SimpleRecv(void * data, const std::string & chunk, bool final) +bool SERVCONF::IMPL::SimpleRecv(void * data, const std::string & chunk, bool /*final*/) { *static_cast(data) += chunk; return true; @@ -123,6 +127,7 @@ return pImpl->Exec("", f, data); int SERVCONF::RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data) { +return pImpl->RawXML(request, f, data); } // -- Admins -- @@ -157,6 +162,38 @@ int SERVCONF::DelAdmin(const std::string & login, SIMPLE::CALLBACK f, void * dat return pImpl->Exec("DelAdmin", "", f, data); } +// -- Tariffs -- + +int SERVCONF::GetTariffs(GET_TARIFFS::CALLBACK f, void * data) +{ +return pImpl->Exec("", f, data); +} + +int SERVCONF::GetTariff(const std::string & name, GET_TARIFF::CALLBACK f, void * data) +{ +return pImpl->Exec("", f, data); +} + +int SERVCONF::ChgTariff(const TARIFF_DATA_RES & tariffData, SIMPLE::CALLBACK f, void * data) +{ +return pImpl->Exec("SetTariff", "" + CHG_TARIFF::Serialize(tariffData) + "", f, data); +} + +int SERVCONF::AddTariff(const std::string & name, + const TARIFF_DATA_RES & tariffData, + SIMPLE::CALLBACK f, void * data) +{ +int res = pImpl->Exec("AddTariff", "", f, data); +if (res != st_ok) + return res; +return pImpl->Exec("SetTariff", "" + CHG_TARIFF::Serialize(tariffData) + "", f, data); +} + +int SERVCONF::DelTariff(const std::string & name, SIMPLE::CALLBACK f, void * data) +{ +return pImpl->Exec("DelTariff", "", f, data); +} + // -- Users -- int SERVCONF::GetUsers(GET_USERS::CALLBACK f, void * data) @@ -259,7 +296,7 @@ if ((ret = nt.Disconnect()) != st_ok) return st_ok; } -int SERVCONF::RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data) +int SERVCONF::IMPL::RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data) { std::string response; nt.SetRxCallback(&response, SimpleRecv);