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));
189 msg = strchr(str, ':');
199 if (strtodouble2(str, cash) != 0)
201 printf("Incorrect cash value %s\n", c);
202 exit(PARAMETER_PARSING_ERR_CODE);
208 //-----------------------------------------------------------------------------
209 double ParseCredit(const char * c)
212 if (strtodouble2(c, credit) != 0)
214 printf("Incorrect credit value %s\n", c);
215 exit(PARAMETER_PARSING_ERR_CODE);
220 //-----------------------------------------------------------------------------
221 double ParsePrepaidTraffic(const char * c)
224 if (strtodouble2(c, credit) != 0)
226 printf("Incorrect prepaid traffic value %s\n", c);
227 exit(PARAMETER_PARSING_ERR_CODE);
232 //-----------------------------------------------------------------------------
233 int64_t ParseTraff(const char * c)
236 if (str2x(c, traff) != 0)
238 printf("Incorrect credit value %s\n", c);
239 exit(PARAMETER_PARSING_ERR_CODE);
244 //-----------------------------------------------------------------------------
245 bool ParseDownPassive(const char * dp)
247 if (!(dp[1] == 0 && (dp[0] == '1' || dp[0] == '0')))
249 printf("Incorrect value %s\n", dp);
250 exit(PARAMETER_PARSING_ERR_CODE);
255 //-----------------------------------------------------------------------------
256 string ParseTariff(const char * t, int &chgType)
268 if (strlen(s1) >= TARIFF_NAME_LEN)
270 printf("Tariff name too big %s\n", s1);
271 exit(PARAMETER_PARSING_ERR_CODE);
278 printf("Incorrect tariff value %s\n", t);
279 exit(PARAMETER_PARSING_ERR_CODE);
282 s2 = strtok(NULL, ":");
288 chgType = TARIFF_NOW;
295 if (strcmp(s2, "now") == 0)
296 chgType = TARIFF_NOW;
298 if (strcmp(s2, "delayed") == 0)
299 chgType = TARIFF_DEL;
301 if (strcmp(s2, "recalc") == 0)
302 chgType = TARIFF_REC;
306 printf("Incorrect tariff value %s\n", t);
307 exit(PARAMETER_PARSING_ERR_CODE);
314 //-----------------------------------------------------------------------------
315 time_t ParseCreditExpire(const char * str)
317 struct tm brokenTime;
319 brokenTime.tm_wday = 0;
320 brokenTime.tm_yday = 0;
321 brokenTime.tm_isdst = 0;
322 brokenTime.tm_hour = 0;
323 brokenTime.tm_min = 0;
324 brokenTime.tm_sec = 0;
326 stg_strptime(str, "%Y-%m-%d", &brokenTime);
328 return stg_timegm(&brokenTime);
330 //-----------------------------------------------------------------------------
331 void ParseAnyString(const char * c, string * msg, const char * enc)
334 char * ob = new char[strlen(c) + 1];
335 char * ib = new char[strlen(c) + 1];
342 setlocale(LC_ALL, "");
345 strncpy(charsetF, nl_langinfo(CODESET), 255);
347 const char * charsetT = enc;
351 size_t insize = strlen(ib);
352 size_t outsize = strlen(ib);
356 cd = iconv_open(charsetT, charsetF);
357 if (cd == (iconv_t) -1)
361 printf("Warning: iconv from %s to %s failed\n", charsetF, charsetT);
366 printf("error iconv_open\n");
368 exit(ICONV_ERR_CODE);
371 #if defined(FREE_BSD) || defined(FREE_BSD5)
372 nconv = iconv (cd, (const char**)&inbuf, &insize, &outbuf, &outsize);
374 nconv = iconv (cd, &inbuf, &insize, &outbuf, &outsize);
376 //printf("nconv=%d outsize=%d\n", nconv, outsize);
377 if (nconv == (size_t) -1)
381 printf("iconv error\n");
382 exit(ICONV_ERR_CODE);
394 //-----------------------------------------------------------------------------
395 void CreateRequestSet(REQUEST * req, char * r)
397 const int strLen = 10024;
399 memset(str, 0, strLen);
403 if (!req->usrMsg.res_empty())
406 Encode12str(msg, req->usrMsg);
407 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());
408 //sprintf(str, "<message login=\"%s\" priority=\"0\" text=\"%s\"/>\n", req->login, msg);
415 sprintf(str, "<DelUser login=\"%s\"/>", req->login.const_data().c_str());
423 sprintf(str, "<AddUser> <login value=\"%s\"/> </AddUser>", req->login.const_data().c_str());
429 strcat(r, "<SetUser>\n");
430 sprintf(str, "<login value=\"%s\"/>\n", req->login.const_data().c_str());
432 if (!req->credit.res_empty())
434 sprintf(str, "<credit value=\"%f\"/>\n", req->credit.const_data());
438 if (!req->creditExpire.res_empty())
440 sprintf(str, "<creditExpire value=\"%ld\"/>\n", req->creditExpire.const_data());
444 if (!req->prepaidTraff.res_empty())
446 sprintf(str, "<FreeMb value=\"%f\"/>\n", req->prepaidTraff.const_data());
450 if (!req->cash.res_empty())
453 Encode12str(msg, req->message);
454 sprintf(str, "<cash add=\"%f\" msg=\"%s\"/>\n", req->cash.const_data(), msg.c_str());
458 if (!req->setCash.res_empty())
461 Encode12str(msg, req->message);
462 sprintf(str, "<cash set=\"%f\" msg=\"%s\"/>\n", req->setCash.const_data(), msg.c_str());
466 if (!req->usrPasswd.res_empty())
468 sprintf(str, "<password value=\"%s\" />\n", req->usrPasswd.const_data().c_str());
472 if (!req->down.res_empty())
474 sprintf(str, "<down value=\"%d\" />\n", req->down.const_data());
478 if (!req->passive.res_empty())
480 sprintf(str, "<passive value=\"%d\" />\n", req->passive.const_data());
484 if (!req->disableDetailStat.res_empty())
486 sprintf(str, "<disableDetailStat value=\"%d\" />\n", req->disableDetailStat.const_data());
490 if (!req->alwaysOnline.res_empty())
492 sprintf(str, "<aonline value=\"%d\" />\n", req->alwaysOnline.const_data());
496 // IP-address of user
497 if (!req->ips.res_empty())
499 sprintf(str, "<ip value=\"%s\" />\n", req->ips.const_data().c_str());
503 int uPresent = false;
504 int dPresent = false;
505 for (int i = 0; i < DIR_NUM; i++)
507 if (!req->u[i].res_empty())
509 if (!uPresent && !dPresent)
511 sprintf(str, "<traff ");
517 ss << req->u[i].const_data();
518 //sprintf(str, "MU%d=\"%lld\" ", i, req->u[i].const_data());
519 sprintf(str, "MU%d=\"%s\" ", i, ss.str().c_str());
522 if (!req->d[i].res_empty())
524 if (!uPresent && !dPresent)
526 sprintf(str, "<traff ");
532 ss << req->d[i].const_data();
533 sprintf(str, "MD%d=\"%s\" ", i, ss.str().c_str());
537 if (uPresent || dPresent)
544 if (!req->tariff.res_empty())
546 switch (req->chgTariff)
549 sprintf(str, "<tariff now=\"%s\"/>\n", req->tariff.const_data().c_str());
553 sprintf(str, "<tariff recalc=\"%s\"/>\n", req->tariff.const_data().c_str());
557 sprintf(str, "<tariff delayed=\"%s\"/>\n", req->tariff.const_data().c_str());
564 if (!req->note.res_empty())
567 Encode12str(note, req->note);
568 sprintf(str, "<note value=\"%s\"/>", note.c_str());
572 if (!req->name.res_empty())
575 Encode12str(name, req->name);
576 sprintf(str, "<name value=\"%s\"/>", name.c_str());
580 if (!req->address.res_empty())
583 Encode12str(address, req->address);
584 sprintf(str, "<address value=\"%s\"/>", address.c_str());
588 if (!req->email.res_empty())
591 Encode12str(email, req->email);
592 sprintf(str, "<email value=\"%s\"/>", email.c_str());
596 if (!req->phone.res_empty())
599 Encode12str(phone, req->phone);
600 sprintf(str, "<phone value=\"%s\"/>", phone.c_str());
604 if (!req->group.res_empty())
607 Encode12str(group, req->group);
608 sprintf(str, "<group value=\"%s\"/>", group.c_str());
612 for (int i = 0; i < USERDATA_NUM; i++)
614 if (!req->ud[i].res_empty())
617 Encode12str(ud, req->ud[i]);
618 sprintf(str, "<userdata%d value=\"%s\"/>", i, ud.c_str());
623 strcat(r, "</SetUser>\n");
625 //-----------------------------------------------------------------------------
626 int CheckParameters(REQUEST * req)
631 int a = !req->admLogin.res_empty()
632 && !req->admPasswd.res_empty()
633 && !req->server.res_empty()
634 && !req->port.res_empty()
635 && !req->login.res_empty();
637 int b = !req->cash.res_empty()
638 || !req->setCash.res_empty()
639 || !req->credit.res_empty()
640 || !req->prepaidTraff.res_empty()
641 || !req->tariff.res_empty()
642 || !req->usrMsg.res_empty()
643 || !req->usrPasswd.res_empty()
645 || !req->note.res_empty()
646 || !req->name.res_empty()
647 || !req->address.res_empty()
648 || !req->email.res_empty()
649 || !req->phone.res_empty()
650 || !req->group.res_empty()
651 || !req->ips.res_empty() // IP-address of user
657 for (int i = 0; i < DIR_NUM; i++)
659 if (req->u[i].res_empty())
666 for (int i = 0; i < DIR_NUM; i++)
668 if (req->d[i].res_empty())
675 for (int i = 0; i < DIR_NUM; i++)
677 if (req->ud[i].res_empty())
685 //printf("a=%d, b=%d, u=%d, d=%d ud=%d\n", a, b, u, d, ud);
686 return a && (b || u || d || ud);
688 //-----------------------------------------------------------------------------
689 int CheckParametersGet(REQUEST * req)
691 return CheckParameters(req);
693 //-----------------------------------------------------------------------------
694 int CheckParametersSet(REQUEST * req)
696 return CheckParameters(req);
698 //-----------------------------------------------------------------------------
699 int mainGet(int argc, char **argv)
703 RESETABLE<string> t1;
704 int missedOptionArg = false;
706 const char * short_options_get = "s:p:a:w:u:crtmodieNADLPGISOE";
707 int option_index = -1;
712 c = getopt_long(argc, argv, short_options_get, long_options_get, &option_index);
723 req.port = ParseServerPort(optarg);
728 req.admLogin = ParseAdminLogin(optarg);
731 case 'w': //admin password
732 req.admPasswd = ParsePassword(optarg);
735 case 'o': //change user password
740 req.login = ParseUser(optarg);
751 case 'E': //credit expire
752 req.creditExpire = 1;
767 case 'e': //Prepaid Traffic
768 req.prepaidTraff = 1;
795 case 'I': //IP-address of user
799 case 'S': //Detail stat status
800 req.disableDetailStat = " ";
803 case 'O': //Always online status
804 req.alwaysOnline = " ";
817 //printf("U%d\n", c - 500);
831 //printf("D%d\n", c - 600);
845 //printf("UD%d\n", c - 700);
846 req.ud[c - 700] = " ";
851 //printf ("Unknown option \n");
852 missedOptionArg = true;
856 printf ("?? getopt returned character code 0%o ??\n", c);
862 printf ("non-option ARGV-elements: ");
863 while (optind < argc)
864 printf ("%s ", argv[optind++]);
866 exit(PARAMETER_PARSING_ERR_CODE);
869 if (missedOptionArg || !CheckParametersGet(&req))
871 //printf("Parameter needed\n");
873 exit(PARAMETER_PARSING_ERR_CODE);
876 return ProcessGetUser(req.server, req.port, req.admLogin, req.admPasswd, req.login, &req);
878 //-----------------------------------------------------------------------------
879 int mainSet(int argc, char **argv)
884 bool isMessage = false;
887 RESETABLE<string> t1;
889 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:";
891 int missedOptionArg = false;
895 int option_index = -1;
897 c = getopt_long(argc, argv, short_options_set, long_options_set, &option_index);
909 req.port = ParseServerPort(optarg);
914 req.admLogin = ParseAdminLogin(optarg);
917 case 'w': //admin password
918 req.admPasswd = ParsePassword(optarg);
921 case 'o': //change user password
922 req.usrPasswd = ParsePassword(optarg);
926 req.login = ParseUser(optarg);
930 req.cash = ParseCash(optarg, &req.message);
934 req.setCash = ParseCash(optarg, &req.message);
938 req.credit = ParseCredit(optarg);
941 case 'E': //credit expire
942 req.creditExpire = ParseCreditExpire(optarg);
946 req.down = ParseDownPassive(optarg);
950 req.passive = ParseDownPassive(optarg);
954 req.tariff = ParseTariff(optarg, req.chgTariff);
958 ParseAnyString(optarg, &str);
963 case 'e': //Prepaid Traffic
964 req.prepaidTraff = ParsePrepaidTraffic(optarg);
967 case 'n': //Create User
968 req.createUser = true;
971 case 'l': //Delete User
972 req.deleteUser = true;
976 ParseAnyString(optarg, &str);
981 ParseAnyString(optarg, &str, "koi8-ru");
986 ParseAnyString(optarg, &str);
991 ParseAnyString(optarg, &str);
993 //printf("EMAIL=%s\n", optarg);
997 ParseAnyString(optarg, &str);
1002 ParseAnyString(optarg, &str);
1006 case 'I': //IP-address of user
1007 ParseAnyString(optarg, &str);
1012 req.disableDetailStat = ParseDownPassive(optarg);
1016 req.alwaysOnline = ParseDownPassive(optarg);
1029 //printf("U%d\n", c - 500);
1030 req.u[c - 500] = ParseTraff(optarg);
1043 //printf("D%d\n", c - 600);
1044 req.d[c - 600] = ParseTraff(optarg);
1047 case 700: //UserData
1057 ParseAnyString(optarg, &str);
1058 //printf("UD%d\n", c - 700);
1059 req.ud[c - 700] = str;
1063 //printf("Missing option argument\n");
1064 missedOptionArg = true;
1068 //printf("Missing option argument\n");
1069 missedOptionArg = true;
1073 printf("?? getopt returned character code 0%o ??\n", c);
1079 printf ("non-option ARGV-elements: ");
1080 while (optind < argc)
1081 printf ("%s ", argv[optind++]);
1083 exit(PARAMETER_PARSING_ERR_CODE);
1086 if (missedOptionArg || !CheckParametersSet(&req))
1088 //printf("Parameter needed\n");
1090 exit(PARAMETER_PARSING_ERR_CODE);
1093 const int rLen = 20000;
1095 memset(rstr, 0, rLen);
1097 CreateRequestSet(&req, rstr);
1098 return ProcessSetUser(req.server, req.port, req.admLogin, req.admPasswd, rstr, NULL, isMessage);
1100 //-----------------------------------------------------------------------------
1101 int main(int argc, char **argv)
1106 exit(PARAMETER_PARSING_ERR_CODE);
1109 if (strcmp(argv[1], "get") == 0)
1112 return mainGet(argc - 1, argv + 1);
1114 else if (strcmp(argv[1], "set") == 0)
1117 return mainSet(argc - 1, argv + 1);
1122 exit(PARAMETER_PARSING_ERR_CODE);
1124 return UNKNOWN_ERR_CODE;
1126 //-----------------------------------------------------------------------------