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>
23 $Date: 2010/08/04 00:40:00 $
30 #include <sys/types.h>
31 #include <sys/socket.h>
32 #include <netinet/in.h>
33 #include <arpa/inet.h>
36 #include "stg/common.h"
37 #include "stg/const.h"
38 #include "stg/servconf.h"
42 //-----------------------------------------------------------------------------
43 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
45 PARSER_GET_USERS::PARSER_GET_USERS()
46 : RecvUserDataCb(NULL),
53 //-----------------------------------------------------------------------------
54 int PARSER_GET_USERS::ParseStart(const char *el, const char **attr)
69 ParseUserParams(el, attr);
73 //-----------------------------------------------------------------------------
74 void PARSER_GET_USERS::ParseEnd(const char *)
81 RecvUserDataCb(&user, userDataCb);
85 //-----------------------------------------------------------------------------
86 void PARSER_GET_USERS::ParseUsers(const char * el, const char ** attr)
88 if (strcasecmp(el, "users") == 0)
95 //-----------------------------------------------------------------------------
96 void PARSER_GET_USERS::ParseUser(const char * el, const char ** attr)
100 if (strcasecmp(el, "user") != 0)
105 if (strcasecmp(attr[0], "login") != 0)
109 user.login = attr[1];
112 //-----------------------------------------------------------------------------
113 void PARSER_GET_USERS::ParseUserParams(const char * el, const char ** attr)
115 if (strcasecmp(el, "cash") == 0)
117 if (strtodouble2(attr[1], user.cash) < 0)
123 /*if (strcasecmp(el, "LastCash") == 0)
125 if (strtodouble2(attr[1], user.lastCash) < 0)
127 MessageDlg("Error in answer", mtError, TMsgDlgButtons() << mbOK, 0);
132 /*if (strcasecmp(el, "LastActivityTime") == 0)
134 if (strtol(attr[1], user.lastActivityTime) < 0)
136 MessageDlg("Error in answer", mtError, TMsgDlgButtons() << mbOK, 0);
142 /*if (strcasecmp(el, "LastTimeCash") == 0)
144 if (strtol(attr[1], user.lastTimeCash) < 0)
146 MessageDlg("Error in answer", mtError, TMsgDlgButtons() << mbOK, 0);
151 /*if (strcasecmp(el, "CashExpire") == 0)
153 if (strtol(attr[1], user.cashExpire) < 0)
155 MessageDlg("Error in answer", mtError, TMsgDlgButtons() << mbOK, 0);
160 if (strcasecmp(el, "credit") == 0)
162 if (strtodouble2(attr[1], user.credit) < 0)
168 if (strcasecmp(el, "creditExpire") == 0)
170 if (str2x(attr[1], user.creditExpire) < 0)
176 /*if (strcasecmp(el, "freemb") == 0)
178 if (strtodouble2(attr[1], user.freeMb) < 0)
180 MessageDlg("Error in answer", mtError, TMsgDlgButtons() << mbOK, 0);
185 if (strcasecmp(el, "down") == 0)
187 if (str2x(attr[1], user.down) < 0)
193 if (strcasecmp(el, "passive") == 0)
195 if (str2x(attr[1], user.passive) < 0)
201 if (strcasecmp(el, "disableDetailStat") == 0)
203 if (str2x(attr[1], user.disableDetailStat) < 0)
210 if (strcasecmp(el, "status") == 0)
212 if (str2x(attr[1], user.connected) < 0)
218 if (strcasecmp(el, "aonline") == 0)
220 if (str2x(attr[1], user.alwaysOnline) < 0)
226 if (strcasecmp(el, "currip") == 0)
228 user.ip = inet_addr(attr[1]);
231 if (strcasecmp(el, "ip") == 0)
237 if (strcasecmp(el, "tariff") == 0)
239 //KOIToWin(user.tariff, *(attr+1), TARIFF_LEN);
240 user.tariff = attr[1];
244 if (strcasecmp(el, "password") == 0)
246 user.password = *(attr+1);
250 if (strcasecmp(el, "iface") == 0)
252 user.iface = attr[1];
256 /*if (strcasecmp(el, "name") == 0)
258 / *char nameEnc[REALNM_LEN * 2 + 1];
259 char name[REALNM_LEN];
260 strncpy(nameEnc, attr[1], REALNM_LEN * 2 + 1);
261 Decode21(name, nameEnc);
262 KOIToWin(user.realName, name, REALNM_LEN);* /
263 Decode21str(user.realName, attr[1]);
267 if (strcasecmp(el, "address") == 0)
269 /*char addressEnc[ADDR_LEN * 2 + 1];
270 char address[ADDR_LEN];
271 strncpy(addressEnc, attr[1], ADDR_LEN * 2 + 1);
272 Decode21(address, addressEnc);
273 KOIToWin(user.address, address, ADDR_LEN);*/
274 Decode21str(user.address, attr[1]);
278 if (strcasecmp(el, "phone") == 0)
280 /*char phoneEnc[PHONE_LEN * 2 + 1];
281 char phone[PHONE_LEN];
282 strncpy(phoneEnc, attr[1], PHONE_LEN * 2 + 1);
283 Decode21(phone, phoneEnc);
284 KOIToWin(user.phone, phone, PHONE_LEN);*/
285 Decode21str(user.phone, attr[1]);
289 if (strcasecmp(el, "note") == 0)
291 /*char noteEnc[NOTE_LEN * 2 + 1];
293 strncpy(noteEnc, attr[1], NOTE_LEN * 2 + 1);*/
294 //KOIToWin(user.note, note, NOTE_LEN);
296 Decode21str(user.note, attr[1]);
300 if (strcasecmp(el, "email") == 0)
302 /*char emailEnc[EMAIL_LEN * 2 + 1];
303 char email[EMAIL_LEN];
304 strncpy(emailEnc, attr[1], EMAIL_LEN * 2 + 1);
305 Decode21(email, emailEnc);
306 //KOIToWin(user.email, email, EMAIL_LEN);
307 user.email = email;*/
308 Decode21str(user.email, attr[1]);
312 if (strcasecmp(el, "group") == 0)
314 /*char groupEnc[GROUP_LEN * 2 + 1];
315 char group[GROUP_LEN];
316 strncpy(groupEnc, attr[1], GROUP_LEN * 2 + 1);
317 Decode21(group, groupEnc);
318 //KOIToWin(user.group, group, GROUP_LEN);
319 user.group = group;*/
320 Decode21str(user.group, attr[1]);
324 if (strcasecmp(el, "traff") == 0)
326 ParseUserLoadStat(el, attr);
331 //-----------------------------------------------------------------------------
332 void PARSER_GET_USERS::ParseUserLoadStat(const char *, const char ** attr)
338 for (int j = 0; j < DIR_NUM; j++)
340 sprintf(dir, "MU%d", j);
341 if (strcasecmp(dir, attr[i]) == 0)
343 str2x(attr[i+1], user.stat.mu[j]);
347 for (int j = 0; j < DIR_NUM; j++)
349 sprintf(dir, "MD%d", j);
350 if (strcasecmp(dir, attr[i]) == 0)
352 str2x(attr[i+1], user.stat.md[j]);
356 for (int j = 0; j < DIR_NUM; j++)
358 sprintf(dir, "SU%d", j);
359 if (strcasecmp(dir, attr[i]) == 0)
361 str2x(attr[i+1], user.stat.su[j]);
365 for (int j = 0; j < DIR_NUM; j++)
367 sprintf(dir, "SD%d", j);
368 if (strcasecmp(dir, attr[i]) == 0)
370 str2x(attr[i+1], user.stat.sd[j]);
378 //-----------------------------------------------------------------------------
379 void PARSER_GET_USERS::SetUserDataRecvCb(RecvUserDataCb_t f, void * data)
384 //-----------------------------------------------------------------------------
385 //-----------------------------------------------------------------------------
386 //-----------------------------------------------------------------------------
387 PARSER_CHG_USER::PARSER_CHG_USER()
388 : RecvChgUserCb(NULL),
394 //-----------------------------------------------------------------------------
395 int PARSER_CHG_USER::ParseStart(const char *el, const char **attr)
400 if (strcasecmp(el, "SetUser") == 0)
402 ParseAnswer(el, attr);
404 else if (strcasecmp(el, "DelUser") == 0)
406 ParseAnswer(el, attr);
408 else if (strcasecmp(el, "AddUser") == 0)
410 ParseAnswer(el, attr);
415 //-----------------------------------------------------------------------------
416 void PARSER_CHG_USER::ParseEnd(const char *)
420 //-----------------------------------------------------------------------------
421 void PARSER_CHG_USER::ParseAnswer(const char *, const char **attr)
425 RecvChgUserCb(attr[1], chgUserCbData);
428 //-----------------------------------------------------------------------------
429 void PARSER_CHG_USER::SetChgUserRecvCb(RecvChgUserCb_t f, void * data)
432 chgUserCbData = data;
434 //-----------------------------------------------------------------------------
435 //-----------------------------------------------------------------------------
436 //-----------------------------------------------------------------------------
437 PARSER_SEND_MESSAGE::PARSER_SEND_MESSAGE()
438 : RecvSendMessageCb(NULL),
439 sendMessageCbData(NULL),
444 //-----------------------------------------------------------------------------
445 int PARSER_SEND_MESSAGE::ParseStart(const char *el, const char **attr)
450 if (strcasecmp(el, "SendMessageResult") == 0)
452 ParseAnswer(el, attr);
457 //-----------------------------------------------------------------------------
458 void PARSER_SEND_MESSAGE::ParseEnd(const char *)
462 //-----------------------------------------------------------------------------
463 void PARSER_SEND_MESSAGE::ParseAnswer(const char *, const char **attr)
465 if (RecvSendMessageCb)
466 RecvSendMessageCb(attr[1], sendMessageCbData);
468 //-----------------------------------------------------------------------------
469 void PARSER_SEND_MESSAGE::SetSendMessageRecvCb(RecvSendMessageCb_t f, void * data)
471 RecvSendMessageCb = f;
472 sendMessageCbData = data;
474 //-----------------------------------------------------------------------------