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>
19 * Author : Maxim Mamontov <faust@stargazer.dp.ua>
24 #include "stg/common.h"
37 bool GetValue<GET_USER::STAT>(const char ** attr, GET_USER::STAT & value)
41 std::map<std::string, long long *> props;
42 for (size_t i = 0; i < DIR_NUM; ++i)
44 props.insert(std::pair<std::string, long long *>("su" + unsigned2str(i), &value.su[i]));
45 props.insert(std::pair<std::string, long long *>("sd" + unsigned2str(i), &value.sd[i]));
46 props.insert(std::pair<std::string, long long *>("mu" + unsigned2str(i), &value.mu[i]));
47 props.insert(std::pair<std::string, long long *>("md" + unsigned2str(i), &value.md[i]));
52 std::string name(ToLower(attr[pos++]));
53 std::map<std::string, long long *>::iterator it(props.find(name));
54 if (it != props.end())
55 if (str2x(attr[pos++], *it->second) < 0)
63 GET_USER::PARSER::PARSER(CALLBACK f, void * d)
69 AddParser(propertyParsers, "login", info.login);
70 AddParser(propertyParsers, "password", info.password);
71 AddParser(propertyParsers, "cash", info.cash);
72 AddParser(propertyParsers, "credit", info.credit);
73 AddParser(propertyParsers, "creditExpire", info.creditExpire);
74 AddParser(propertyParsers, "lastCash", info.lastCash);
75 AddParser(propertyParsers, "prepaidTraff", info.prepaidTraff);
76 AddParser(propertyParsers, "down", info.down);
77 AddParser(propertyParsers, "passive", info.passive);
78 AddParser(propertyParsers, "disableDetailStat", info.disableDetailStat);
79 AddParser(propertyParsers, "connected", info.connected);
80 AddParser(propertyParsers, "aonline", info.alwaysOnline);
81 AddParser(propertyParsers, "currIP", info.ip, GetIPValue);
82 AddParser(propertyParsers, "ip", info.ips);
83 AddParser(propertyParsers, "tariff", info.tariff);
84 AddParser(propertyParsers, "group", info.group, GetEncodedValue);
85 AddParser(propertyParsers, "note", info.note, GetEncodedValue);
86 AddParser(propertyParsers, "email", info.email, GetEncodedValue);
87 AddParser(propertyParsers, "name", info.name, GetEncodedValue);
88 AddParser(propertyParsers, "address", info.address, GetEncodedValue);
89 AddParser(propertyParsers, "phone", info.phone, GetEncodedValue);
90 AddParser(propertyParsers, "traff", info.stat);
92 for (size_t i = 0; i < USERDATA_NUM; ++i)
93 AddParser(propertyParsers, "userData" + unsigned2str(i), info.userData[i], GetEncodedValue);
95 //-----------------------------------------------------------------------------
96 GET_USER::PARSER::~PARSER()
98 PROPERTY_PARSERS::iterator it(propertyParsers.begin());
99 while (it != propertyParsers.end())
100 delete (it++)->second;
102 //-----------------------------------------------------------------------------
103 int GET_USER::PARSER::ParseStart(const char * el, const char ** attr)
109 if (depth == 2 && parsingAnswer)
110 ParseUserParams(el, attr);
114 //-----------------------------------------------------------------------------
115 void GET_USER::PARSER::ParseEnd(const char * /*el*/)
118 if (depth == 0 && parsingAnswer)
121 callback(error.empty(), error, info, data);
123 parsingAnswer = false;
126 //-----------------------------------------------------------------------------
127 void GET_USER::PARSER::ParseUser(const char * el, const char ** attr)
129 if (strcasecmp(el, "user") == 0)
131 if (attr && attr[0] && attr[1])
133 if (strcasecmp(attr[1], "error") == 0)
135 if (attr[2] && attr[3])
138 error = "User not found.";
141 parsingAnswer = true;
144 parsingAnswer = true;
147 //-----------------------------------------------------------------------------
148 void GET_USER::PARSER::ParseUserParams(const char * el, const char ** attr)
150 if (!TryParse(propertyParsers, ToLower(el), attr))
151 error = "Invalid parameter.";