-if (!req->creditExpire.empty())
- {
- sprintf(str, "<creditExpire value=\"%ld\"/>\n", req->creditExpire.const_data());
- strcat(r, str);
- }
-
-if (!req->prepaidTraff.empty())
- {
- sprintf(str, "<FreeMb value=\"%f\"/>\n", req->prepaidTraff.const_data());
- strcat(r, str);
- }
-
-if (!req->cash.empty())
- {
- string msg;
- Encode12str(msg, req->message);
- sprintf(str, "<cash add=\"%f\" msg=\"%s\"/>\n", req->cash.const_data(), msg.c_str());
- strcat(r, str);
- }
-
-if (!req->setCash.empty())
- {
- string msg;
- Encode12str(msg, req->message);
- sprintf(str, "<cash set=\"%f\" msg=\"%s\"/>\n", req->setCash.const_data(), msg.c_str());
- strcat(r, str);
- }
-
-if (!req->usrPasswd.empty())
- {
- sprintf(str, "<password value=\"%s\" />\n", req->usrPasswd.const_data().c_str());
- strcat(r, str);
- }
-
-if (!req->down.empty())
- {
- sprintf(str, "<down value=\"%d\" />\n", req->down.const_data());
- strcat(r, str);
- }
-
-if (!req->passive.empty())
- {
- sprintf(str, "<passive value=\"%d\" />\n", req->passive.const_data());
- strcat(r, str);
- }
-
-if (!req->disableDetailStat.empty())
- {
- sprintf(str, "<disableDetailStat value=\"%d\" />\n", req->disableDetailStat.const_data());
- strcat(r, str);
- }
-
-if (!req->alwaysOnline.empty())
- {
- sprintf(str, "<aonline value=\"%d\" />\n", req->alwaysOnline.const_data());
- strcat(r, str);
- }
-
-// IP-address of user
-if (!req->ips.empty())
- {
- sprintf(str, "<ip value=\"%s\" />\n", req->ips.const_data().c_str());
- strcat(r, str);
- }
-
-int uPresent = false;
-int dPresent = false;
-for (int i = 0; i < DIR_NUM; i++)
- {
- if (!req->monthUpload[i].empty())
- {
- if (!uPresent && !dPresent)
- {
- sprintf(str, "<traff ");
- strcat(r, str);
- uPresent = true;
- }
-
- stringstream ss;
- ss << req->monthUpload[i].const_data();
- //sprintf(str, "MU%d=\"%lld\" ", i, req->u[i].const_data());
- sprintf(str, "MU%d=\"%s\" ", i, ss.str().c_str());
- strcat(r, str);
- }
- if (!req->monthDownload[i].empty())
- {
- if (!uPresent && !dPresent)
- {
- sprintf(str, "<traff ");
- strcat(r, str);
- dPresent = true;
- }
-
- stringstream ss;
- ss << req->monthDownload[i].const_data();
- sprintf(str, "MD%d=\"%s\" ", i, ss.str().c_str());
- strcat(r, str);
- }
- if (!req->sessionUpload[i].empty())
- {
- if (!uPresent && !dPresent)
- {
- sprintf(str, "<traff ");
- strcat(r, str);
- uPresent = true;
- }
-
- stringstream ss;
- ss << req->sessionUpload[i].const_data();
- //sprintf(str, "MU%d=\"%lld\" ", i, req->u[i].const_data());
- sprintf(str, "MU%d=\"%s\" ", i, ss.str().c_str());
- strcat(r, str);
- }
- if (!req->sessionDownload[i].empty())
- {
- if (!uPresent && !dPresent)
- {
- sprintf(str, "<traff ");
- strcat(r, str);
- dPresent = true;
- }
-
- stringstream ss;
- ss << req->sessionDownload[i].const_data();
- sprintf(str, "MD%d=\"%s\" ", i, ss.str().c_str());
- strcat(r, str);
- }
- }
-if (uPresent || dPresent)
- {
- strcat(r, "/>");
- }
-
-//printf("%s\n", r);
-
-if (!req->tariff.empty())
- {
- switch (req->chgTariff)
- {
- case TARIFF_NOW:
- sprintf(str, "<tariff now=\"%s\"/>\n", req->tariff.const_data().c_str());
- strcat(r, str);
- break;
- case TARIFF_REC:
- sprintf(str, "<tariff recalc=\"%s\"/>\n", req->tariff.const_data().c_str());
- strcat(r, str);
- break;
- case TARIFF_DEL:
- sprintf(str, "<tariff delayed=\"%s\"/>\n", req->tariff.const_data().c_str());
- strcat(r, str);
- break;
- }
-
- }
-
-if (!req->note.empty())
- {
- string note;
- Encode12str(note, req->note.data());
- sprintf(str, "<note value=\"%s\"/>", note.c_str());
- strcat(r, str);
- }
-
-if (!req->name.empty())
- {
- string name;
- Encode12str(name, req->name.data());
- sprintf(str, "<name value=\"%s\"/>", name.c_str());
- strcat(r, str);
- }
-
-if (!req->address.empty())
- {
- string address;
- Encode12str(address, req->address.data());
- sprintf(str, "<address value=\"%s\"/>", address.c_str());
- strcat(r, str);
- }
-
-if (!req->email.empty())
- {
- string email;
- Encode12str(email, req->email.data());
- sprintf(str, "<email value=\"%s\"/>", email.c_str());
- strcat(r, str);
- }
-
-if (!req->phone.empty())
- {
- string phone;
- Encode12str(phone, req->phone.data());
- sprintf(str, "<phone value=\"%s\"/>", phone.c_str());
- strcat(r, str);
- }
-
-if (!req->group.empty())
- {
- string group;
- Encode12str(group, req->group.data());
- sprintf(str, "<group value=\"%s\"/>", group.c_str());
- strcat(r, str);
- }
-
-for (int i = 0; i < USERDATA_NUM; i++)
- {
- if (!req->userData[i].empty())
- {
- string ud;
- Encode12str(ud, req->userData[i].data());
- sprintf(str, "<userdata%d value=\"%s\"/>", i, ud.c_str());
- strcat(r, str);
- }
- }
-
-strcat(r, "</SetUser>\n");
-}
-//-----------------------------------------------------------------------------
-int CheckParameters(REQUEST * req)
-{
-bool su = false;
-bool sd = false;
-bool mu = false;
-bool md = false;
-bool ud = false;
-bool a = !req->admLogin.empty()
- && !req->admPasswd.empty()
- && !req->server.empty()
- && !req->port.empty()
- && !req->login.empty();
-
-bool b = !req->cash.empty()
- || !req->setCash.empty()
- || !req->credit.empty()
- || !req->prepaidTraff.empty()
- || !req->tariff.empty()
- || !req->usrMsg.empty()
- || !req->usrPasswd.empty()
-
- || !req->note.empty()
- || !req->name.empty()
- || !req->address.empty()
- || !req->email.empty()
- || !req->phone.empty()
- || !req->group.empty()
- || !req->ips.empty() // IP-address of user
-
- || !req->createUser
- || !req->deleteUser;
-
-
-for (int i = 0; i < DIR_NUM; i++)
- {
- if (req->sessionUpload[i].empty())
- {
- su = true;
- break;
- }
- }
-
-for (int i = 0; i < DIR_NUM; i++)
- {
- if (req->sessionDownload[i].empty())
- {
- sd = true;
- break;
- }
- }
-
-for (int i = 0; i < DIR_NUM; i++)
- {
- if (req->monthUpload[i].empty())
- {
- mu = true;
- break;
- }
- }
-
-for (int i = 0; i < DIR_NUM; i++)
- {
- if (req->monthDownload[i].empty())
- {
- md = true;
- break;
- }
- }
-
-for (int i = 0; i < DIR_NUM; i++)
- {
- if (req->userData[i].empty())
- {
- ud = true;
- break;
- }
- }
-
-
-//printf("a=%d, b=%d, u=%d, d=%d ud=%d\n", a, b, u, d, ud);
-return a && (b || su || sd || mu || md || ud);
-}
-//-----------------------------------------------------------------------------
-int CheckParametersGet(REQUEST * req)
-{
-return CheckParameters(req);
-}
-//-----------------------------------------------------------------------------
-int CheckParametersSet(REQUEST * req)
-{
-return CheckParameters(req);
-}
-//-----------------------------------------------------------------------------
-bool mainGet(int argc, char **argv)
-{
-int c;
-REQUEST req;
-RESETABLE<string> t1;
-int missedOptionArg = false;
-
-const char * short_options_get = "s:p:a:w:u:crtmodieNADLPGISOE";
-int option_index = -1;
-
-while (1)
- {
- option_index = -1;
- c = getopt_long(argc, argv, short_options_get, long_options_get, &option_index);
- if (c == -1)
- break;
-
- switch (c)
- {
- case 's': //server
- req.server = optarg;
- break;
-
- case 'p': //port
- req.port = ParseServerPort(optarg);
- //req.portReq = 1;
- break;
-
- case 'a': //admin
- req.admLogin = ParseAdminLogin(optarg);
- break;
-
- case 'w': //admin password
- req.admPasswd = ParsePassword(optarg);
- break;
-
- case 'o': //change user password
- req.usrPasswd = " ";
- break;
-
- case 'u': //user
- req.login = ParseUser(optarg);
- break;
-
- case 'c': //get cash
- req.cash = 1;
- break;
-
- case 'r': //credit
- req.credit = 1;
- break;
-
- case 'E': //credit expire
- req.creditExpire = 1;
- break;
-
- case 'd': //down
- req.down = 1;
- break;
-
- case 'i': //passive
- req.passive = 1;
- break;
-
- case 't': //tariff
- req.tariff = " ";
- break;
-
- case 'e': //Prepaid Traffic
- req.prepaidTraff = 1;
- break;
-
- case 'N': //Note
- req.note = " ";
- break;
-
- case 'A': //nAme
- req.name = " ";
- break;
-
- case 'D': //aDdress
- req.address =" ";
- break;
-
- case 'L': //emaiL
- req.email = " ";
- break;
-
- case 'P': //phone
- req.phone = " ";
- break;
-
- case 'G': //Group
- req.group = " ";
- break;
-
- case 'I': //IP-address of user
- req.ips = " ";
- break;
-
- case 'S': //Detail stat status
- req.disableDetailStat = " ";
- break;
-
- case 'O': //Always online status
- req.alwaysOnline = " ";
- break;
-
- case 500: //U
- SetArrayItem(req.sessionUpload, optarg, 1);
- //req.sessionUpload[optarg] = 1;
- break;
- case 501:
- SetArrayItem(req.sessionDownload, optarg, 1);
- //req.sessionDownload[optarg] = 1;
- break;
- case 502:
- SetArrayItem(req.monthUpload, optarg, 1);
- //req.monthUpload[optarg] = 1;
- break;
- case 503:
- SetArrayItem(req.monthDownload, optarg, 1);
- //req.monthDownload[optarg] = 1;
- break;
-
- case 700: //UserData
- SetArrayItem(req.userData, optarg, std::string(" "));
- //req.userData[optarg] = " ";
- break;
-
- case 800:
- req.authBy = true;
- break;
-
- case '?':
- case ':':
- missedOptionArg = true;
- break;
-
- default:
- printf ("?? getopt returned character code 0%o ??\n", c);
- }
- }
-
-if (optind < argc)
- {
- printf ("non-option ARGV-elements: ");
- while (optind < argc)
- printf ("%s ", argv[optind++]);
- UsageInfo();
- exit(PARAMETER_PARSING_ERR_CODE);
- }
-
-if (missedOptionArg || !CheckParametersGet(&req))
- {
- //printf("Parameter needed\n");
- UsageInfo();
- exit(PARAMETER_PARSING_ERR_CODE);
- }
-
-if (req.authBy)
- return ProcessAuthBy(req.server.data(), req.port.data(), req.admLogin.data(), req.admPasswd.data(), req.login.data());
-else
- return ProcessGetUser(req.server.data(), req.port.data(), req.admLogin.data(), req.admPasswd.data(), req.login.data(), req);
-}
-//-----------------------------------------------------------------------------
-bool mainSet(int argc, char **argv)
-{
-string str;
-
-int c;
-bool isMessage = false;
-REQUEST req;
-
-RESETABLE<string> t1;
-
-const char * short_options_set = "s:p:a:w:u:c:r:t:m:o:d:i:e:v:nlN:A:D:L:P:G:I:S:O:E:";
-
-int missedOptionArg = false;
-
-USER_CONF_RES conf;
-USER_STAT_RES stat;
-while (1)
- {
- int option_index = -1;
-
- c = getopt_long(argc, argv, short_options_set, long_options_set, &option_index);
-
- if (c == -1)
- break;
-
- switch (c)
- {
- case 's': //server
- req.server = optarg;
- break;
-
- case 'p': //port
- req.port = ParseServerPort(optarg);
- //req.portReq = 1;
- break;
-
- case 'a': //admin
- req.admLogin = ParseAdminLogin(optarg);
- break;
-
- case 'w': //admin password
- req.admPasswd = ParsePassword(optarg);
- break;
-
- case 'o': //change user password
- conf.password = ParsePassword(optarg);
- break;
-
- case 'u': //user
- req.login = ParseUser(optarg);
- break;
-
- case 'c': //add cash
- stat.cashAdd = ParseCash(optarg);
- break;
-
- case 'v': //set cash
- stat.cashSet = ParseCash(optarg);
- break;
-
- case 'r': //credit
- conf.credit = ParseCredit(optarg);
- break;
-
- case 'E': //credit expire
- conf.creditExpire = ParseCreditExpire(optarg);
- break;
-
- case 'd': //down
- conf.disabled = ParseDownPassive(optarg);
- break;
-
- case 'i': //passive
- conf.passive = ParseDownPassive(optarg);
- break;
-
- case 't': //tariff
- ParseTariff(optarg, conf.tariffName, conf.nextTariff);
- break;
-
- case 'm': //message
- ParseAnyString(optarg, &str);
- req.usrMsg = str;
- isMessage = true;
- break;
-
- case 'e': //Prepaid Traffic
- stat.freeMb = ParsePrepaidTraffic(optarg);
- break;
-
- case 'n': //Create User
- req.createUser = true;
- break;
-
- case 'l': //Delete User
- req.deleteUser = true;
- break;
-
- case 'N': //Note
- ParseAnyString(optarg, &str, "koi8-ru");
- conf.note = str;
- break;
-
- case 'A': //nAme
- ParseAnyString(optarg, &str, "koi8-ru");
- conf.realName = str;
- break;
-
- case 'D': //aDdress
- ParseAnyString(optarg, &str, "koi8-ru");
- conf.address = str;
- break;
-
- case 'L': //emaiL
- ParseAnyString(optarg, &str, "koi8-ru");
- conf.email = str;
- break;
-
- case 'P': //phone
- ParseAnyString(optarg, &str);
- conf.phone = str;
- break;
-
- case 'G': //Group
- ParseAnyString(optarg, &str, "koi8-ru");
- conf.group = str;
- break;
-
- case 'I': //IP-address of user
- ParseAnyString(optarg, &str);
- conf.ips = StrToIPS(str);
- break;
-
- case 'S':
- conf.disabledDetailStat = ParseDownPassive(optarg);
- break;
-
- case 'O':
- conf.alwaysOnline = ParseDownPassive(optarg);
- break;
-
- case 500: //U
- SetArrayItem(stat.sessionUp, optarg, ParseTraff(argv[optind++]));
- break;
- case 501:
- SetArrayItem(stat.sessionDown, optarg, ParseTraff(argv[optind++]));
- break;
- case 502:
- SetArrayItem(stat.monthUp, optarg, ParseTraff(argv[optind++]));
- break;
- case 503:
- SetArrayItem(stat.monthDown, optarg, ParseTraff(argv[optind++]));
- break;
-
- case 700: //UserData
- ParseAnyString(argv[optind++], &str);
- SetArrayItem(conf.userdata, optarg, str);
- break;
-
- case '?':
- missedOptionArg = true;
- break;
-
- case ':':
- missedOptionArg = true;
- break;
-
- default:
- printf("?? getopt returned character code 0%o ??\n", c);
- }
- }
-
-if (optind < argc)
- {
- printf ("non-option ARGV-elements: ");
- while (optind < argc)
- printf ("%s ", argv[optind++]);
- UsageConf();
- exit(PARAMETER_PARSING_ERR_CODE);
- }
-
-if (missedOptionArg || !CheckParametersSet(&req))
- {
- //printf("Parameter needed\n");
- UsageConf();
- exit(PARAMETER_PARSING_ERR_CODE);
- }
-
-const int rLen = 20000;
-char rstr[rLen];
-memset(rstr, 0, rLen);