]> git.stg.codes - stg.git/blob - projects/sgconf/common_sg.cpp
1db7c9c472031d7b710cce5db7367aea50433506
[stg.git] / projects / sgconf / common_sg.cpp
1 /*
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.
6  *
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.
11  *
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
15  */
16
17 /*
18  *    Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
19  */
20
21  /*
22  $Author: faust $
23  $Revision: 1.12 $
24  $Date: 2009/06/08 10:02:28 $
25  */
26
27
28 #include "sg_error_codes.h"
29 #include "common_sg.h"
30 #include "version_sg.h"
31
32 #include "stg/common.h"
33
34 #include <iostream>
35 #include <vector>
36
37 #include <cstdio>
38 #include <cstring>
39 #include <cstdlib>
40 #include <cerrno>
41 #include <clocale>
42
43 #include <langinfo.h>
44 #include <iconv.h>
45
46 const int usageConf = 0;
47 const int usageInfo = 1;
48
49 const int TO_KOI8 = 0;
50 const int FROM_KOI8 = 1;
51 //-----------------------------------------------------------------------------
52 struct ResultData
53 {
54     bool result;
55     std::string reason;
56 };
57 //-----------------------------------------------------------------------------
58 struct GetUserData
59 {
60     GetUserData(REQUEST & req, bool res) : request(req), result(res) {}
61     REQUEST & request;
62     bool result;
63     std::string reason;
64 };
65 //---------------------------------------------------------------------------
66 struct HelpParams
67 {
68     std::string setActionName;
69     std::string getActionName;
70     std::string valueName;
71     std::string valueParam;
72 };
73 //---------------------------------------------------------------------------
74 void Usage(int usageType)
75 {
76 printf("Sgconf version: %s\n\n", VERSION_SG);
77
78 char action[4];
79 if (usageType == usageConf)
80     strcpy(action, "set");
81 else
82     strcpy(action, "get");
83
84 printf("To add or to set cash use:\n");
85 printf("sgconf set -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> -c <add_cash[:log message]>\n");
86 printf("sgconf set -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> -v <set_cash[:log message]>\n");
87 printf("To get cash use:\n");
88 printf("sgconf get -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> -c\n\n");
89
90 HelpParams hp[] =
91 {
92     {"set tariff",              "get tariff",           "-t",   "<tariff:now|delayed>"},
93     {"set credit",              "get credit",           "-r",   "<credit>"},
94     {"set credit expire",       "get credit expire",    "-E",   "<credit_expire_date>"},
95     {"set password",            "get password",         "-o",   "<new_password>"},
96     {"set prepaid traffic",     "get prepaid traffic",  "-e",   "<prepaid>"},
97     {"set IP-addresses",        "get IP-addresses",     "-I",   "<*|ip_addr[,ip_addr...]>"},
98     {"set name",                "get name",             "-A",   "<name>"},
99     {"set note",                "get note",             "-N",   "<note>"},
100     {"set street address",      "get street address",   "-D",   "<address>"},
101     {"set email",               "get email",            "-L",   "<email>"},
102     {"set phone",               "get phone",            "-P",   "<phone>"},
103     {"set group",               "get group",            "-G",   "<group>"},
104     {"set/unset down",          "get down",             "-d",   "<0/1>"},
105     {"set/unset \'passive\'",   "get \'passive\'",      "-i",   "<0/1>"},
106     {"set/unset \'disableDetailStat\'",   "get \'disableDetailStat\'",      "--disable-stat",   "<0/1>"},
107     {"set/unset \'alwaysOnline\'",   "get \'alwaysOnline\'",      "--always-online",   "<0/1>"},
108 };
109
110 for (unsigned i = 0; i < sizeof(hp) / sizeof(HelpParams); i++)
111     {
112     printf("To %s use:\n", hp[i].setActionName.c_str());
113     printf("sgconf set -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> %s %s\n",
114            hp[i].valueName.c_str(), hp[i].valueParam.c_str());
115     printf("To %s use:\n", hp[i].getActionName.c_str());
116     printf("sgconf get -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> %s\n\n",
117            hp[i].valueName.c_str());
118     }
119
120 printf("To set user\'s upload traffic value use:\n");
121 printf("sgconf set -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> --u0 <traff> [--u1<traff> ...]\n");
122 printf("To get user\'s upload traffic value use:\n");
123 printf("sgconf get -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> --u0 [--u1 ...]\n\n");
124
125 printf("To set user\'s download traffic value use:\n");
126 printf("sgconf set -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> --d0 <traff> [--d1<traff> ...]\n");
127 printf("To get user\'s download traffic value use:\n");
128 printf("sgconf get -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> --d0 [--d1 ...]\n\n");
129
130 printf("To set userdata<0...9> use:\n");
131 printf("sgconf set -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> --ud0 <userdata> [--ud1<userdata> ...]\n");
132 printf("To get userdata<0...9> use:\n");
133 printf("sgconf get -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> --ud0 [--ud1 ...]\n\n");
134
135 printf("To get user's authorizers list use:\n");
136 printf("sgconf get -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> --authorized-by\n\n");
137
138 printf("To send message use:\n");
139 printf("sgconf set -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> -m <message>\n\n");
140
141 printf("To create user use:\n");
142 printf("sgconf set -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> -n\n\n");
143
144 printf("To delete user use:\n");
145 printf("sgconf set -s <server> -p <port> -a <admin> -w <admin_pass> -u <user> -l\n\n");
146 }
147 //---------------------------------------------------------------------------
148 void UsageConf()
149 {
150 Usage(usageConf);
151 }
152 //---------------------------------------------------------------------------
153 void UsageInfo()
154 {
155 Usage(usageInfo);
156 }
157 //---------------------------------------------------------------------------
158 int CheckLogin(const char * login)
159 {
160 for (int i = 0; i < (int)strlen(login); i++)
161     {
162     if (!(( login[i] >= 'a' && login[i] <= 'z')
163         || (login[i] >= 'A' && login[i] <= 'Z')
164         || (login[i] >= '0' && login[i] <= '9')
165         ||  login[i] == '.'
166         ||  login[i] == '_'
167         ||  login[i] == '-'))
168         {
169         return 1;
170         }
171     }
172 return 0;
173 }
174 //-----------------------------------------------------------------------------
175 short int ParseServerPort(const char * p)
176 {
177 int port;
178 if (str2x(p, port) != 0)
179     {
180     printf("Incorrect server port %s\n", p);
181     exit(NETWORK_ERR_CODE);
182     }
183 return (short)port;
184 }
185 //-----------------------------------------------------------------------------
186 char * ParseAdminLogin(char * adm)
187 {
188 if (CheckLogin(adm))
189     {
190     printf("Incorrect admin login %s\n", adm);
191     exit(PARAMETER_PARSING_ERR_CODE);
192     }
193 return adm;
194 }
195 //-----------------------------------------------------------------------------
196 char * ParsePassword(char * pass)
197 {
198 if (strlen(pass) >= ADM_PASSWD_LEN)
199     {
200     printf("Password too big %s\n", pass);
201     exit(PARAMETER_PARSING_ERR_CODE);
202     }
203
204 return pass;
205 }
206 //-----------------------------------------------------------------------------
207 char * ParseUser(char * usr)
208 {
209 if (CheckLogin(usr))
210     {
211     printf("Incorrect user login %s\n", usr);
212     exit(PARAMETER_PARSING_ERR_CODE);
213     }
214 return usr;
215 }
216 //-----------------------------------------------------------------------------
217 void ConvertKOI8(const std::string & src, std::string * dst, int encType)
218 {
219 iconv_t cd;
220 char * ob = new char[src.size() * 2 + 1];
221 char * ib = new char[src.size() + 1];
222
223 strcpy(ib, src.c_str());
224
225 char * outbuf = ob;
226 char * inbuf = ib;
227
228 setlocale(LC_ALL, "");
229
230 char charsetF[100];
231 char charsetT[100];
232
233 if (encType == TO_KOI8)
234     {
235     strcpy(charsetF, nl_langinfo(CODESET));
236     strcpy(charsetT, "koi8-ru");
237     }
238 else
239     {
240     strcpy(charsetT, nl_langinfo(CODESET));
241     strcpy(charsetF, "koi8-ru");
242     }
243
244 size_t nconv = 1;
245
246 size_t insize = strlen(ib);
247 size_t outsize = insize * 2 + 1;
248
249 insize = src.size();
250
251 cd = iconv_open(charsetT, charsetF);
252 if (cd == (iconv_t) -1)
253     {
254     if (errno != EINVAL)
255         printf("error iconv_open\n");
256     else
257         {
258         printf("Warning: iconv from %s to %s failed\n", charsetF, charsetT);
259         *dst = src;
260         return;
261         }
262
263     exit(ICONV_ERR_CODE);
264     }
265
266 #if defined(FREE_BSD) || defined(FREE_BSD5)
267 nconv = iconv(cd, (const char **)&inbuf, &insize, &outbuf, &outsize);
268 #else
269 nconv = iconv(cd, &inbuf, &insize, &outbuf, &outsize);
270 #endif
271 //printf("charsetT=%s charsetF=%s\n", charsetT, charsetF);
272 //printf("ib=%s ob=%s\n", ib, ob);
273 //printf("nconv=%d outsize=%d\n", nconv, outsize);
274 if (nconv == (size_t) -1)
275     {
276     if (errno != EINVAL)
277         {
278         printf("iconv error\n");
279         exit(ICONV_ERR_CODE);
280         }
281     }
282
283 *outbuf = L'\0';
284
285 iconv_close(cd);
286 *dst = ob;
287
288 delete[] ob;
289 delete[] ib;
290 }
291 //-----------------------------------------------------------------------------
292 void ConvertFromKOI8(const std::string & src, std::string * dst)
293 {
294 ConvertKOI8(src, dst, FROM_KOI8);
295 }
296 //-----------------------------------------------------------------------------
297 void ResultCallback(bool result, const std::string & reason, void * d)
298 {
299 ResultData * data = static_cast<ResultData *>(d);
300 data->result = result;
301 data->reason = reason;
302 }
303 //-----------------------------------------------------------------------------
304 void RecvAuthByData(bool result, const std::string & reason,
305                     const PARSER_AUTH_BY::INFO & list, void * d)
306 {
307 ResultData * data = static_cast<ResultData *>(d);
308 data->result = result;
309 data->reason = reason;
310
311 if (!result)
312     return;
313
314 for (std::vector<std::string>::const_iterator it = list.begin(); it != list.end(); ++it)
315     std::cout << *it << "\n";
316
317 std::cout << std::endl;
318 }
319 //-----------------------------------------------------------------------------
320 struct StringReqParams
321 {
322     std::string name;
323     RESETABLE<std::string> reqParam;
324     const std::string * value;
325 };
326 //-----------------------------------------------------------------------------
327 void GetUserCallback(bool result, const std::string& reason, const PARSER_GET_USER::INFO & info, void * d)
328 {
329 GetUserData * data = static_cast<GetUserData *>(d);
330 data->result = false;
331 data->reason = reason;
332
333 if (!result)
334     return;
335
336 if (info.login == "")
337     {
338     data->result = false;
339     data->reason = "Invalid login.";
340     return;
341     }
342
343 if (!data->request.cash.res_empty())
344     cout << "cash = " << info.cash << endl;
345
346 if (!data->request.credit.res_empty())
347     cout << "credit = " << info.credit << endl;
348
349 if (!data->request.creditExpire.res_empty())
350     {
351     char buf[32];
352     struct tm brokenTime;
353     time_t tt = info.creditExpire;
354
355     brokenTime.tm_wday = 0;
356     brokenTime.tm_yday = 0;
357     brokenTime.tm_isdst = 0;
358     brokenTime.tm_hour = 0;
359     brokenTime.tm_min = 0;
360     brokenTime.tm_sec = 0;
361
362     gmtime_r(&tt, &brokenTime);
363
364     strftime(buf, 32, "%Y-%m-%d", &brokenTime);
365
366     cout << "creditExpire = " << buf << endl;
367     }
368
369 if (!data->request.down.res_empty())
370     cout << "down = " << info.down << endl;
371
372 if (!data->request.passive.res_empty())
373     cout << "passive = " << info.passive << endl;
374
375 if (!data->request.disableDetailStat.res_empty())
376     cout << "disableDetailStat = " << info.disableDetailStat << endl;
377
378 if (!data->request.alwaysOnline.res_empty())
379     cout << "alwaysOnline = " << info.alwaysOnline << endl;
380
381 if (!data->request.prepaidTraff.res_empty())
382     cout << "prepaidTraff = " << info.prepaidTraff << endl;
383
384 for (int i = 0; i < DIR_NUM; i++)
385     {
386     if (!data->request.sessionUpload[i].res_empty())
387         cout << "session upload for dir " << i << " = " << info.stat.su[i] << endl;
388     if (!data->request.sessionDownload[i].res_empty())
389         cout << "session download for dir " << i << "=" << info.stat.sd[i] << endl;
390     }
391
392 for (int i = 0; i < DIR_NUM; i++)
393     {
394     if (!data->request.monthUpload[i].res_empty())
395         cout << "month upload for dir " << i << " = " << info.stat.mu[i] << endl;
396     if (!data->request.monthDownload[i].res_empty())
397         cout << "month download for dir " << i << " = " << info.stat.md[i] << endl;
398     }
399
400 for (int i = 0; i < USERDATA_NUM; i++)
401     {
402     if (!data->request.userData[i].res_empty())
403         {
404         std::string str;
405         ConvertFromKOI8(info.userData[i], &str);
406         cout << "user data " << i << " = " << str << endl;
407         }
408     }
409
410 StringReqParams strReqParams[] =
411 {
412     {"note",     data->request.note,        &info.note},
413     {"name",     data->request.name,        &info.name},
414     {"address",  data->request.address,     &info.address},
415     {"email",    data->request.email,       &info.email},
416     {"phone",    data->request.phone,       &info.phone},
417     {"group",    data->request.group,       &info.group},
418     {"tariff",   data->request.tariff,      &info.tariff},
419     {"password", data->request.usrPasswd,   &info.password},
420     {"ip",       data->request.ips,         &info.ips} // IP-address of user
421 };
422 for (unsigned i = 0; i < sizeof(strReqParams) / sizeof(StringReqParams); i++)
423     {
424     if (!strReqParams[i].reqParam.res_empty())
425         {
426         string str;
427         ConvertFromKOI8(*strReqParams[i].value, &str);
428         cout << strReqParams[i].name << " = " << str << endl;
429         }
430     }
431 data->result = true;
432 }
433 //-----------------------------------------------------------------------------
434 bool ProcessSetUser(const std::string & server,
435                     int port,
436                     const std::string & login,
437                     const std::string & password,
438                     const std::string & str)
439 {
440 SERVCONF sc(server, port, login, password);
441
442 ResultData data;
443 int res = sc.ChgUser(str.c_str(), ResultCallback, &data);
444
445 if (res == st_ok && data.result)
446     {
447     printf("Ok\n");
448     return false;
449     }
450
451 printf("Error\n");
452 if (res != st_ok)
453     printf("%s\n", sc.GetStrError().c_str());
454 else
455     printf("%s\n", data.reason.c_str());
456 return true;
457 }
458 //-----------------------------------------------------------------------------
459 bool ProcessSendMessage(const std::string & server, uint16_t port,
460                         const std::string & login, const std::string & password,
461                         const std::string & requestString)
462 {
463 SERVCONF sc(server, port, login, password);
464
465 ResultData data;
466 int res = sc.SendMessage(requestString.c_str(), ResultCallback, &data);
467
468 if (res == st_ok && data.result)
469     {
470     printf("Ok\n");
471     return true;
472     }
473
474 printf("Error\n");
475 if (res != st_ok)
476     printf("%s\n", sc.GetStrError().c_str());
477 else
478     printf("%s\n", data.reason.c_str());
479 return false;
480 }
481 //-----------------------------------------------------------------------------
482 bool ProcessGetUser(const std::string &server,
483                     int port,
484                     const std::string &admLogin,
485                     const std::string &admPasswd,
486                     const std::string &login,
487                     REQUEST & request)
488 {
489 SERVCONF sc(server, port, admLogin, admPasswd);
490
491 GetUserData data(request, false);
492 bool res = (sc.GetUser(login.c_str(), GetUserCallback, &data) == st_ok);
493
494 if (res && data.result)
495     {
496     printf("Ok\n");
497     return true;
498     }
499
500 printf("Error\n");
501 if (!res)
502     printf("%s\n", sc.GetStrError().c_str());
503 else
504     printf("%s\n", data.reason.c_str());
505 return false;
506 }
507 //-----------------------------------------------------------------------------
508 bool ProcessAuthBy(const std::string &server,
509                    int port,
510                    const std::string &admLogin,
511                    const std::string &admPasswd,
512                    const std::string &login)
513 {
514 SERVCONF sc(server, port, admLogin, admPasswd);
515
516 ResultData data;
517 bool res = (sc.AuthBy(login.c_str(), RecvAuthByData, &data) == st_ok);
518
519 if (res && data.result)
520     {
521     printf("Ok\n");
522     return true;
523     }
524
525 printf("Error\n");
526 if (!res)
527     printf("%s\n", sc.GetStrError().c_str());
528 else
529     printf("%s\n", data.reason.c_str());
530 return false;
531 }
532 //-----------------------------------------------------------------------------