- }
-
-bool check = false;
-bool alwaysOnline = u->GetProperty().alwaysOnline;
-if (!ucr->alwaysOnline.empty())
- {
- check = true;
- alwaysOnline = ucr->alwaysOnline.const_data();
- }
-bool onlyOneIP = u->GetProperty().ips.ConstData().OnlyOneIP();
-if (!ucr->ips.empty())
- {
- check = true;
- onlyOneIP = 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());
- res = -1;
- return -1;
- }
-
-for (size_t i = 0; i < ucr->ips.const_data().Count(); ++i)
- {
- CONST_USER_PTR user;
- uint32_t ip = ucr->ips.const_data().operator[](i).ip;
- if (users->IsIPInUse(ip, 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(), 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(), login.c_str(), user->GetLogin().c_str());
- res = -1;
- return -1;
- }
- }
-
-if (!ucr->ips.empty())
- if (!u->GetProperty().ips.Set(ucr->ips.const_data(), currAdmin, login, store))
- res = -1;
-
-if (!ucr->alwaysOnline.empty())
- if (!u->GetProperty().alwaysOnline.Set(ucr->alwaysOnline.const_data(),
- currAdmin, login, store))
- res = -1;
-
-if (!ucr->address.empty())
- if (!u->GetProperty().address.Set(ucr->address.const_data(), currAdmin, login, store))
- res = -1;
-
-if (!ucr->creditExpire.empty())
- if (!u->GetProperty().creditExpire.Set(ucr->creditExpire.const_data(),
- currAdmin, login, store))
- res = -1;
-
-if (!ucr->credit.empty())
- if (!u->GetProperty().credit.Set(ucr->credit.const_data(), currAdmin, login, store))
- res = -1;
-
-if (!usr->freeMb.empty())
- if (!u->GetProperty().freeMb.Set(usr->freeMb.const_data(), currAdmin, login, store))
- res = -1;
-
-if (!ucr->disabled.empty())
- if (!u->GetProperty().disabled.Set(ucr->disabled.const_data(), currAdmin, login, store))
- res = -1;
-
-if (!ucr->disabledDetailStat.empty())
- if (!u->GetProperty().disabledDetailStat.Set(ucr->disabledDetailStat.const_data(), currAdmin, login, store))
- res = -1;
-
-if (!ucr->email.empty())
- if (!u->GetProperty().email.Set(ucr->email.const_data(), currAdmin, login, store))
- res = -1;
-
-if (!ucr->group.empty())
- if (!u->GetProperty().group.Set(ucr->group.const_data(), currAdmin, login, store))
- res = -1;
-
-if (!ucr->note.empty())
- if (!u->GetProperty().note.Set(ucr->note.const_data(), currAdmin, login, store))
- res = -1;
-
-std::vector<USER_PROPERTY_LOGGED<std::string> *> 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());
-
-for (int i = 0; i < (int)userdata.size(); i++)
- {
- if (!ucr->userdata[i].empty())
- {
- if(!userdata[i]->Set(ucr->userdata[i].const_data(), currAdmin, login, store))
- res = -1;
- }
- }
-
-if (!ucr->passive.empty())
- if (!u->GetProperty().passive.Set(ucr->passive.const_data(), currAdmin, login, store))
- res = -1;
-
-if (!ucr->password.empty())
- if (!u->GetProperty().password.Set(ucr->password.const_data(), currAdmin, login, store))
- res = -1;
-
-if (!ucr->phone.empty())
- if (!u->GetProperty().phone.Set(ucr->phone.const_data(), currAdmin, login, store))
- res = -1;
-
-if (!ucr->realName.empty())
- if (!u->GetProperty().realName.Set(ucr->realName.const_data(), currAdmin, login, store))
- res = -1;
-
-
-if (!usr->cash.empty())
- {
- //if (*currAdmin->GetPriv()->userCash)
- {
- if (cashMustBeAdded)
- {
- if (!u->GetProperty().cash.Set(usr->cash.const_data() + u->GetProperty().cash,
- currAdmin,
- login,
- store,
- cashMsg))
- res = -1;
- }
- else
- {
- if (!u->GetProperty().cash.Set(usr->cash.const_data(), currAdmin, login, store, cashMsg))
- res = -1;
- }
- }
- }
-
-
-if (!ucr->tariffName.empty())
- {
- if (tariffs->FindByName(ucr->tariffName.const_data()))
- {
- if (!u->GetProperty().tariffName.Set(ucr->tariffName.const_data(), currAdmin, login, store))
- res = -1;
- u->ResetNextTariff();
- }
- else
- {
- //WriteServLog("SetUser: Tariff %s not found", ud.conf.tariffName.c_str());
- res = -1;
- }
- }
-
-if (!ucr->nextTariff.empty())
- {
- if (tariffs->FindByName(ucr->nextTariff.const_data()))
- {
- if (!u->GetProperty().nextTariff.Set(ucr->nextTariff.const_data(), currAdmin, login, store))
- res = -1;
- }
- else
- {
- //WriteServLog("SetUser: Tariff %s not found", ud.conf.tariffName.c_str());
- res = -1;
- }
- }
-
-DIR_TRAFF up = u->GetProperty().up;
-DIR_TRAFF down = u->GetProperty().down;
-int upCount = 0;
-int downCount = 0;
-for (int i = 0; i < DIR_NUM; i++)
- {
- if (!upr[i].empty())
- {
- up[i] = upr[i].data();
- upCount++;
- }
- if (!downr[i].empty())
- {
- down[i] = downr[i].data();
- downCount++;
- }
- }
-
-if (upCount)
- if (!u->GetProperty().up.Set(up, currAdmin, login, store))
- res = -1;
-
-if (downCount)
- if (!u->GetProperty().down.Set(down, currAdmin, login, store))
- res = -1;
-
-u->WriteConf();
-u->WriteStat();
-
-return 0;
-}
-//-----------------------------------------------------------------------------
-// SEND MESSAGE
-//-----------------------------------------------------------------------------
-int PARSER_SEND_MESSAGE::ParseStart(void *, const char *el, const char **attr)
-{
-if (strcasecmp(el, "Message") == 0)
- {
- for (int i = 0; i < 14; i++)
- {
- if (attr[i] == NULL)
- {
- result = res_params_error;
- CreateAnswer();
- printfd(__FILE__, "To few parameters\n");
- return 0;
- }
- }
-
- for (int i = 0; i < 14; i+=2)
- {
- if (strcasecmp(attr[i], "login") == 0)
- {
- ParseLogins(attr[i+1]);
- /*if (users->FindByName(login, &u))
- {
- result = res_unknown;
- break;
- }*/
- }
-
- if (strcasecmp(attr[i], "MsgVer") == 0)
- {
- str2x(attr[i+1], msg.header.ver);
- if (msg.header.ver != 1)
- result = res_params_error;
- }
-
- if (strcasecmp(attr[i], "MsgType") == 0)
- {
- str2x(attr[i+1], msg.header.type);
- if (msg.header.type != 1)
- result = res_params_error;
- }
-
- if (strcasecmp(attr[i], "Repeat") == 0)
- {
- str2x(attr[i+1], msg.header.repeat);
- if (msg.header.repeat < 0)
- result = res_params_error;
- }
-
- if (strcasecmp(attr[i], "RepeatPeriod") == 0)
- {
- str2x(attr[i+1], msg.header.repeatPeriod);
- }
-
- if (strcasecmp(attr[i], "ShowTime") == 0)
- {
- str2x(attr[i+1], msg.header.showTime);
- }
-
- if (strcasecmp(attr[i], "Text") == 0)
- {
- Decode21str(msg.text, attr[i+1]);
- result = res_ok;
- }
- }
- return 0;
- }
-return -1;