From db33c64eab7528d3eb95b53332d80a5f8f4b80b2 Mon Sep 17 00:00:00 2001 From: Maxim Mamontov Date: Fri, 26 Nov 2010 17:05:54 +0200 Subject: [PATCH] =?utf8?q?=D0=92=20=D0=BC=D0=B5=D1=82=D0=BE=D0=B4=20=D0=B8?= =?utf8?q?=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B4=D0=B0?= =?utf8?q?=D0=BD=D0=BD=D1=8B=D1=85=20=D0=BF=D0=BE=D0=BB=D1=8C=D0=B7=D0=BE?= =?utf8?q?=D0=B2=D0=B0=D1=82=D0=B5=D0=BB=D1=8F=20=D0=B4=D0=BE=D0=B1=D0=B0?= =?utf8?q?=D0=B2=D0=BB=D0=B5=D0=BD=D0=B0=20=D0=BE=D0=B1=D1=80=D0=B0=D0=B1?= =?utf8?q?=D0=BE=D1=82=D0=BA=D0=B0=20=D0=BA=D1=80=D0=B5=D0=B4=D0=B8=D1=82?= =?utf8?q?=D0=B0=20=D0=B8=20=D1=82=D0=B0=D1=80=D0=B8=D1=84=D0=BE=D0=B2.=20?= =?utf8?q?=D0=9F=D1=80=D0=BE=D0=B2=D0=B5=D0=B4=D0=B5=D0=BD=20=D0=BD=D0=B5?= =?utf8?q?=D0=B1=D0=BE=D0=BB=D1=8C=D1=88=D0=BE=D0=B9=20=D1=80=D0=B5=D1=84?= =?utf8?q?=D0=B0=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D0=BD=D0=B3.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../configuration/rpcconfig/user_helper.cpp | 317 +++++++++--------- .../configuration/rpcconfig/user_helper.h | 10 +- 2 files changed, 166 insertions(+), 161 deletions(-) diff --git a/projects/stargazer/plugins/configuration/rpcconfig/user_helper.cpp b/projects/stargazer/plugins/configuration/rpcconfig/user_helper.cpp index 7f10eae4..c858eba1 100644 --- a/projects/stargazer/plugins/configuration/rpcconfig/user_helper.cpp +++ b/projects/stargazer/plugins/configuration/rpcconfig/user_helper.cpp @@ -1,7 +1,11 @@ #include "user_helper.h" +#include "../../../tariffs.h" +#include "../../../admin.h" +#include "base_store.h" #include "user_ips.h" #include "utils.h" +#include "common.h" //------------------------------------------------------------------------------ @@ -125,7 +129,8 @@ structVal["creditexpire"] = xmlrpc_c::value_int(iter->property.creditExpire.Get( bool USER_HELPER::SetUserInfo(const xmlrpc_c::value & info, const ADMIN & admin, const std::string & login, - const BASE_STORE & store) + const BASE_STORE & store, + TARIFFS * tariffs) { std::map structVal( static_cast >(xmlrpc_c::value_struct(info)) @@ -135,196 +140,178 @@ std::map::iterator it; if ((it = structVal.find("password")) != structVal.end()) { - bool res = iter->property.password.Set(xmlrpc_c::value_string(it->second), - admin, - login, - &store); - if (!res) - { - return true; - } + std::string value(xmlrpc_c::value_string(it->second)); + if (iter->property.password.Get() != value) + if (!iter->property.password.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("ips")) != structVal.end()) { USER_IPS ips; ips = StrToIPS(xmlrpc_c::value_string(it->second)); - bool res = iter->property.ips.Set(ips, - admin, - login, - &store); - if (!res) - { + if (!iter->property.ips.Set(ips, + admin, + login, + &store)) return true; - } } if ((it = structVal.find("address")) != structVal.end()) { - bool res = iter->property.address.Set(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R"), - admin, - login, - &store); - if (!res) - { - return true; - } + std::string value(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R")); + if (iter->property.address.Get() != value) + if (!iter->property.address.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("phone")) != structVal.end()) { - bool res = iter->property.phone.Set(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R"), - admin, - login, - &store); - if (!res) - { - return true; - } + std::string value(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R")); + if (iter->property.phone.Get() != value) + if (!iter->property.phone.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("email")) != structVal.end()) { - bool res = iter->property.email.Set(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R"), - admin, - login, - &store); - if (!res) - { - return true; - } + std::string value(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R")); + if (iter->property.email.Get() != value) + if (!iter->property.email.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("cash")) != structVal.end()) { - bool res = iter->property.cash.Set(xmlrpc_c::value_double(it->second), - admin, - login, - &store); - if (!res) - { - return true; - } + double value(xmlrpc_c::value_double(it->second)); + if (iter->property.cash.Get() != value) + if (!iter->property.cash.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("creditexpire")) != structVal.end()) { - bool res = iter->property.creditExpire.Set(xmlrpc_c::value_int(it->second), - admin, - login, - &store); - if (!res) - { - return true; - } + time_t value(xmlrpc_c::value_int(it->second)); + if (iter->property.creditExpire.Get() != value) + if (!iter->property.creditExpire.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("credit")) != structVal.end()) { - bool res = iter->property.credit.Set(xmlrpc_c::value_double(it->second), - admin, - login, - &store); - if (!res) - { - return true; - } + double value(xmlrpc_c::value_double(it->second)); + if (iter->property.credit.Get() != value) + if (!iter->property.credit.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("freemb")) != structVal.end()) { - bool res = iter->property.freeMb.Set(xmlrpc_c::value_double(it->second), - admin, - login, - &store); - if (!res) - { - return true; - } + double value(xmlrpc_c::value_double(it->second)); + if (iter->property.freeMb.Get() != value) + if (!iter->property.freeMb.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("down")) != structVal.end()) { - bool res = iter->property.disabled.Set(xmlrpc_c::value_boolean(it->second), - admin, - login, - &store); - if (!res) - { - return true; - } + bool value(xmlrpc_c::value_boolean(it->second)); + if (iter->property.disabled.Get() != value) + if (!iter->property.disabled.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("passive")) != structVal.end()) { - bool res = iter->property.passive.Set(xmlrpc_c::value_boolean(it->second), - admin, - login, - &store); - if (!res) - { - return true; - } + bool value(xmlrpc_c::value_boolean(it->second)); + if (iter->property.passive.Get()) + if (!iter->property.passive.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("aonline")) != structVal.end()) { - bool res = iter->property.alwaysOnline.Set(xmlrpc_c::value_boolean(it->second), - admin, - login, - &store); - if (!res) - { - return true; - } + bool value(xmlrpc_c::value_boolean(it->second)); + if (iter->property.alwaysOnline.Get() != value) + if (!iter->property.alwaysOnline.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("disableddetailstat")) != structVal.end()) { - bool res = iter->property.disabledDetailStat.Set(xmlrpc_c::value_boolean(it->second), - admin, - login, - &store); - if (!res) - { - return true; - } + bool value(xmlrpc_c::value_boolean(it->second)); + if (iter->property.disabledDetailStat.Get() != value) + if (!iter->property.disabledDetailStat.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("name")) != structVal.end()) { - bool res = iter->property.realName.Set(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R"), - admin, - login, - &store); - if (!res) - { - return true; - } + std::string value(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R")); + if (iter->property.realName.Get() != value) + if (!iter->property.realName.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("group")) != structVal.end()) { - bool res = iter->property.group.Set(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R"), - admin, - login, - &store); - if (!res) - { - return true; - } + std::string value(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R")); + if (iter->property.group.Get() != value) + if (!iter->property.group.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("note")) != structVal.end()) { - bool res = iter->property.note.Set(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R"), - admin, - login, - &store); - if (!res) - { - return true; - } + std::string value(IconvString(xmlrpc_c::value_string(it->second), "UTF-8", "KOI8-R")); + if (iter->property.note.Get() != value) + if (!iter->property.note.Set(value, + admin, + login, + &store)) + return true; } if ((it = structVal.find("userdata")) != structVal.end()) @@ -347,14 +334,13 @@ if ((it = structVal.find("userdata")) != structVal.end()) for (unsigned i = 0; i < userdata.size(); ++i) { - bool res = userdata[i]->Set(IconvString(xmlrpc_c::value_string(udata[i]), "UTF-8", "KOI8-R"), - admin, - login, - &store); - if (!res) - { - return true; - } + std::string value(IconvString(xmlrpc_c::value_string(udata[i]), "UTF-8", "KOI8-R")); + if (userdata[i]->Get() != value) + if (!userdata[i]->Set(value, + admin, + login, + &store)) + return true; } } @@ -374,22 +360,15 @@ if ((it = structVal.find("traff")) != structVal.end()) { int64_t value; if (str2x(xmlrpc_c::value_string(data[i]), value)) - { printfd(__FILE__, "USER_HELPER::SetUserInfo(): 'Invalid month upload value'\n"); - } else - { dtData[i] = value; - } } - bool res = iter->property.up.Set(dtData, - admin, - login, - &store); - if (!res) - { + if (!iter->property.up.Set(dtData, + admin, + login, + &store)) return true; - } } dtData = iter->property.down.Get(); if ((it = traff.find("md")) != traff.end()) @@ -400,24 +379,46 @@ if ((it = structVal.find("traff")) != structVal.end()) { int64_t value; if (str2x(xmlrpc_c::value_string(data[i]), value)) - { printfd(__FILE__, "USER_HELPER::SetUserInfo(): 'Invalid month download value'\n"); - } else - { dtData[i] = value; - } } - bool res = iter->property.down.Set(dtData, - admin, - login, - &store); - if (!res) - { + if (!iter->property.down.Set(dtData, + admin, + login, + &store)) return true; - } } } +if ((it = structVal.find("tariff")) != structVal.end()) + { + std::string tariff(xmlrpc_c::value_string(it->second)); + size_t pos = tariff.find('/'); + std::string nextTariff; + if (pos != std::string::npos) + { + nextTariff = tariff.substr(pos + 1); + tariff = tariff.substr(0, pos); + } + + if (tariffs->FindByName(tariff)) + if (iter->property.tariffName.Get() != tariff) + if (!iter->property.tariffName.Set(tariff, + admin, + login, + &store)) + return true; + + if (nextTariff != "" && + tariffs->FindByName(nextTariff)) + if (iter->property.nextTariff.Get() != nextTariff) + if (!iter->property.nextTariff.Set(tariff, + admin, + login, + &store)) + return true; + } + return false; } diff --git a/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h b/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h index 6421a467..ab5fd32f 100644 --- a/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h +++ b/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h @@ -4,9 +4,12 @@ #include #include + #include "../../../users.h" -#include "../../../admin.h" -#include "base_store.h" + +class ADMIN; +class BASE_STORE; +class TARIFFS; class USER_HELPER { @@ -21,7 +24,8 @@ public: bool SetUserInfo(const xmlrpc_c::value & info, const ADMIN & admin, const std::string & login, - const BASE_STORE & store); + const BASE_STORE & store, + TARIFFS * tariffs); private: user_iter & iter; }; -- 2.43.2