2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
24 $Date: 2010/03/25 14:37:43 $
43 #include "common_sg.h"
44 #include "sg_error_codes.h"
50 int ParseReplyGet(void * data, list<string> * ans);
51 //int ParseReplySet(void * data, list<string> * ans);
53 struct option long_options_get[] = {
54 {"server", 1, 0, 's'}, //Server
55 {"port", 1, 0, 'p'}, //Port
56 {"admin", 1, 0, 'a'}, //Admin
57 {"admin_pass", 1, 0, 'w'}, //passWord
58 {"user", 1, 0, 'u'}, //User
59 {"addcash", 0, 0, 'c'}, //Add Cash
60 //{"setcash", 0, 0, 'v'}, //Set Cash
61 {"credit", 0, 0, 'r'}, //cRedit
62 {"tariff", 0, 0, 't'}, //Tariff
63 {"message", 0, 0, 'm'}, //message
64 {"password", 0, 0, 'o'}, //password
65 {"down", 0, 0, 'd'}, //down
66 {"passive", 0, 0, 'i'}, //passive
67 {"disable-stat",0, 0, 'S'}, //disable detail stat
68 {"always-online",0, 0, 'O'}, //always online
69 {"u0", 0, 0, 500}, //U0
70 {"u1", 0, 0, 501}, //U1
71 {"u2", 0, 0, 502}, //U2
72 {"u3", 0, 0, 503}, //U3
73 {"u4", 0, 0, 504}, //U4
74 {"u5", 0, 0, 505}, //U5
75 {"u6", 0, 0, 506}, //U6
76 {"u7", 0, 0, 507}, //U7
77 {"u8", 0, 0, 508}, //U8
78 {"u9", 0, 0, 509}, //U9
79 {"d0", 0, 0, 600}, //D0
80 {"d1", 0, 0, 601}, //D1
81 {"d2", 0, 0, 602}, //D2
82 {"d3", 0, 0, 603}, //D3
83 {"d4", 0, 0, 604}, //D4
84 {"d5", 0, 0, 605}, //D5
85 {"d6", 0, 0, 606}, //D6
86 {"d7", 0, 0, 607}, //D7
87 {"d8", 0, 0, 608}, //D8
88 {"d9", 0, 0, 609}, //D9
90 {"ud0", 0, 0, 700}, //UserData0
91 {"ud1", 0, 0, 701}, //UserData1
92 {"ud2", 0, 0, 702}, //UserData2
93 {"ud3", 0, 0, 703}, //UserData3
94 {"ud4", 0, 0, 704}, //UserData4
95 {"ud5", 0, 0, 705}, //UserData5
96 {"ud6", 0, 0, 706}, //UserData6
97 {"ud7", 0, 0, 707}, //UserData7
98 {"ud8", 0, 0, 708}, //UserData8
99 {"ud9", 0, 0, 709}, //UserData9
101 {"prepaid", 0, 0, 'e'}, //prepaid traff
102 {"create", 0, 0, 'n'}, //create
103 {"delete", 0, 0, 'l'}, //delete
105 {"note", 0, 0, 'N'}, //Note
106 {"name", 0, 0, 'A'}, //nAme
107 {"address", 0, 0, 'D'}, //aDdress
108 {"email", 0, 0, 'L'}, //emaiL
109 {"phone", 0, 0, 'P'}, //phone
110 {"group", 0, 0, 'G'}, //Group
111 {"ip", 0, 0, 'I'}, //IP-address of user
115 struct option long_options_set[] = {
116 {"server", 1, 0, 's'}, //Server
117 {"port", 1, 0, 'p'}, //Port
118 {"admin", 1, 0, 'a'}, //Admin
119 {"admin_pass", 1, 0, 'w'}, //passWord
120 {"user", 1, 0, 'u'}, //User
121 {"addcash", 1, 0, 'c'}, //Add Cash
122 {"setcash", 1, 0, 'v'}, //Set Cash
123 {"credit", 1, 0, 'r'}, //cRedit
124 {"tariff", 1, 0, 't'}, //Tariff
125 {"message", 1, 0, 'm'}, //message
126 {"password", 1, 0, 'o'}, //password
127 {"down", 1, 0, 'd'}, //down
128 {"passive", 1, 0, 'i'}, //passive
129 {"disable-stat",1, 0, 'S'}, //disable detail stat
130 {"always-online",1, 0, 'O'}, //always online
131 {"u0", 1, 0, 500}, //U0
132 {"u1", 1, 0, 501}, //U1
133 {"u2", 1, 0, 502}, //U2
134 {"u3", 1, 0, 503}, //U3
135 {"u4", 1, 0, 504}, //U4
136 {"u5", 1, 0, 505}, //U5
137 {"u6", 1, 0, 506}, //U6
138 {"u7", 1, 0, 507}, //U7
139 {"u8", 1, 0, 508}, //U8
140 {"u9", 1, 0, 509}, //U9
141 {"d0", 1, 0, 600}, //D0
142 {"d1", 1, 0, 601}, //D1
143 {"d2", 1, 0, 602}, //D2
144 {"d3", 1, 0, 603}, //D3
145 {"d4", 1, 0, 604}, //D4
146 {"d5", 1, 0, 605}, //D5
147 {"d6", 1, 0, 606}, //D6
148 {"d7", 1, 0, 607}, //D7
149 {"d8", 1, 0, 608}, //D8
150 {"d9", 1, 0, 609}, //D9
152 {"ud0", 1, 0, 700}, //UserData
153 {"ud1", 1, 0, 701}, //UserData1
154 {"ud2", 1, 0, 702}, //UserData2
155 {"ud3", 1, 0, 703}, //UserData3
156 {"ud4", 1, 0, 704}, //UserData4
157 {"ud5", 1, 0, 705}, //UserData5
158 {"ud6", 1, 0, 706}, //UserData6
159 {"ud7", 1, 0, 707}, //UserData7
160 {"ud8", 1, 0, 708}, //UserData8
161 {"ud9", 1, 0, 709}, //UserData9
163 {"prepaid", 1, 0, 'e'}, //prepaid traff
164 {"create", 1, 0, 'n'}, //create
165 {"delete", 1, 0, 'l'}, //delete
167 {"note", 1, 0, 'N'}, //Note
168 {"name", 1, 0, 'A'}, //nAme
169 {"address", 1, 0, 'D'}, //aDdress
170 {"email", 1, 0, 'L'}, //emaiL
171 {"phone", 1, 0, 'P'}, //phone
172 {"group", 1, 0, 'G'}, //Group
173 {"ip", 0, 0, 'I'}, //IP-address of user
177 //-----------------------------------------------------------------------------
178 double ParseCash(const char * c, string * message)
180 //-c 123.45:log message
184 str = new char[strlen(c) + 1];
186 strncpy(str, c, strlen(c));
187 msg = strchr(str, ':');
197 if (strtodouble2(str, cash) != 0)
199 printf("Incorrect cash value %s\n", c);
200 exit(PARAMETER_PARSING_ERR_CODE);
206 //-----------------------------------------------------------------------------
207 double ParseCredit(const char * c)
210 if (strtodouble2(c, credit) != 0)
212 printf("Incorrect credit value %s\n", c);
213 exit(PARAMETER_PARSING_ERR_CODE);
218 //-----------------------------------------------------------------------------
219 double ParsePrepaidTraffic(const char * c)
222 if (strtodouble2(c, credit) != 0)
224 printf("Incorrect prepaid traffic value %s\n", c);
225 exit(PARAMETER_PARSING_ERR_CODE);
230 //-----------------------------------------------------------------------------
231 int64_t ParseTraff(const char * c)
234 if (str2x(c, traff) != 0)
236 printf("Incorrect credit value %s\n", c);
237 exit(PARAMETER_PARSING_ERR_CODE);
242 //-----------------------------------------------------------------------------
243 bool ParseDownPassive(const char * dp)
245 if (!(dp[1] == 0 && (dp[0] == '1' || dp[0] == '0')))
247 printf("Incorrect value %s\n", dp);
248 exit(PARAMETER_PARSING_ERR_CODE);
253 //-----------------------------------------------------------------------------
254 string ParseTariff(const char * t, int &chgType)
266 if (strlen(s1) >= TARIFF_NAME_LEN)
268 printf("Tariff name too big %s\n", s1);
269 exit(PARAMETER_PARSING_ERR_CODE);
276 printf("Incorrect tariff value %s\n", t);
277 exit(PARAMETER_PARSING_ERR_CODE);
280 s2 = strtok(NULL, ":");
286 chgType = TARIFF_NOW;
293 if (strcmp(s2, "now") == 0)
294 chgType = TARIFF_NOW;
296 if (strcmp(s2, "delayed") == 0)
297 chgType = TARIFF_DEL;
299 if (strcmp(s2, "recalc") == 0)
300 chgType = TARIFF_REC;
304 printf("Incorrect tariff value %s\n", t);
305 exit(PARAMETER_PARSING_ERR_CODE);
312 //-----------------------------------------------------------------------------
313 void ParseAnyString(const char * c, string * msg, const char * enc)
316 char * ob = new char[strlen(c) + 1];
317 char * ib = new char[strlen(c) + 1];
324 setlocale(LC_ALL, "");
327 strncpy(charsetF, nl_langinfo(CODESET), 255);
329 const char * charsetT = enc;
333 size_t insize = strlen(ib);
334 size_t outsize = strlen(ib);
338 cd = iconv_open(charsetT, charsetF);
339 if (cd == (iconv_t) -1)
343 printf("Warning: iconv from %s to %s failed\n", charsetF, charsetT);
348 printf("error iconv_open\n");
350 exit(ICONV_ERR_CODE);
353 #if defined(FREE_BSD) || defined(FREE_BSD5)
354 nconv = iconv (cd, (const char**)&inbuf, &insize, &outbuf, &outsize);
356 nconv = iconv (cd, &inbuf, &insize, &outbuf, &outsize);
358 //printf("nconv=%d outsize=%d\n", nconv, outsize);
359 if (nconv == (size_t) -1)
363 printf("iconv error\n");
364 exit(ICONV_ERR_CODE);
376 //-----------------------------------------------------------------------------
377 void CreateRequestSet(REQUEST * req, char * r)
379 const int strLen = 10024;
381 memset(str, 0, strLen);
385 if (!req->usrMsg.res_empty())
388 Encode12str(msg, req->usrMsg);
389 sprintf(str, "<Message login=\"%s\" msgver=\"1\" msgtype=\"1\" repeat=\"0\" repeatperiod=\"0\" showtime=\"0\" text=\"%s\"/>", req->login.const_data().c_str(), msg.c_str());
390 //sprintf(str, "<message login=\"%s\" priority=\"0\" text=\"%s\"/>\n", req->login, msg);
397 sprintf(str, "<DelUser login=\"%s\"/>", req->login.const_data().c_str());
405 sprintf(str, "<AddUser> <login value=\"%s\"/> </AddUser>", req->login.const_data().c_str());
411 strcat(r, "<SetUser>\n");
412 sprintf(str, "<login value=\"%s\"/>\n", req->login.const_data().c_str());
414 if (!req->credit.res_empty())
416 sprintf(str, "<credit value=\"%f\"/>\n", req->credit.const_data());
420 if (!req->prepaidTraff.res_empty())
422 sprintf(str, "<FreeMb value=\"%f\"/>\n", req->prepaidTraff.const_data());
426 if (!req->cash.res_empty())
429 Encode12str(msg, req->message);
430 sprintf(str, "<cash add=\"%f\" msg=\"%s\"/>\n", req->cash.const_data(), msg.c_str());
434 if (!req->setCash.res_empty())
437 Encode12str(msg, req->message);
438 sprintf(str, "<cash set=\"%f\" msg=\"%s\"/>\n", req->setCash.const_data(), msg.c_str());
442 if (!req->usrPasswd.res_empty())
444 sprintf(str, "<password value=\"%s\" />\n", req->usrPasswd.const_data().c_str());
448 if (!req->down.res_empty())
450 sprintf(str, "<down value=\"%d\" />\n", req->down.const_data());
454 if (!req->passive.res_empty())
456 sprintf(str, "<passive value=\"%d\" />\n", req->passive.const_data());
460 if (!req->disableDetailStat.res_empty())
462 sprintf(str, "<disableDetailStat value=\"%d\" />\n", req->disableDetailStat.const_data());
466 if (!req->alwaysOnline.res_empty())
468 sprintf(str, "<aonline value=\"%d\" />\n", req->alwaysOnline.const_data());
472 // IP-address of user
473 if (!req->ips.res_empty())
475 sprintf(str, "<ip value=\"%s\" />\n", req->ips.const_data().c_str());
479 int uPresent = false;
480 int dPresent = false;
481 for (int i = 0; i < DIR_NUM; i++)
483 if (!req->u[i].res_empty())
485 if (!uPresent && !dPresent)
487 sprintf(str, "<traff ");
493 ss << req->u[i].const_data();
494 //sprintf(str, "MU%d=\"%lld\" ", i, req->u[i].const_data());
495 sprintf(str, "MU%d=\"%s\" ", i, ss.str().c_str());
498 if (!req->d[i].res_empty())
500 if (!uPresent && !dPresent)
502 sprintf(str, "<traff ");
508 ss << req->d[i].const_data();
509 sprintf(str, "MD%d=\"%s\" ", i, ss.str().c_str());
513 if (uPresent || dPresent)
520 if (!req->tariff.res_empty())
522 switch (req->chgTariff)
525 sprintf(str, "<tariff now=\"%s\"/>\n", req->tariff.const_data().c_str());
529 sprintf(str, "<tariff recalc=\"%s\"/>\n", req->tariff.const_data().c_str());
533 sprintf(str, "<tariff delayed=\"%s\"/>\n", req->tariff.const_data().c_str());
540 if (!req->note.res_empty())
543 Encode12str(note, req->note);
544 sprintf(str, "<note value=\"%s\"/>", note.c_str());
548 if (!req->name.res_empty())
551 Encode12str(name, req->name);
552 sprintf(str, "<name value=\"%s\"/>", name.c_str());
556 if (!req->address.res_empty())
559 Encode12str(address, req->address);
560 sprintf(str, "<address value=\"%s\"/>", address.c_str());
564 if (!req->email.res_empty())
567 Encode12str(email, req->email);
568 sprintf(str, "<email value=\"%s\"/>", email.c_str());
572 if (!req->phone.res_empty())
575 Encode12str(phone, req->phone);
576 sprintf(str, "<phone value=\"%s\"/>", phone.c_str());
580 if (!req->group.res_empty())
583 Encode12str(group, req->group);
584 sprintf(str, "<group value=\"%s\"/>", group.c_str());
588 for (int i = 0; i < USERDATA_NUM; i++)
590 if (!req->ud[i].res_empty())
593 Encode12str(ud, req->ud[i]);
594 sprintf(str, "<userdata%d value=\"%s\"/>", i, ud.c_str());
599 strcat(r, "</SetUser>\n");
601 //-----------------------------------------------------------------------------
602 int CheckParameters(REQUEST * req)
607 int a = !req->admLogin.res_empty()
608 && !req->admPasswd.res_empty()
609 && !req->server.res_empty()
610 && !req->port.res_empty()
611 && !req->login.res_empty();
613 int b = !req->cash.res_empty()
614 || !req->setCash.res_empty()
615 || !req->credit.res_empty()
616 || !req->prepaidTraff.res_empty()
617 || !req->tariff.res_empty()
618 || !req->usrMsg.res_empty()
619 || !req->usrPasswd.res_empty()
621 || !req->note.res_empty()
622 || !req->name.res_empty()
623 || !req->address.res_empty()
624 || !req->email.res_empty()
625 || !req->phone.res_empty()
626 || !req->group.res_empty()
627 || !req->ips.res_empty() // IP-address of user
633 for (int i = 0; i < DIR_NUM; i++)
635 if (req->u[i].res_empty())
642 for (int i = 0; i < DIR_NUM; i++)
644 if (req->d[i].res_empty())
651 for (int i = 0; i < DIR_NUM; i++)
653 if (req->ud[i].res_empty())
661 //printf("a=%d, b=%d, u=%d, d=%d ud=%d\n", a, b, u, d, ud);
662 return a && (b || u || d || ud);
664 //-----------------------------------------------------------------------------
665 int CheckParametersGet(REQUEST * req)
667 return CheckParameters(req);
669 //-----------------------------------------------------------------------------
670 int CheckParametersSet(REQUEST * req)
672 return CheckParameters(req);
674 //-----------------------------------------------------------------------------
675 int mainGet(int argc, char **argv)
679 RESETABLE<string> t1;
680 int missedOptionArg = false;
682 const char * short_options_get = "s:p:a:w:u:crtmodieNADLPGISO";
683 int option_index = -1;
688 c = getopt_long(argc, argv, short_options_get, long_options_get, &option_index);
699 req.port = ParseServerPort(optarg);
704 req.admLogin = ParseAdminLogin(optarg);
707 case 'w': //admin password
708 req.admPasswd = ParsePassword(optarg);
711 case 'o': //change user password
716 req.login = ParseUser(optarg);
739 case 'e': //Prepaid Traffic
740 req.prepaidTraff = 1;
767 case 'I': //IP-address of user
771 case 'S': //Detail stat status
772 req.disableDetailStat = " ";
775 case 'O': //Always online status
776 req.alwaysOnline = " ";
789 //printf("U%d\n", c - 500);
803 //printf("D%d\n", c - 600);
817 //printf("UD%d\n", c - 700);
818 req.ud[c - 700] = " ";
823 //printf ("Unknown option \n");
824 missedOptionArg = true;
828 printf ("?? getopt returned character code 0%o ??\n", c);
834 printf ("non-option ARGV-elements: ");
835 while (optind < argc)
836 printf ("%s ", argv[optind++]);
838 exit(PARAMETER_PARSING_ERR_CODE);
841 if (missedOptionArg || !CheckParametersGet(&req))
843 //printf("Parameter needed\n");
845 exit(PARAMETER_PARSING_ERR_CODE);
848 return ProcessGetUser(req.server, req.port, req.admLogin, req.admPasswd, req.login, &req);
850 //-----------------------------------------------------------------------------
851 int mainSet(int argc, char **argv)
856 bool isMessage = false;
859 RESETABLE<string> t1;
861 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:";
863 int missedOptionArg = false;
867 int option_index = -1;
869 c = getopt_long(argc, argv, short_options_set, long_options_set, &option_index);
881 req.port = ParseServerPort(optarg);
886 req.admLogin = ParseAdminLogin(optarg);
889 case 'w': //admin password
890 req.admPasswd = ParsePassword(optarg);
893 case 'o': //change user password
894 req.usrPasswd = ParsePassword(optarg);
898 req.login = ParseUser(optarg);
902 req.cash = ParseCash(optarg, &req.message);
906 req.setCash = ParseCash(optarg, &req.message);
910 req.credit = ParseCredit(optarg);
914 req.down = ParseDownPassive(optarg);
918 req.passive = ParseDownPassive(optarg);
922 req.tariff = ParseTariff(optarg, req.chgTariff);
926 ParseAnyString(optarg, &str);
931 case 'e': //Prepaid Traffic
932 req.prepaidTraff = ParsePrepaidTraffic(optarg);
935 case 'n': //Create User
936 req.createUser = true;
939 case 'l': //Delete User
940 req.deleteUser = true;
944 ParseAnyString(optarg, &str);
949 ParseAnyString(optarg, &str, "koi8-r");
954 ParseAnyString(optarg, &str);
959 ParseAnyString(optarg, &str);
961 //printf("EMAIL=%s\n", optarg);
965 ParseAnyString(optarg, &str);
970 ParseAnyString(optarg, &str);
974 case 'I': //IP-address of user
975 ParseAnyString(optarg, &str);
980 req.disableDetailStat = ParseDownPassive(optarg);
984 req.alwaysOnline = ParseDownPassive(optarg);
997 //printf("U%d\n", c - 500);
998 req.u[c - 500] = ParseTraff(optarg);
1011 //printf("D%d\n", c - 600);
1012 req.d[c - 600] = ParseTraff(optarg);
1015 case 700: //UserData
1025 ParseAnyString(optarg, &str);
1026 //printf("UD%d\n", c - 700);
1027 req.ud[c - 700] = str;
1031 //printf("Missing option argument\n");
1032 missedOptionArg = true;
1036 //printf("Missing option argument\n");
1037 missedOptionArg = true;
1041 printf("?? getopt returned character code 0%o ??\n", c);
1047 printf ("non-option ARGV-elements: ");
1048 while (optind < argc)
1049 printf ("%s ", argv[optind++]);
1051 exit(PARAMETER_PARSING_ERR_CODE);
1054 if (missedOptionArg || !CheckParametersSet(&req))
1056 //printf("Parameter needed\n");
1058 exit(PARAMETER_PARSING_ERR_CODE);
1061 const int rLen = 20000;
1063 memset(rstr, 0, rLen);
1065 CreateRequestSet(&req, rstr);
1066 return ProcessSetUser(req.server, req.port, req.admLogin, req.admPasswd, rstr, NULL, isMessage);
1068 //-----------------------------------------------------------------------------
1069 int main(int argc, char **argv)
1074 exit(PARAMETER_PARSING_ERR_CODE);
1077 if (strcmp(argv[1], "get") == 0)
1080 return mainGet(argc - 1, argv + 1);
1082 else if (strcmp(argv[1], "set") == 0)
1085 return mainSet(argc - 1, argv + 1);
1090 exit(PARAMETER_PARSING_ERR_CODE);
1092 return UNKNOWN_ERR_CODE;
1094 //-----------------------------------------------------------------------------