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.
 
   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.
 
  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
 
  18  *    Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
 
  19  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
 
  22 #include "parser_admins.h"
 
  24 #include "stg/admins.h"
 
  26 #include <strings.h> // strcasecmp
 
  28 using STG::PARSER::GET_ADMINS;
 
  29 using STG::PARSER::ADD_ADMIN;
 
  30 using STG::PARSER::DEL_ADMIN;
 
  31 using STG::PARSER::CHG_ADMIN;
 
  33 const char * GET_ADMINS::tag = "GetAdmins";
 
  34 const char * ADD_ADMIN::tag  = "AddAdmin";
 
  35 const char * DEL_ADMIN::tag  = "DelAdmin";
 
  36 const char * CHG_ADMIN::tag  = "ChgAdmin";
 
  38 void GET_ADMINS::CreateAnswer()
 
  40     const PRIV * priv = m_currAdmin.GetPriv();
 
  43         m_answer = "<Error Result=\"Error. Access denied.\"/>";
 
  47     m_answer = "<Admins>";
 
  49     int h = m_admins.OpenSearch();
 
  51     while (m_admins.SearchNext(h, &ac) == 0)
 
  53         unsigned int p = (ac.priv.userStat << 0) +
 
  54                          (ac.priv.userConf << 2) +
 
  55                          (ac.priv.userCash << 4) +
 
  56                          (ac.priv.userPasswd << 6) +
 
  57                          (ac.priv.userAddDel << 8) +
 
  58                          (ac.priv.adminChg << 10) +
 
  59                          (ac.priv.tariffChg << 12);
 
  60         m_answer += "<admin login=\"" + ac.login + "\" priv=\"" + x2str(p) + "\"/>";
 
  62     m_admins.CloseSearch(h);
 
  63     m_answer += "</Admins>";
 
  66 int DEL_ADMIN::Start(void *, const char * el, const char ** attr)
 
  68     if (strcasecmp(el, m_tag.c_str()) == 0)
 
  76 void DEL_ADMIN::CreateAnswer()
 
  78     if (m_admins.Del(m_admin, &m_currAdmin) == 0)
 
  79         m_answer = "<" + m_tag + " Result=\"Ok\"/>";
 
  81         m_answer = "<" + m_tag + " Result=\"Error. " + m_admins.GetStrError() + "\"/>";
 
  84 int ADD_ADMIN::Start(void *, const char *el, const char **attr)
 
  86     if (strcasecmp(el, m_tag.c_str()) == 0)
 
  94 void ADD_ADMIN::CreateAnswer()
 
  96     if (m_admins.Add(m_admin, &m_currAdmin) == 0)
 
  97         m_answer = "<" + m_tag + " Result=\"Ok\"/>";
 
  99         m_answer = "<" + m_tag + " Result=\"Error. " + m_admins.GetStrError() + "\"/>";
 
 102 int CHG_ADMIN::Start(void *, const char * el, const char ** attr)
 
 104     if (strcasecmp(el, m_tag.c_str()) == 0)
 
 106         for (size_t i = 0; i < 6; i += 2)
 
 108             printfd(__FILE__, "PARSER_CHG_ADMIN::attr[%d] = %s\n", i, attr[i]);
 
 112             if (strcasecmp(attr[i], "Login") == 0)
 
 118             if (strcasecmp(attr[i], "Priv") == 0)
 
 120                 privAsString = attr[i + 1];
 
 124             if (strcasecmp(attr[i], "Password") == 0)
 
 126                 password = attr[i + 1];
 
 136 void CHG_ADMIN::CreateAnswer()
 
 140         ADMIN * origAdmin = NULL;
 
 142         if (m_admins.Find(login, &origAdmin))
 
 144             m_answer = "<" + m_tag + " Result = \"Admin '" + login + "' is not found.\"/>";
 
 148         ADMIN_CONF conf(origAdmin->GetConf());
 
 150         if (!password.empty())
 
 151             conf.password = password.data();
 
 153         if (!privAsString.empty())
 
 156             if (str2x(privAsString.data().c_str(), p) < 0)
 
 158                 m_answer = "<" + m_tag + " Result = \"Incorrect parameter Priv.\"/>";
 
 162             conf.priv.FromInt(p);
 
 165         if (m_admins.Change(conf, &m_currAdmin) != 0)
 
 166             m_answer = "<" + m_tag + " Result = \"" + m_admins.GetStrError() + "\"/>";
 
 168             m_answer = "<" + m_tag + " Result = \"Ok\"/>";
 
 171         m_answer = "<" + m_tag + " Result = \"Incorrect parameter login.\"/>";