- if (strcasecmp(el, "aonline") == 0)
- {
- ucr->alwaysOnline = (*(attr[1]) != '0');
- return 0;
- }
-
- if (strcasecmp(el, "cash") == 0)
- {
- if (attr[2] && (strcasecmp(attr[2], "msg") == 0))
- {
- cashMsg = EncChar2String(attr[3]);
- }
-
- double cash;
- if (strtodouble2(attr[1], cash) == 0)
- usr->cash = cash;
-
- if (strcasecmp(attr[0], "set") == 0)
- cashMustBeAdded = false;
-
- if (strcasecmp(attr[0], "add") == 0)
- cashMustBeAdded = true;
-
- return 0;
- }
-
- if (strcasecmp(el, "CreditExpire") == 0)
- {
- long int creditExpire = 0;
- if (str2x(attr[1], creditExpire) == 0)
- ucr->creditExpire = (time_t)creditExpire;
-
- return 0;
- }
-
- if (strcasecmp(el, "credit") == 0)
- {
- double credit;
- if (strtodouble2(attr[1], credit) == 0)
- ucr->credit = credit;
- return 0;
- }
-
- if (strcasecmp(el, "freemb") == 0)
- {
- double freeMb;
- if (strtodouble2(attr[1], freeMb) == 0)
- usr->freeMb = freeMb;
- return 0;
- }
-
- if (strcasecmp(el, "down") == 0)
- {
- int down = 0;
- if (str2x(attr[1], down) == 0)
- ucr->disabled = down;
- return 0;
- }
-
- if (strcasecmp(el, "DisableDetailStat") == 0)
- {
- int disabledDetailStat = 0;
- if (str2x(attr[1], disabledDetailStat) == 0)
- ucr->disabledDetailStat = disabledDetailStat;
- return 0;
- }
-
- if (strcasecmp(el, "email") == 0)
- {
- ucr->email = EncChar2String(attr[1]);
- return 0;
- }
-
- for (int i = 0; i < USERDATA_NUM; i++)
- {
- char name[15];
- sprintf(name, "userdata%d", i);
- if (strcasecmp(el, name) == 0)
- {
- ucr->userdata[i] = EncChar2String(attr[1]);
- return 0;
- }
- }
-
- if (strcasecmp(el, "group") == 0)
- {
- ucr->group = EncChar2String(attr[1]);
- return 0;
- }
-
- if (strcasecmp(el, "note") == 0)
- {
- ucr->note = EncChar2String(attr[1]);
- return 0;
- }
-
- if (strcasecmp(el, "passive") == 0)
- {
- int passive = 0;
- if (str2x(attr[1], passive) == 0)
- ucr->passive = passive;
- return 0;
- }
-
- if (strcasecmp(el, "phone") == 0)
- {
- ucr->phone = EncChar2String(attr[1]);
- return 0;
- }
-
- if (strcasecmp(el, "Name") == 0)
- {
- ucr->realName = EncChar2String(attr[1]);
- return 0;
- }
-
- if (strcasecmp(el, "traff") == 0)
- {
- int j = 0;
- DIR_TRAFF dtu;
- DIR_TRAFF dtd;
- uint64_t t = 0;
- while (attr[j])
- {
- int dir = attr[j][2] - '0';
-
- if (strncasecmp(attr[j], "md", 2) == 0)
- {
- str2x(attr[j+1], t);
- dtd[dir] = t;
- downr[dir] = t;
- }
- if (strncasecmp(attr[j], "mu", 2) == 0)
- {
- str2x(attr[j+1], t);
- dtu[dir] = t;
- upr[dir] = t;
- }
- j+=2;
- }
- return 0;
- }
-
- if (strcasecmp(el, "tariff") == 0)
- {
- if (strcasecmp(attr[0], "now") == 0)
- ucr->tariffName = attr[1];
-
- if (strcasecmp(attr[0], "delayed") == 0)
- ucr->nextTariff = attr[1];
-
- return 0;
- }
- }
-return -1;
-}
-//-----------------------------------------------------------------------------
-int PARSER_CHG_USER::ParseEnd(void *, const char *el)
-{
-if (depth == 1)
- {
- if (strcasecmp(el, "SetUser") == 0)
- {
- AplayChanges();
- CreateAnswer();
- depth--;
- return 0;
- }
- }
-
-depth--;
-return -1;
-}
-//-----------------------------------------------------------------------------
-void PARSER_CHG_USER::CreateAnswer()
-{
-switch (res)
- {
- case 0:
- answer = "<SetUser result=\"ok\"/>";
- break;
- case -1:
- answer = "<SetUser result=\"error\"/>";
- break;
- case -2:
- answer = "<SetUser result=\"error\"/>";
- break;
- default:
- answer = "<SetUser result=\"error\"/>";
- break;
- }
-
-}
-//-----------------------------------------------------------------------------
-int PARSER_CHG_USER::AplayChanges()
-{
-printfd(__FILE__, "PARSER_CHG_USER::AplayChanges()\n");
-USER_PTR u;
-
-res = 0;
-if (users->FindByName(login, &u))
- {
- res = -1;
- return -1;
- }
-
-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;
- }