]> git.stg.codes - stg.git/blob - libs/srvconf/parsers/auth_by.cpp
Use std::lock_guard instead of STG_LOCKER.
[stg.git] / libs / srvconf / parsers / auth_by.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 "auth_by.h"
22
23 #include <strings.h> // strcasecmp
24
25 using namespace STG;
26
27 AuthBy::Parser::Parser(Callback f, void* d, const std::string& e)
28     : callback(f),
29       data(d),
30       encoding(e),
31       depth(0),
32       parsingAnswer(false)
33 {
34 }
35 //-----------------------------------------------------------------------------
36 int AuthBy::Parser::ParseStart(const char* el, const char** attr)
37 {
38     depth++;
39     if (depth == 1)
40     {
41         if (strcasecmp(el, "AuthorizedBy") == 0)
42             if (attr && attr[0] && attr[1])
43             {
44                 if (strcasecmp(attr[1], "error") == 0)
45                 {
46                     if (attr[2] && attr[3])
47                         error = attr[3];
48                     else
49                         error = "User not found.";
50                 }
51                 else
52                     parsingAnswer = true;
53             }
54     }
55     else
56     {
57         if (depth == 2)
58         {
59             if (parsingAnswer && strcasecmp(el, "Auth") == 0)
60             {
61                 if (attr && attr[0] && attr[1] && strcasecmp(attr[0], "name") == 0)
62                     info.push_back(attr[1]);
63                 return 0;
64             }
65         }
66     }
67     return 0;
68 }
69 //-----------------------------------------------------------------------------
70 void AuthBy::Parser::ParseEnd(const char* /*el*/)
71 {
72     depth--;
73     if (depth == 0)
74     {
75         if (callback)
76             callback(error.empty(), error, info, data);
77         info.clear();
78         error.clear();
79     }
80 }