]> git.stg.codes - stg.git/blob - stglibs/srvconf.lib/parsers/get_admin.cpp
Merge branch 'fix-gts-auth-errors'
[stg.git] / stglibs / srvconf.lib / parsers / get_admin.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 : Maxim Mamontov <faust@stargazer.dp.ua>
19  */
20
21 #include "get_admin.h"
22
23 #include "stg/common.h"
24
25 #include <map>
26 #include <utility>
27
28 #include <strings.h>
29
30 using namespace STG;
31
32 namespace STG
33 {
34
35 template <>
36 inline
37 bool GetValue<PRIV>(const char ** attr, PRIV & value)
38 {
39 uint32_t priv;
40 if (!GetValue(attr, priv))
41     return false;
42 value = priv;
43 return true;
44 }
45
46 } // namespace STG
47
48 GET_ADMIN::PARSER::PARSER(CALLBACK f, void * d)
49     : callback(f),
50       data(d),
51       depth(0),
52       parsingAnswer(false)
53 {
54     AddParser(propertyParsers, "login", info.login);
55     AddParser(propertyParsers, "password", info.password);
56     AddParser(propertyParsers, "priv", info.priv);
57 }
58 //-----------------------------------------------------------------------------
59 GET_ADMIN::PARSER::~PARSER()
60 {
61     PROPERTY_PARSERS::iterator it(propertyParsers.begin());
62     while (it != propertyParsers.end())
63         delete (it++)->second;
64 }
65 //-----------------------------------------------------------------------------
66 int GET_ADMIN::PARSER::ParseStart(const char * el, const char ** attr)
67 {
68 depth++;
69 if (depth == 1)
70     ParseAdmin(el, attr);
71
72 if (depth == 2 && parsingAnswer)
73     ParseAdminParams(el, attr);
74
75 return 0;
76 }
77 //-----------------------------------------------------------------------------
78 void GET_ADMIN::PARSER::ParseEnd(const char * /*el*/)
79 {
80 depth--;
81 if (depth == 0 && parsingAnswer)
82     {
83     if (callback)
84         callback(error.empty(), error, info, data);
85     error.clear();
86     parsingAnswer = false;
87     }
88 }
89 //-----------------------------------------------------------------------------
90 void GET_ADMIN::PARSER::ParseAdmin(const char * el, const char ** attr)
91 {
92 if (strcasecmp(el, "admin") == 0)
93     {
94     if (attr && attr[0] && attr[1])
95         {
96         if (strcasecmp(attr[1], "error") == 0)
97             {
98             if (attr[2] && attr[3])
99                 error = attr[3];
100             else
101                 error = "Admin not found.";
102             }
103         else
104             parsingAnswer = true;
105         }
106     else
107         parsingAnswer = true;
108     }
109 }
110 //-----------------------------------------------------------------------------
111 void GET_ADMIN::PARSER::ParseAdminParams(const char * el, const char ** attr)
112 {
113 if (!TryParse(propertyParsers, ToLower(el), attr))
114     error = "Invalid parameter.";
115 }