]> git.stg.codes - stg.git/blob - stglibs/srvconf.lib/servconf.cpp
Implemented add-user and chg-user.
[stg.git] / stglibs / srvconf.lib / servconf.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  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
20  */
21
22 #include "stg/servconf.h"
23
24 #include "netunit.h"
25
26 #include "parsers/simple.h"
27 #include "parsers/get_container.h"
28
29 #include "parsers/server_info.h"
30
31 #include "parsers/get_admin.h"
32 #include "parsers/chg_admin.h"
33
34 #include "parsers/get_tariff.h"
35 #include "parsers/chg_tariff.h"
36
37 #include "parsers/auth_by.h"
38 #include "parsers/get_user.h"
39 #include "parsers/chg_user.h"
40
41 #include "parsers/get_service.h"
42 #include "parsers/chg_service.h"
43
44 #include "parsers/get_corp.h"
45 #include "parsers/chg_corp.h"
46
47 #include "parsers/base.h"
48
49 #include "stg/common.h"
50
51 #include <cstdio>
52 #include <cstring>
53
54 #include <expat.h>
55
56 using namespace STG;
57
58 class SERVCONF::IMPL
59 {
60 public:
61     IMPL(const std::string & server, uint16_t port,
62          const std::string & login, const std::string & password);
63     ~IMPL() { XML_ParserFree(parser); }
64
65     const std::string & GetStrError() const;
66     static void Start(void * data, const char * el, const char ** attr);
67     static void End(void * data, const char * el);
68
69     int RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data);
70
71     template <class P, typename C>
72     int Exec(const std::string & request, C callback, void * data)
73     {
74         P cp(callback, data);
75         return ExecImpl(request, cp);
76     }
77
78     template <class P, typename C>
79     int Exec(const std::string & tag, const std::string & request, C callback, void * data)
80     {
81         P cp(tag, callback, data);
82         return ExecImpl(request, cp);
83     }
84
85 private:
86     NETTRANSACT nt;
87
88     std::string errorMsg;
89     XML_Parser parser;
90
91     static bool ParserRecv(const std::string & chunk, bool final, void * data);
92     static bool SimpleRecv(const std::string & chunk, bool final, void * data);
93     int ExecImpl(const std::string & request, PARSER & cp);
94 };
95
96 bool SERVCONF::IMPL::ParserRecv(const std::string & chunk, bool final, void * data)
97 {
98 SERVCONF::IMPL * sc = static_cast<SERVCONF::IMPL *>(data);
99
100 if (XML_Parse(sc->parser, chunk.c_str(), chunk.length(), final) == XML_STATUS_ERROR)
101     {
102     strprintf(&sc->errorMsg, "XML parse error at line %d: %s",
103               static_cast<int>(XML_GetCurrentLineNumber(sc->parser)),
104               XML_ErrorString(XML_GetErrorCode(sc->parser)));
105     printf("%s\n", sc->errorMsg.c_str());
106     return false;
107     }
108
109 return true;
110 }
111
112 bool SERVCONF::IMPL::SimpleRecv(const std::string & chunk, bool /*final*/, void * data)
113 {
114 *static_cast<std::string *>(data) += chunk;
115 return true;
116 }
117
118 SERVCONF::SERVCONF(const std::string & server, uint16_t port,
119                    const std::string & login, const std::string & password)
120     : pImpl(new IMPL(server, port, login, password))
121 {
122 }
123
124 SERVCONF::~SERVCONF()
125 {
126 delete pImpl;
127 }
128
129 int SERVCONF::ServerInfo(SERVER_INFO::CALLBACK f, void * data)
130 {
131 return pImpl->Exec<SERVER_INFO::PARSER>("<GetServerInfo/>", f, data);
132 }
133
134 int SERVCONF::RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data)
135 {
136 return pImpl->RawXML(request, f, data);
137 }
138
139 // -- Admins --
140
141 int SERVCONF::GetAdmins(GET_CONTAINER::CALLBACK<GET_ADMIN::INFO>::TYPE f, void * data)
142 {
143 return pImpl->Exec<GET_CONTAINER::PARSER<GET_ADMIN::PARSER> >("admins", "<GetAdmins/>", f, data);
144 }
145
146 int SERVCONF::GetAdmin(const std::string & login, GET_ADMIN::CALLBACK f, void * data)
147 {
148 return pImpl->Exec<GET_ADMIN::PARSER>("<GetAdmin login=\"" + login + "\"/>", f, data);
149 }
150
151 int SERVCONF::ChgAdmin(const ADMIN_CONF_RES & conf, SIMPLE::CALLBACK f, void * data)
152 {
153 return pImpl->Exec<SIMPLE::PARSER>("ChgAdmin", "<ChgAdmin" + CHG_ADMIN::Serialize(conf) + "/>", f, data);
154 }
155
156 int SERVCONF::AddAdmin(const std::string & login,
157                        const ADMIN_CONF_RES & conf,
158                        SIMPLE::CALLBACK f, void * data)
159 {
160 int res = pImpl->Exec<SIMPLE::PARSER>("AddAdmin", "<AddAdmin login=\"" + login + "\"/>", f, data);
161 if (res != st_ok)
162     return res;
163 return pImpl->Exec<SIMPLE::PARSER>("ChgAdmin", "<ChgAdmin" + CHG_ADMIN::Serialize(conf) + "/>", f, data);
164 }
165
166 int SERVCONF::DelAdmin(const std::string & login, SIMPLE::CALLBACK f, void * data)
167 {
168 return pImpl->Exec<SIMPLE::PARSER>("DelAdmin", "<DelAdmin login=\"" + login + "\"/>", f, data);
169 }
170
171 // -- Tariffs --
172
173 int SERVCONF::GetTariffs(GET_CONTAINER::CALLBACK<GET_TARIFF::INFO>::TYPE f, void * data)
174 {
175 return pImpl->Exec<GET_CONTAINER::PARSER<GET_TARIFF::PARSER> >("tariffs", "<GetTariffs/>", f, data);
176 }
177
178 int SERVCONF::GetTariff(const std::string & name, GET_TARIFF::CALLBACK f, void * data)
179 {
180 return pImpl->Exec<GET_TARIFF::PARSER>("<GetTariff name=\"" + name + "\"/>", f, data);
181 }
182
183 int SERVCONF::ChgTariff(const TARIFF_DATA_RES & tariffData, SIMPLE::CALLBACK f, void * data)
184 {
185 return pImpl->Exec<SIMPLE::PARSER>("SetTariff", "<SetTariff name=\"" + tariffData.tariffConf.name.data() + "\">" + CHG_TARIFF::Serialize(tariffData) + "</SetTariff>", f, data);
186 }
187
188 int SERVCONF::AddTariff(const std::string & name,
189                        const TARIFF_DATA_RES & tariffData,
190                        SIMPLE::CALLBACK f, void * data)
191 {
192 int res = pImpl->Exec<SIMPLE::PARSER>("AddTariff", "<AddTariff name=\"" + name + "\"/>", f, data);
193 if (res != st_ok)
194     return res;
195 return pImpl->Exec<SIMPLE::PARSER>("SetTariff", "<SetTariff name=\"" + name + "\">" + CHG_TARIFF::Serialize(tariffData) + "</SetTariff>", f, data);
196 }
197
198 int SERVCONF::DelTariff(const std::string & name, SIMPLE::CALLBACK f, void * data)
199 {
200 return pImpl->Exec<SIMPLE::PARSER>("DelTariff", "<DelTariff name=\"" + name + "\"/>", f, data);
201 }
202
203 // -- Users --
204
205 int SERVCONF::GetUsers(GET_CONTAINER::CALLBACK<GET_USER::INFO>::TYPE f, void * data)
206 {
207 return pImpl->Exec<GET_CONTAINER::PARSER<GET_USER::PARSER> >("users", "<GetUsers/>", f, data);
208 }
209
210 int SERVCONF::GetUser(const std::string & login, GET_USER::CALLBACK f, void * data)
211 {
212 return pImpl->Exec<GET_USER::PARSER>("<GetUser login=\"" + login + "\"/>", f, data);
213 }
214
215 int SERVCONF::ChgUser(const std::string & login,
216                       const USER_CONF_RES & conf,
217                       const USER_STAT_RES & stat,
218                       SIMPLE::CALLBACK f, void * data)
219 {
220 return pImpl->Exec<CHG_USER::PARSER>("<SetUser><Login value=\"" + login + "\"/>" + CHG_USER::Serialize(conf, stat) + "</SetUser>", f, data);
221 }
222
223 int SERVCONF::DelUser(const std::string & login, SIMPLE::CALLBACK f, void * data)
224 {
225 return pImpl->Exec<SIMPLE::PARSER>("DelUser", "<DelUser login=\"" + login + "\"/>", f, data);
226 }
227
228 int SERVCONF::AddUser(const std::string & login,
229                       const USER_CONF_RES & conf,
230                       const USER_STAT_RES & stat,
231                       SIMPLE::CALLBACK f, void * data)
232 {
233 int res = pImpl->Exec<SIMPLE::PARSER>("AddUser", "<AddUser><Login value=\"" + login + "\"/></AddUser>", f, data);
234 if (res != st_ok)
235     return res;
236 return pImpl->Exec<CHG_USER::PARSER>("<SetUser><Login value=\"" + login + "\"/>" + CHG_USER::Serialize(conf, stat) + "</SetUser>", f, data);
237 }
238
239 int SERVCONF::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data)
240 {
241 return pImpl->Exec<AUTH_BY::PARSER>("<GetUserAuthBy login=\"" + login + "\"/>", f, data);
242 }
243
244 int SERVCONF::SendMessage(const std::string & login, const std::string & text, SIMPLE::CALLBACK f, void * data)
245 {
246 return pImpl->Exec<SIMPLE::PARSER>("SendMessageResult", "<Message login=\"" + login + "\" msgver=\"1\" msgtype=\"1\" repeat=\"0\" repeatperiod=\"0\" showtime=\"0\" text=\"" + Encode12str(text) + "\"/>", f, data);
247 }
248
249 int SERVCONF::CheckUser(const std::string & login, const std::string & password, SIMPLE::CALLBACK f, void * data)
250 {
251 return pImpl->Exec<SIMPLE::PARSER>("CheckUser", "<CheckUser login=\"" + login + "\" password=\"" + password + "\"/>", f, data);
252 }
253
254 // -- Services --
255
256 int SERVCONF::GetServices(GET_CONTAINER::CALLBACK<GET_SERVICE::INFO>::TYPE f, void * data)
257 {
258 return pImpl->Exec<GET_CONTAINER::PARSER<GET_SERVICE::PARSER> >("services", "<GetServices/>", f, data);
259 }
260
261 int SERVCONF::GetService(const std::string & name, GET_SERVICE::CALLBACK f, void * data)
262 {
263 return pImpl->Exec<GET_SERVICE::PARSER>("<GetService name=\"" + name + "\"/>", f, data);
264 }
265
266 int SERVCONF::ChgService(const SERVICE_CONF_RES & conf, SIMPLE::CALLBACK f, void * data)
267 {
268 return pImpl->Exec<SIMPLE::PARSER>("SetService", "<SetService name=\"" + conf.name.data() + "\">" + CHG_SERVICE::Serialize(conf) + "</SetService>", f, data);
269 }
270
271 int SERVCONF::AddService(const std::string & name,
272                          const SERVICE_CONF_RES & conf,
273                          SIMPLE::CALLBACK f, void * data)
274 {
275 int res = pImpl->Exec<SIMPLE::PARSER>("AddService", "<AddService name=\"" + name + "\"/>", f, data);
276 if (res != st_ok)
277     return res;
278 return pImpl->Exec<SIMPLE::PARSER>("SetService", "<SetService name=\"" + name + "\">" + CHG_SERVICE::Serialize(conf) + "</SetService>", f, data);
279 }
280
281 int SERVCONF::DelService(const std::string & name, SIMPLE::CALLBACK f, void * data)
282 {
283 return pImpl->Exec<SIMPLE::PARSER>("DelService", "<DelService name=\"" + name + "\"/>", f, data);
284 }
285
286 // -- Corporations --
287
288 int SERVCONF::GetCorporations(GET_CONTAINER::CALLBACK<GET_CORP::INFO>::TYPE f, void * data)
289 {
290 return pImpl->Exec<GET_CONTAINER::PARSER<GET_CORP::PARSER> >("corporations", "<GetCorporations/>", f, data);
291 }
292
293 int SERVCONF::GetCorp(const std::string & name, GET_CORP::CALLBACK f, void * data)
294 {
295 return pImpl->Exec<GET_CORP::PARSER>("<GetCorp name=\"" + name + "\"/>", f, data);
296 }
297
298 int SERVCONF::ChgCorp(const CORP_CONF_RES & conf, SIMPLE::CALLBACK f, void * data)
299 {
300 return pImpl->Exec<SIMPLE::PARSER>("SetCorp", "<SetCorp name=\"" + conf.name.data() + "\">" + CHG_CORP::Serialize(conf) + "</SetCorp>", f, data);
301 }
302
303 int SERVCONF::AddCorp(const std::string & name,
304                       const CORP_CONF_RES & conf,
305                       SIMPLE::CALLBACK f, void * data)
306 {
307 int res = pImpl->Exec<SIMPLE::PARSER>("AddCorp", "<AddCorp name=\"" + name + "\"/>", f, data);
308 if (res != st_ok)
309     return res;
310 return pImpl->Exec<SIMPLE::PARSER>("SetCorp", "<SetCorp name=\"" + name + "\">" + CHG_CORP::Serialize(conf) + "</SetCorp>", f, data);
311 }
312
313 int SERVCONF::DelCorp(const std::string & name, SIMPLE::CALLBACK f, void * data)
314 {
315 return pImpl->Exec<SIMPLE::PARSER>("DelCorp", "<DelCorp name=\"" + name + "\"/>", f, data);
316 }
317
318 const std::string & SERVCONF::GetStrError() const
319 {
320 return pImpl->GetStrError();
321 }
322
323 //-----------------------------------------------------------------------------
324 SERVCONF::IMPL::IMPL(const std::string & server, uint16_t port,
325                      const std::string & login, const std::string & password)
326     : nt( server, port, login, password )
327 {
328 parser = XML_ParserCreate(NULL);
329 }
330 //-----------------------------------------------------------------------------
331 void SERVCONF::IMPL::Start(void * data, const char * el, const char ** attr)
332 {
333 PARSER * currParser = static_cast<PARSER *>(data);
334 currParser->ParseStart(el, attr);
335 }
336 //-----------------------------------------------------------------------------
337 void SERVCONF::IMPL::End(void * data, const char * el)
338 {
339 PARSER * currParser = static_cast<PARSER *>(data);
340 currParser->ParseEnd(el);
341 }
342 //-----------------------------------------------------------------------------
343 const std::string & SERVCONF::IMPL::GetStrError() const
344 {
345 return errorMsg;
346 }
347 //-----------------------------------------------------------------------------
348 int SERVCONF::IMPL::ExecImpl(const std::string & request, PARSER & cp)
349 {
350 XML_ParserReset(parser, NULL);
351 XML_SetElementHandler(parser, Start, End);
352 XML_SetUserData(parser, &cp);
353
354 int ret = 0;
355 if ((ret = nt.Connect()) != st_ok)
356     {
357     errorMsg = nt.GetError();
358     cp.Failure(errorMsg);
359     return ret;
360     }
361 if ((ret = nt.Transact(request, ParserRecv, this)) != st_ok)
362     {
363     errorMsg = nt.GetError();
364     cp.Failure(errorMsg);
365     return ret;
366     }
367
368 nt.Disconnect();
369 return st_ok;
370 }
371
372 int SERVCONF::IMPL::RawXML(const std::string & request, RAW_XML::CALLBACK callback, void * data)
373 {
374 int ret = 0;
375 if ((ret = nt.Connect()) != st_ok)
376     {
377     errorMsg = nt.GetError();
378     callback(false, errorMsg, "", data);
379     return ret;
380     }
381 std::string response;
382 if ((ret = nt.Transact(request, SimpleRecv, &response)) != st_ok)
383     {
384     errorMsg = nt.GetError();
385     callback(false, errorMsg, "", data);
386     return ret;
387     }
388
389 nt.Disconnect();
390 callback(true, "", response, data);
391 return st_ok;
392 }