X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/bdd9903a414b2080f9ab7be9695f0752494fda89..0907aa4037b12b6b88ee24495d4577a064d4f8db:/projects/stargazer/plugins/configuration/sgconfig/parser_users.cpp diff --git a/projects/stargazer/plugins/configuration/sgconfig/parser_users.cpp b/projects/stargazer/plugins/configuration/sgconfig/parser_users.cpp index 2eb92f2b..bd7dd4ef 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/parser_users.cpp +++ b/projects/stargazer/plugins/configuration/sgconfig/parser_users.cpp @@ -22,11 +22,12 @@ #include "parser_users.h" #include "stg/users.h" -#include "stg/tariffs.h" -#include "stg/user_property.h" +#include "stg/user.h" #include "stg/user_conf.h" #include "stg/user_stat.h" -#include "stg/common.h" +#include "stg/tariffs.h" +#include "stg/tariff.h" +#include "stg/user_property.h" #include #include @@ -38,118 +39,128 @@ using STG::PARSER::DEL_USER; using STG::PARSER::CHG_USER; using STG::PARSER::CHECK_USER; +const char * GET_USERS::tag = "GetUsers"; +const char * GET_USER::tag = "GetUser"; +const char * ADD_USER::tag = "AddUser"; +const char * CHG_USER::tag = "SetUser"; +const char * DEL_USER::tag = "DelUser"; +const char * CHECK_USER::tag = "CheckUser"; + +using UserPtr = STG::User*; +using ConstUserPtr = const STG::User*; + namespace { -std::string UserToXML(const USER & user, bool loginInStart, bool showPass, time_t lastTime = 0) +std::string UserToXML(const STG::User & user, bool loginInStart, bool showPass, time_t lastTime = 0) { std::string answer; if (loginInStart) - answer += ""; + answer += ""; else - answer += ""; + answer += ""; answer += ""; - if (user.GetProperty().password.ModificationTime() > lastTime) + if (user.GetProperties().password.ModificationTime() > lastTime) { if (showPass) - answer += ""; + answer += ""; else answer += ""; } - if (user.GetProperty().cash.ModificationTime() > lastTime) - answer += ""; - if (user.GetProperty().freeMb.ModificationTime() > lastTime) - answer += ""; - if (user.GetProperty().credit.ModificationTime() > lastTime) - answer += ""; + if (user.GetProperties().cash.ModificationTime() > lastTime) + answer += ""; + if (user.GetProperties().freeMb.ModificationTime() > lastTime) + answer += ""; + if (user.GetProperties().credit.ModificationTime() > lastTime) + answer += ""; - if (user.GetProperty().nextTariff.Get() != "") + if (user.GetProperties().nextTariff.Get() != "") { - if (user.GetProperty().tariffName.ModificationTime() > lastTime || - user.GetProperty().nextTariff.ModificationTime() > lastTime) - answer += ""; + if (user.GetProperties().tariffName.ModificationTime() > lastTime || + user.GetProperties().nextTariff.ModificationTime() > lastTime) + answer += ""; } else { - if (user.GetProperty().tariffName.ModificationTime() > lastTime) - answer += ""; + if (user.GetProperties().tariffName.ModificationTime() > lastTime) + answer += ""; } - if (user.GetProperty().note.ModificationTime() > lastTime) - answer += ""; - if (user.GetProperty().phone.ModificationTime() > lastTime) - answer += ""; - if (user.GetProperty().address.ModificationTime() > lastTime) - answer += "
"; - if (user.GetProperty().email.ModificationTime() > lastTime) - answer += ""; - - std::vector *> userdata; - userdata.push_back(user.GetProperty().userdata0.GetPointer()); - userdata.push_back(user.GetProperty().userdata1.GetPointer()); - userdata.push_back(user.GetProperty().userdata2.GetPointer()); - userdata.push_back(user.GetProperty().userdata3.GetPointer()); - userdata.push_back(user.GetProperty().userdata4.GetPointer()); - userdata.push_back(user.GetProperty().userdata5.GetPointer()); - userdata.push_back(user.GetProperty().userdata6.GetPointer()); - userdata.push_back(user.GetProperty().userdata7.GetPointer()); - userdata.push_back(user.GetProperty().userdata8.GetPointer()); - userdata.push_back(user.GetProperty().userdata9.GetPointer()); + if (user.GetProperties().note.ModificationTime() > lastTime) + answer += ""; + if (user.GetProperties().phone.ModificationTime() > lastTime) + answer += ""; + if (user.GetProperties().address.ModificationTime() > lastTime) + answer += "
"; + if (user.GetProperties().email.ModificationTime() > lastTime) + answer += ""; + + std::vector *> userdata; + userdata.push_back(user.GetProperties().userdata0.GetPointer()); + userdata.push_back(user.GetProperties().userdata1.GetPointer()); + userdata.push_back(user.GetProperties().userdata2.GetPointer()); + userdata.push_back(user.GetProperties().userdata3.GetPointer()); + userdata.push_back(user.GetProperties().userdata4.GetPointer()); + userdata.push_back(user.GetProperties().userdata5.GetPointer()); + userdata.push_back(user.GetProperties().userdata6.GetPointer()); + userdata.push_back(user.GetProperties().userdata7.GetPointer()); + userdata.push_back(user.GetProperties().userdata8.GetPointer()); + userdata.push_back(user.GetProperties().userdata9.GetPointer()); for (size_t i = 0; i < userdata.size(); i++) if (userdata[i]->ModificationTime() > lastTime) - answer += "Get()) + "\" />"; + answer += "Get()) + "\" />"; - if (user.GetProperty().realName.ModificationTime() > lastTime) - answer += ""; - if (user.GetProperty().group.ModificationTime() > lastTime) - answer += ""; + if (user.GetProperties().realName.ModificationTime() > lastTime) + answer += ""; + if (user.GetProperties().group.ModificationTime() > lastTime) + answer += ""; if (user.GetConnectedModificationTime() > lastTime) answer += std::string(""; - if (user.GetProperty().alwaysOnline.ModificationTime() > lastTime) - answer += std::string(""; + if (user.GetProperties().alwaysOnline.ModificationTime() > lastTime) + answer += std::string(""; if (user.GetCurrIPModificationTime() > lastTime) answer += ""; if (user.GetPingTime() > lastTime) - answer += ""; - if (user.GetProperty().ips.ModificationTime() > lastTime) - answer += ""; + answer += ""; + if (user.GetProperties().ips.ModificationTime() > lastTime) + answer += ""; answer += " lastTime) + const auto & upload(user.GetProperties().up.Get()); + const auto & download(user.GetProperties().down.Get()); + if (user.GetProperties().up.ModificationTime() > lastTime) for (size_t j = 0; j < DIR_NUM; j++) - answer += " MU" + x2str(j) + "=\"" + x2str(upload[j]) + "\""; - if (user.GetProperty().down.ModificationTime() > lastTime) + answer += " MU" + std::to_string(j) + "=\"" + std::to_string(upload[j]) + "\""; + if (user.GetProperties().down.ModificationTime() > lastTime) for (size_t j = 0; j < DIR_NUM; j++) - answer += " MD" + x2str(j) + "=\"" + x2str(download[j]) + "\""; + answer += " MD" + std::to_string(j) + "=\"" + std::to_string(download[j]) + "\""; if (user.GetSessionUploadModificationTime() > lastTime) for (size_t j = 0; j < DIR_NUM; j++) - answer += " SU" + x2str(j) + "=\"" + x2str(user.GetSessionUpload()[j]) + "\""; + answer += " SU" + std::to_string(j) + "=\"" + std::to_string(user.GetSessionUpload()[j]) + "\""; if (user.GetSessionDownloadModificationTime() > lastTime) for (size_t j = 0; j < DIR_NUM; j++) - answer += " SD" + x2str(j) + "=\"" + x2str(user.GetSessionDownload()[j]) + "\""; + answer += " SD" + std::to_string(j) + "=\"" + std::to_string(user.GetSessionDownload()[j]) + "\""; answer += "/>"; - if (user.GetProperty().disabled.ModificationTime() > lastTime) - answer += std::string(""; - if (user.GetProperty().disabledDetailStat.ModificationTime() > lastTime) - answer += std::string(""; - if (user.GetProperty().passive.ModificationTime() > lastTime) - answer += std::string(""; - if (user.GetProperty().lastCashAdd.ModificationTime() > lastTime) - answer += ""; - if (user.GetProperty().lastCashAddTime.ModificationTime() > lastTime) - answer += ""; - if (user.GetProperty().lastActivityTime.ModificationTime() > lastTime) - answer += ""; - if (user.GetProperty().creditExpire.ModificationTime() > lastTime) - answer += ""; + if (user.GetProperties().disabled.ModificationTime() > lastTime) + answer += std::string(""; + if (user.GetProperties().disabledDetailStat.ModificationTime() > lastTime) + answer += std::string(""; + if (user.GetProperties().passive.ModificationTime() > lastTime) + answer += std::string(""; + if (user.GetProperties().lastCashAdd.ModificationTime() > lastTime) + answer += ""; + if (user.GetProperties().lastCashAddTime.ModificationTime() > lastTime) + answer += ""; + if (user.GetProperties().lastActivityTime.ModificationTime() > lastTime) + answer += ""; + if (user.GetProperties().creditExpire.ModificationTime() > lastTime) + answer += ""; if (lastTime == 0) { @@ -169,8 +180,11 @@ std::string UserToXML(const USER & user, bool loginInStart, bool showPass, time_ int GET_USERS::Start(void *, const char * el, const char ** attr) { - if (strcasecmp(el, tag.c_str()) != 0) + if (strcasecmp(el, m_tag.c_str()) != 0) + { + printfd(__FILE__, "Got wrong tag: '%s' instead of '%s'\n", el, m_tag.c_str()); return -1; + } while (attr && *attr && *(attr + 1)) { @@ -188,23 +202,23 @@ void GET_USERS::CreateAnswer() assert(h); if (m_lastUserUpdateTime > 0) - answer = "<" + tag + " LastUpdate=\"" + x2str(time(NULL)) + "\">"; + m_answer = ""; else - answer = GetOpenTag(); + m_answer = ""; - USER_PTR u; + UserPtr u; while (m_users.SearchNext(h, &u) == 0) - answer += UserToXML(*u, true, currAdmin.GetPriv()->userConf || currAdmin.GetPriv()->userPasswd, m_lastUserUpdateTime); + m_answer += UserToXML(*u, true, m_currAdmin.priv().userConf || m_currAdmin.priv().userPasswd, m_lastUserUpdateTime); m_users.CloseSearch(h); - answer += GetCloseTag(); + m_answer += ""; } int GET_USER::Start(void *, const char * el, const char ** attr) { - if (strcasecmp(el, tag.c_str()) != 0) + if (strcasecmp(el, m_tag.c_str()) != 0) return -1; if (attr[1] == NULL) @@ -216,21 +230,21 @@ int GET_USER::Start(void *, const char * el, const char ** attr) void GET_USER::CreateAnswer() { - CONST_USER_PTR u; + ConstUserPtr u; if (m_users.FindByName(m_login, &u)) - answer = "<" + tag + " result=\"error\" reason=\"User not found.\"/>"; + m_answer = ""; else - answer = UserToXML(*u, false, currAdmin.GetPriv()->userConf || currAdmin.GetPriv()->userPasswd); + m_answer = UserToXML(*u, false, m_currAdmin.priv().userConf || m_currAdmin.priv().userPasswd); } int ADD_USER::Start(void *, const char * el, const char ** attr) { - depth++; + m_depth++; - if (depth == 1) + if (m_depth == 1) { - if (strcasecmp(el, tag.c_str()) == 0) + if (strcasecmp(el, m_tag.c_str()) == 0) return 0; } else @@ -244,36 +258,23 @@ int ADD_USER::Start(void *, const char * el, const char ** attr) return -1; } -int ADD_USER::End(void *, const char *el) -{ - if (depth == 1) - { - if (strcasecmp(el, tag.c_str()) == 0) - return -1; - CreateAnswer(); - } - - --depth; - return 0; -} - void ADD_USER::CreateAnswer() { if (m_users.Exists(m_login)) - answer = "<" + tag + " result=\"error\" reason=\"User '" + m_login + "' exists.\"/>"; - else if (m_users.Add(m_login, &currAdmin) == 0) - answer = "<" + tag + " result=\"ok\"/>"; + m_answer = "<" + m_tag + " result=\"error\" reason=\"User '" + m_login + "' exists.\"/>"; + else if (m_users.Add(m_login, &m_currAdmin) == 0) + m_answer = "<" + m_tag + " result=\"ok\"/>"; else - answer = "<" + tag + " result=\"error\" reason=\"Access denied\"/>"; + m_answer = "<" + m_tag + " result=\"error\" reason=\"Access denied\"/>"; } int CHG_USER::Start(void *, const char * el, const char ** attr) { - depth++; + m_depth++; - if (depth == 1) + if (m_depth == 1) { - if (strcasecmp(el, tag.c_str()) == 0) + if (strcasecmp(el, m_tag.c_str()) == 0) return 0; } else @@ -286,7 +287,7 @@ int CHG_USER::Start(void *, const char * el, const char ** attr) if (strcasecmp(el, "ip") == 0) { - m_ucr.ips = StrToIPS(attr[1]); + m_ucr.ips = UserIPs::parse(attr[1]); return 0; } @@ -450,171 +451,169 @@ int CHG_USER::Start(void *, const char * el, const char ** attr) return -1; } -int CHG_USER::End(void *, const char *el) -{ - if (depth == 1) - { - if (strcasecmp(el, tag.c_str()) != 0) - return -1; - - CreateAnswer(); - } - - depth--; - return 0; -} - void CHG_USER::CreateAnswer() { if (ApplyChanges() == 0) - answer = "<" + tag + " result=\"ok\"/>"; + m_answer = "<" + m_tag + " result=\"ok\"/>"; else - answer = "<" + tag + " result=\"error\"/>"; + m_answer = "<" + m_tag + " result=\"error\"/>"; } int CHG_USER::ApplyChanges() { printfd(__FILE__, "PARSER_CHG_USER::ApplyChanges()\n"); - USER_PTR u; + UserPtr u; if (m_users.FindByName(m_login, &u)) return -1; bool check = false; - bool alwaysOnline = u->GetProperty().alwaysOnline; + bool alwaysOnline = u->GetProperties().alwaysOnline; if (!m_ucr.alwaysOnline.empty()) { check = true; alwaysOnline = m_ucr.alwaysOnline.const_data(); } - bool onlyOneIP = u->GetProperty().ips.ConstData().OnlyOneIP(); + bool onlyOneIP = u->GetProperties().ips.ConstData().onlyOneIP(); if (!m_ucr.ips.empty()) { check = true; - onlyOneIP = m_ucr.ips.const_data().OnlyOneIP(); + onlyOneIP = m_ucr.ips.const_data().onlyOneIP(); } if (check && alwaysOnline && !onlyOneIP) { printfd(__FILE__, "Requested change leads to a forbidden state: AlwaysOnline with multiple IP's\n"); - GetStgLogger()("%s Requested change leads to a forbidden state: AlwaysOnline with multiple IP's", currAdmin.GetLogStr().c_str()); + PluginLogger::get("conf_sg")("%s Requested change leads to a forbidden state: AlwaysOnline with multiple IP's", m_currAdmin.logStr().c_str()); return -1; } - for (size_t i = 0; i < m_ucr.ips.const_data().Count(); ++i) + for (size_t i = 0; i < m_ucr.ips.const_data().count(); ++i) { - CONST_USER_PTR user; + ConstUserPtr user; uint32_t ip = m_ucr.ips.const_data().operator[](i).ip; if (m_users.IsIPInUse(ip, m_login, &user)) { printfd(__FILE__, "Trying to assign an IP %s to '%s' that is already in use by '%s'\n", inet_ntostring(ip).c_str(), m_login.c_str(), user->GetLogin().c_str()); - GetStgLogger()("%s trying to assign an IP %s to '%s' that is currently in use by '%s'", currAdmin.GetLogStr().c_str(), inet_ntostring(ip).c_str(), m_login.c_str(), user->GetLogin().c_str()); + PluginLogger::get("conf_sg")("%s trying to assign an IP %s to '%s' that is currently in use by '%s'", m_currAdmin.logStr().c_str(), inet_ntostring(ip).c_str(), m_login.c_str(), user->GetLogin().c_str()); return -1; } } if (!m_ucr.ips.empty()) - if (!u->GetProperty().ips.Set(m_ucr.ips.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().ips.Set(m_ucr.ips.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.alwaysOnline.empty()) - if (!u->GetProperty().alwaysOnline.Set(m_ucr.alwaysOnline.const_data(), - &currAdmin, m_login, store)) + if (!u->GetProperties().alwaysOnline.Set(m_ucr.alwaysOnline.const_data(), + m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.address.empty()) - if (!u->GetProperty().address.Set(m_ucr.address.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().address.Set(m_ucr.address.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.creditExpire.empty()) - if (!u->GetProperty().creditExpire.Set(m_ucr.creditExpire.const_data(), - &currAdmin, m_login, store)) + if (!u->GetProperties().creditExpire.Set(m_ucr.creditExpire.const_data(), + m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.credit.empty()) - if (!u->GetProperty().credit.Set(m_ucr.credit.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().credit.Set(m_ucr.credit.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_usr.freeMb.empty()) - if (!u->GetProperty().freeMb.Set(m_usr.freeMb.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().freeMb.Set(m_usr.freeMb.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.disabled.empty()) - if (!u->GetProperty().disabled.Set(m_ucr.disabled.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().disabled.Set(m_ucr.disabled.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.disabledDetailStat.empty()) - if (!u->GetProperty().disabledDetailStat.Set(m_ucr.disabledDetailStat.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().disabledDetailStat.Set(m_ucr.disabledDetailStat.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.email.empty()) - if (!u->GetProperty().email.Set(m_ucr.email.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().email.Set(m_ucr.email.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.group.empty()) - if (!u->GetProperty().group.Set(m_ucr.group.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().group.Set(m_ucr.group.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.note.empty()) - if (!u->GetProperty().note.Set(m_ucr.note.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().note.Set(m_ucr.note.const_data(), m_currAdmin, m_login, m_store)) return -1; - std::vector *> userdata; - userdata.push_back(u->GetProperty().userdata0.GetPointer()); - userdata.push_back(u->GetProperty().userdata1.GetPointer()); - userdata.push_back(u->GetProperty().userdata2.GetPointer()); - userdata.push_back(u->GetProperty().userdata3.GetPointer()); - userdata.push_back(u->GetProperty().userdata4.GetPointer()); - userdata.push_back(u->GetProperty().userdata5.GetPointer()); - userdata.push_back(u->GetProperty().userdata6.GetPointer()); - userdata.push_back(u->GetProperty().userdata7.GetPointer()); - userdata.push_back(u->GetProperty().userdata8.GetPointer()); - userdata.push_back(u->GetProperty().userdata9.GetPointer()); + std::vector *> userdata; + userdata.push_back(u->GetProperties().userdata0.GetPointer()); + userdata.push_back(u->GetProperties().userdata1.GetPointer()); + userdata.push_back(u->GetProperties().userdata2.GetPointer()); + userdata.push_back(u->GetProperties().userdata3.GetPointer()); + userdata.push_back(u->GetProperties().userdata4.GetPointer()); + userdata.push_back(u->GetProperties().userdata5.GetPointer()); + userdata.push_back(u->GetProperties().userdata6.GetPointer()); + userdata.push_back(u->GetProperties().userdata7.GetPointer()); + userdata.push_back(u->GetProperties().userdata8.GetPointer()); + userdata.push_back(u->GetProperties().userdata9.GetPointer()); for (int i = 0; i < (int)userdata.size(); i++) if (!m_ucr.userdata[i].empty()) - if(!userdata[i]->Set(m_ucr.userdata[i].const_data(), &currAdmin, m_login, store)) + if(!userdata[i]->Set(m_ucr.userdata[i].const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.passive.empty()) - if (!u->GetProperty().passive.Set(m_ucr.passive.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().passive.Set(m_ucr.passive.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.password.empty()) - if (!u->GetProperty().password.Set(m_ucr.password.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().password.Set(m_ucr.password.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.phone.empty()) - if (!u->GetProperty().phone.Set(m_ucr.phone.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().phone.Set(m_ucr.phone.const_data(), m_currAdmin, m_login, m_store)) return -1; if (!m_ucr.realName.empty()) - if (!u->GetProperty().realName.Set(m_ucr.realName.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().realName.Set(m_ucr.realName.const_data(), m_currAdmin, m_login, m_store)) return -1; - if (!m_usr.cash.empty()) + { if (m_cashMustBeAdded) { - if (!u->GetProperty().cash.Set(m_usr.cash.const_data() + u->GetProperty().cash, - &currAdmin, - m_login, - store, - m_cashMsg)) + if (!u->GetProperties().cash.Set(m_usr.cash.const_data() + u->GetProperties().cash, + m_currAdmin, + m_login, + m_store, + m_cashMsg)) return -1; - else - if (!u->GetProperty().cash.Set(m_usr.cash.const_data(), &currAdmin, m_login, store, m_cashMsg)) - return -1; } - + else + { + if (!u->GetProperties().cash.Set(m_usr.cash.const_data(), m_currAdmin, m_login, m_store, m_cashMsg)) + return -1; + } + } if (!m_ucr.tariffName.empty()) { - if (m_tariffs.FindByName(m_ucr.tariffName.const_data())) + const auto newTariff = m_tariffs.FindByName(m_ucr.tariffName.const_data()); + if (newTariff) { - if (!u->GetProperty().tariffName.Set(m_ucr.tariffName.const_data(), &currAdmin, m_login, store)) - return -1; - u->ResetNextTariff(); + const auto tariff = u->GetTariff(); + std::string message = tariff->TariffChangeIsAllowed(*newTariff, stgTime); + if (message.empty()) + { + if (!u->GetProperties().tariffName.Set(m_ucr.tariffName.const_data(), m_currAdmin, m_login, m_store)) + return -1; + u->ResetNextTariff(); + } + else + { + PluginLogger::get("conf_sg")("Tariff change is prohibited for user %s. %s", u->GetLogin().c_str(), message.c_str()); + } } else { @@ -627,7 +626,7 @@ int CHG_USER::ApplyChanges() { if (m_tariffs.FindByName(m_ucr.nextTariff.const_data())) { - if (!u->GetProperty().nextTariff.Set(m_ucr.nextTariff.const_data(), &currAdmin, m_login, store)) + if (!u->GetProperties().nextTariff.Set(m_ucr.nextTariff.const_data(), m_currAdmin, m_login, m_store)) return -1; } else @@ -637,8 +636,8 @@ int CHG_USER::ApplyChanges() } } - DIR_TRAFF up = u->GetProperty().up; - DIR_TRAFF down = u->GetProperty().down; + auto up = u->GetProperties().up.get(); + auto down = u->GetProperties().down.get(); int upCount = 0; int downCount = 0; for (int i = 0; i < DIR_NUM; i++) @@ -656,11 +655,11 @@ int CHG_USER::ApplyChanges() } if (upCount) - if (!u->GetProperty().up.Set(up, &currAdmin, m_login, store)) + if (!u->GetProperties().up.Set(up, m_currAdmin, m_login, m_store)) return -1; if (downCount) - if (!u->GetProperty().down.Set(down, &currAdmin, m_login, store)) + if (!u->GetProperties().down.Set(down, m_currAdmin, m_login, m_store)) return -1; u->WriteConf(); @@ -672,7 +671,7 @@ int CHG_USER::ApplyChanges() int DEL_USER::Start(void *, const char *el, const char **attr) { res = 0; - if (strcasecmp(el, tag.c_str()) == 0) + if (strcasecmp(el, m_tag.c_str()) == 0) { if (attr[0] == NULL || attr[1] == NULL) { @@ -695,10 +694,10 @@ int DEL_USER::Start(void *, const char *el, const char **attr) int DEL_USER::End(void *, const char *el) { - if (strcasecmp(el, tag.c_str()) == 0) + if (strcasecmp(el, m_tag.c_str()) == 0) { if (!res) - m_users.Del(u->GetLogin(), &currAdmin); + m_users.Del(u->GetLogin(), &m_currAdmin); return 0; } @@ -708,14 +707,14 @@ int DEL_USER::End(void *, const char *el) void DEL_USER::CreateAnswer() { if (res) - answer = "<" + tag + " value=\"error\" reason=\"User not found\"/>"; + m_answer = "<" + m_tag + " value=\"error\" reason=\"User not found\"/>"; else - answer = "<" + tag + " value=\"ok\"/>"; + m_answer = "<" + m_tag + " value=\"ok\"/>"; } int CHECK_USER::Start(void *, const char *el, const char **attr) { - if (strcasecmp(el, tag.c_str()) == 0) + if (strcasecmp(el, m_tag.c_str()) == 0) { if (attr[0] == NULL || attr[1] == NULL || attr[2] == NULL || attr[3] == NULL) @@ -725,7 +724,7 @@ int CHECK_USER::Start(void *, const char *el, const char **attr) return 0; } - CONST_USER_PTR user; + ConstUserPtr user; if (m_users.FindByName(attr[1], &user)) { CreateAnswer("User not found."); @@ -733,7 +732,7 @@ int CHECK_USER::Start(void *, const char *el, const char **attr) return 0; } - if (strcmp(user->GetProperty().password.Get().c_str(), attr[3])) + if (strcmp(user->GetProperties().password.Get().c_str(), attr[3])) { CreateAnswer("Wrong password."); printfd(__FILE__, "PARSER_CHECK_USER - passwd err\n"); @@ -748,7 +747,7 @@ int CHECK_USER::Start(void *, const char *el, const char **attr) int CHECK_USER::End(void *, const char *el) { - if (strcasecmp(el, tag.c_str()) == 0) + if (strcasecmp(el, m_tag.c_str()) == 0) return 0; return -1; } @@ -756,7 +755,7 @@ int CHECK_USER::End(void *, const char *el) void CHECK_USER::CreateAnswer(const char * error) { if (error) - answer = "<" + tag + " value=\"Err\" reason=\"" + error + "\"/>"; + m_answer = "<" + m_tag + " value=\"Err\" reason=\"" + error + "\"/>"; else - answer = "<" + tag + " value=\"Ok\"/>"; + m_answer = "<" + m_tag + " value=\"Ok\"/>"; }