]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/configuration/sgconfig/parser_admins.h
Use std::lock_guard instead of STG_LOCKER.
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / parser_admins.h
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 #pragma once
23
24 #include "parser.h"
25
26 #include "stg/common.h"
27
28 #include <string>
29 #include <optional>
30
31 namespace STG
32 {
33
34 struct Admins;
35 class Admin;
36
37 namespace PARSER
38 {
39
40 class GET_ADMINS: public BASE_PARSER
41 {
42     public:
43         class FACTORY : public BASE_PARSER::FACTORY
44         {
45             public:
46                 explicit FACTORY(const Admins & admins) : m_admins(admins) {}
47                 BASE_PARSER * create(const Admin & admin) override { return new GET_ADMINS(admin, m_admins); }
48                 static void Register(REGISTRY & registry, const Admins & admins)
49                 { registry[ToLower(tag)] = new FACTORY(admins); }
50             private:
51                 const Admins & m_admins;
52         };
53
54         static const char * tag;
55
56         GET_ADMINS(const Admin & admin, const Admins & admins)
57             : BASE_PARSER(admin, tag), m_admins(admins) {}
58
59     private:
60         const Admins & m_admins;
61
62         void CreateAnswer() override;
63 };
64
65 class ADD_ADMIN: public BASE_PARSER
66 {
67     public:
68         class FACTORY : public BASE_PARSER::FACTORY
69         {
70             public:
71                 explicit FACTORY(Admins & admins) : m_admins(admins) {}
72                 BASE_PARSER * create(const Admin & admin) override { return new ADD_ADMIN(admin, m_admins); }
73                 static void Register(REGISTRY & registry, Admins & admins)
74                 { registry[ToLower(tag)] = new FACTORY(admins); }
75             private:
76                 Admins & m_admins;
77         };
78
79         static const char * tag;
80
81         ADD_ADMIN(const Admin & admin, Admins & admins)
82             : BASE_PARSER(admin, tag), m_admins(admins) {}
83         int Start(void * data, const char * el, const char ** attr) override;
84
85     private:
86         std::string m_admin;
87         Admins & m_admins;
88
89         void CreateAnswer() override;
90 };
91
92 class DEL_ADMIN: public BASE_PARSER
93 {
94     public:
95         class FACTORY : public BASE_PARSER::FACTORY
96         {
97             public:
98                 explicit FACTORY(Admins & admins) : m_admins(admins) {}
99                 BASE_PARSER * create(const Admin & admin) override { return new DEL_ADMIN(admin, m_admins); }
100                 static void Register(REGISTRY & registry, Admins & admins)
101                 { registry[ToLower(tag)] = new FACTORY(admins); }
102             private:
103                 Admins & m_admins;
104         };
105
106         static const char * tag;
107
108         DEL_ADMIN(const Admin & admin, Admins & admins)
109             : BASE_PARSER(admin, tag), m_admins(admins) {}
110         int Start(void * data, const char * el, const char ** attr) override;
111
112     private:
113         std::string m_admin;
114         Admins & m_admins;
115
116         void CreateAnswer() override;
117 };
118
119 class CHG_ADMIN: public BASE_PARSER
120 {
121     public:
122         class FACTORY : public BASE_PARSER::FACTORY
123         {
124             public:
125                 explicit FACTORY(Admins & admins) : m_admins(admins) {}
126                 BASE_PARSER * create(const Admin & admin) override { return new CHG_ADMIN(admin, m_admins); }
127                 static void Register(REGISTRY & registry, Admins & admins)
128                 { registry[ToLower(tag)] = new FACTORY(admins); }
129             private:
130                 Admins & m_admins;
131         };
132
133         static const char * tag;
134
135         CHG_ADMIN(const Admin & admin, Admins & admins)
136             : BASE_PARSER(admin, tag), m_admins(admins) {}
137         int Start(void * data, const char * el, const char ** attr) override;
138
139     private:
140         std::string login;
141         std::optional<std::string> password;
142         std::optional<std::string> privAsString;
143         Admins & m_admins;
144
145         void CreateAnswer() override;
146 };
147
148 } // namespace PARSER
149 } // namespace STG