]> git.stg.codes - stg.git/blob - stargazer/plugins/store/firebird/firebird_store_admins.cpp
Public interfaces: part 3
[stg.git] / stargazer / plugins / store / firebird / firebird_store_admins.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 /*
22  *  Administrators manipulation methods
23  *
24  *  $Revision: 1.11 $
25  *  $Date: 2008/12/04 17:10:06 $
26  *
27  */
28
29 #include "firebird_store.h"
30
31 #include "stg/ibpp.h"
32 #include "stg/admin_conf.h"
33 #include "stg/blowfish.h"
34 #include "stg/common.h"
35
36 #include <string>
37 #include <vector>
38
39 #define adm_enc_passwd "cjeifY8m3"
40
41 //-----------------------------------------------------------------------------
42 int FIREBIRD_STORE::GetAdminsList(std::vector<std::string> * adminsList) const
43 {
44 STG_LOCKER lock(&mutex);
45
46 IBPP::Transaction tr = IBPP::TransactionFactory(db, IBPP::amRead, til, tlr);
47 IBPP::Statement st = IBPP::StatementFactory(db, tr);
48
49 std::string login;
50
51 try
52     {
53     tr->Start();
54     st->Execute("select login from tb_admins");
55     while (st->Fetch())
56         {
57         st->Get(1, login);
58         adminsList->push_back(login);
59         }
60     tr->Commit();
61     }
62
63 catch (IBPP::Exception & ex)
64     {
65     tr->Rollback();
66     strError = "IBPP exception";
67     printfd(__FILE__, ex.what());
68     return -1;
69     }
70
71 return 0;
72 }
73 //-----------------------------------------------------------------------------
74 int FIREBIRD_STORE::SaveAdmin(const STG::AdminConf & ac) const
75 {
76 STG_LOCKER lock(&mutex);
77
78 IBPP::Transaction tr = IBPP::TransactionFactory(db, IBPP::amWrite, til, tlr);
79 IBPP::Statement st = IBPP::StatementFactory(db, tr);
80
81 char encodedPass[2 * ADM_PASSWD_LEN + 2];
82 char cryptedPass[ADM_PASSWD_LEN + 1];
83 char adminPass[ADM_PASSWD_LEN + 1];
84 BLOWFISH_CTX ctx;
85
86 memset(cryptedPass, 0, ADM_PASSWD_LEN + 1);
87 strncpy(adminPass, ac.password.c_str(), ADM_PASSWD_LEN);
88 InitContext(adm_enc_passwd, sizeof(adm_enc_passwd), &ctx);
89
90 for (int i = 0; i < ADM_PASSWD_LEN / 8; i++)
91     EncryptBlock(cryptedPass + 8 * i, adminPass + 8 * i, &ctx);
92
93 cryptedPass[ADM_PASSWD_LEN] = 0;
94 Encode12(encodedPass, cryptedPass, ADM_PASSWD_LEN);
95
96 try
97     {
98     tr->Start();
99     st->Prepare("update tb_admins set passwd=?, \
100                chg_conf=?, \
101                chg_password=?, \
102                chg_stat=?, \
103                chg_cash=?, \
104                usr_add_del=?, \
105                chg_tariff=?, \
106                chg_admin=? \
107                where login=?");
108     st->Set(1, encodedPass);
109     st->Set(2, static_cast<int16_t>(ac.priv.userConf));
110     st->Set(3, static_cast<int16_t>(ac.priv.userPasswd));
111     st->Set(4, static_cast<int16_t>(ac.priv.userStat));
112     st->Set(5, static_cast<int16_t>(ac.priv.userCash));
113     st->Set(6, static_cast<int16_t>(ac.priv.userAddDel));
114     st->Set(7, static_cast<int16_t>(ac.priv.tariffChg));
115     st->Set(8, static_cast<int16_t>(ac.priv.adminChg));
116     st->Set(9, ac.login);
117     st->Execute();
118     tr->Commit();
119     }
120
121 catch (IBPP::Exception & ex)
122     {
123     tr->Rollback();
124     strError = "IBPP exception";
125     printfd(__FILE__, ex.what());
126     return -1;
127     }
128
129 return 0;
130 }
131 //-----------------------------------------------------------------------------
132 int FIREBIRD_STORE::RestoreAdmin(STG::AdminConf * ac, const std::string & login) const
133 {
134 STG_LOCKER lock(&mutex);
135
136 IBPP::Transaction tr = IBPP::TransactionFactory(db, IBPP::amRead, til, tlr);
137 IBPP::Statement st = IBPP::StatementFactory(db, tr);
138
139 char cryptedPass[ADM_PASSWD_LEN + 1];
140 char adminPass[ADM_PASSWD_LEN + 1];
141 BLOWFISH_CTX ctx;
142
143 try
144     {
145     tr->Start();
146     st->Prepare("select * from tb_admins where login = ?");
147     st->Set(1, login);
148     st->Execute();
149     if (st->Fetch())
150         {
151         st->Get(2, ac->login);
152         st->Get(3, ac->password);
153         st->Get(4, (int16_t &)ac->priv.userConf);
154         st->Get(5, (int16_t &)ac->priv.userPasswd);
155         st->Get(6, (int16_t &)ac->priv.userStat);
156         st->Get(7, (int16_t &)ac->priv.userCash);
157         st->Get(8, (int16_t &)ac->priv.userAddDel);
158         st->Get(9, (int16_t &)ac->priv.tariffChg);
159         st->Get(10, (int16_t &)ac->priv.adminChg);
160         }
161     else
162         {
163         strError = "Admin \"" + login + "\" not found in database";
164     printfd(__FILE__, "Admin '%s' not found in database\n", login.c_str());
165     tr->Rollback();
166         return -1;
167         }
168     tr->Commit();
169     }
170
171 catch (IBPP::Exception & ex)
172     {
173     tr->Rollback();
174     strError = "IBPP exception";
175     printfd(__FILE__, ex.what());
176     return -1;
177     }
178
179 if (ac->password == "")
180     {
181     return 0;
182     }
183
184 Decode21(cryptedPass, ac->password.c_str());
185 InitContext(adm_enc_passwd, sizeof(adm_enc_passwd), &ctx);
186 for (int i = 0; i < ADM_PASSWD_LEN / 8; i++)
187     {
188     DecryptBlock(adminPass + 8 * i, cryptedPass + 8 * i, &ctx);
189     }
190 ac->password = adminPass;
191
192 return 0;
193 }
194 //-----------------------------------------------------------------------------
195 int FIREBIRD_STORE::AddAdmin(const std::string & login) const
196 {
197 STG_LOCKER lock(&mutex);
198
199 IBPP::Transaction tr = IBPP::TransactionFactory(db, IBPP::amWrite, til, tlr);
200 IBPP::Statement st = IBPP::StatementFactory(db, tr);
201
202 try
203     {
204     tr->Start();
205     st->Prepare("insert into tb_admins(login, \
206                     passwd, \
207                     chg_conf, \
208                     chg_password, \
209                     chg_stat, \
210                     chg_cash, \
211                     usr_add_del, \
212                     chg_tariff, \
213                     chg_admin, \
214                     chg_service, \
215                     chg_corporation) \
216                  values (?, '', 0, 0, 0, 0, 0, 0, 0, 0, 0)");
217     st->Set(1, login);
218     st->Execute();
219     tr->Commit();
220     }
221
222 catch (IBPP::Exception & ex)
223     {
224     tr->Rollback();
225     strError = "IBPP exception";
226     printfd(__FILE__, ex.what());
227     return -1;
228     }
229
230 return 0;
231 }
232 //-----------------------------------------------------------------------------
233 int FIREBIRD_STORE::DelAdmin(const std::string & login) const
234 {
235 STG_LOCKER lock(&mutex);
236
237 IBPP::Transaction tr = IBPP::TransactionFactory(db, IBPP::amWrite, til, tlr);
238 IBPP::Statement st = IBPP::StatementFactory(db, tr);
239
240 try
241     {
242     tr->Start();
243     st->Prepare("delete from tb_admins where login = ?");
244     st->Set(1, login);
245     st->Execute();
246     tr->Commit();
247     }
248
249 catch (IBPP::Exception & ex)
250     {
251     strError = "IBPP exception";
252     printfd(__FILE__, ex.what());
253     return -1;
254     }
255
256 return 0;
257 }
258 //-----------------------------------------------------------------------------
259