]> git.stg.codes - stg.git/blobdiff - projects/sgconf/common_sg.cpp
Ticket 37. In the if() construction for the changePolicyTimeout
[stg.git] / projects / sgconf / common_sg.cpp
index 9bbe62d7de2ce1b4d7a49956a215baed9b952f9e..9c1b7283705bdf3cbc1652811e847c463b55cab9 100644 (file)
@@ -47,10 +47,16 @@ const int usageInfo = 1;
 const int TO_KOI8 = 0;
 const int FROM_KOI8 = 1;
 //-----------------------------------------------------------------------------
-struct GetUserData
+struct GetUserCbData
 {
-    REQUEST & request;
-    bool result;
+    void * data;
+    bool * result;
+};
+//-----------------------------------------------------------------------------
+struct AuthByCbData
+{
+    void * data;
+    bool * result;
 };
 //---------------------------------------------------------------------------
 struct HelpParams
@@ -84,7 +90,7 @@ HelpParams hp[] =
     {"set credit expire",       "get credit expire",    "-E",   "<credit_expire_date>"},
     {"set password",            "get password",         "-o",   "<new_password>"},
     {"set prepaid traffic",     "get prepaid traffic",  "-e",   "<prepaid>"},
-    {"set IP-addresses",        "get IP-addresses",     "-I",   "<*|ip_addr[,ip_addr...]>"},
+    {"set IP-addresses",       "get IP-addresses",     "-I",   "<*|ip_addr[,ip_addr...]>"},
     {"set name",                "get name",             "-A",   "<name>"},
     {"set note",                "get note",             "-N",   "<note>"},
     {"set street address",      "get street address",   "-D",   "<address>"},
@@ -253,7 +259,7 @@ if (cd == (iconv_t) -1)
     exit(ICONV_ERR_CODE);
     }
 
-#if defined(FREE_BSD) || defined(FREE_BSD5)
+#if defined(CONST_ICONV)
 nconv = iconv(cd, (const char **)&inbuf, &insize, &outbuf, &outsize);
 #else
 nconv = iconv(cd, &inbuf, &insize, &outbuf, &outsize);
@@ -314,29 +320,32 @@ struct StringReqParams
     string * value;
 };
 //-----------------------------------------------------------------------------
-void GetUserCallback(const PARSER_GET_USER::INFO & info, void * d)
+void RecvUserData(USERDATA * ud, void * d)
 {
-GetUserData * data = static_cast<GetUserData *>(d);
+GetUserCbData * gucbd;
+gucbd = (GetUserCbData *)d;
+
+bool * result = gucbd->result;
 
 REQUEST * req = (REQUEST *)gucbd->data;
 
-if (info.login == "")
+if (ud->login == "")
     {
-    data->result = false;
+    *result = false;
     return;
     }
 
-if (!data->request.cash.res_empty())
-    cout << "cash=" << info.cash << endl;
+if (!req->cash.empty())
+    cout << "cash=" << ud->cash << endl;
 
-if (!data->requst.credit.res_empty())
-    cout << "credit=" << info.credit << endl;
+if (!req->credit.empty())
+    cout << "credit=" << ud->credit << endl;
 
-if (!data->requst.creditExpire.res_empty())
+if (!req->creditExpire.empty())
     {
     char buf[32];
     struct tm brokenTime;
-    time_t tt = info.creditExpire;
+    time_t tt = ud->creditExpire;
 
     brokenTime.tm_wday = 0;
     brokenTime.tm_yday = 0;
@@ -352,76 +361,75 @@ if (!data->requst.creditExpire.res_empty())
     cout << "creditExpire=" << buf << endl;
     }
 
-if (!data->requst.down.res_empty())
-    cout << "down=" << info.down << endl;
+if (!req->down.empty())
+    cout << "down=" << ud->down << endl;
 
-if (!data->requst.passive.res_empty())
-    cout << "passive=" << info.passive << endl;
+if (!req->passive.empty())
+    cout << "passive=" << ud->passive << endl;
 
-if (!data->requst.disableDetailStat.res_empty())
-    cout << "disableDetailStat=" << info.disableDetailStat << endl;
+if (!req->disableDetailStat.empty())
+    cout << "disableDetailStat=" << ud->disableDetailStat << endl;
 
-if (!data->requst.alwaysOnline.res_empty())
-    cout << "alwaysOnline=" << info.alwaysOnline << endl;
+if (!req->alwaysOnline.empty())
+    cout << "alwaysOnline=" << ud->alwaysOnline << endl;
 
-if (!data->requst.prepaidTraff.res_empty())
-    cout << "prepaidTraff=" << info.prepaidTraff << endl;
+if (!req->prepaidTraff.empty())
+    cout << "prepaidTraff=" << ud->prepaidTraff << endl;
 
 for (int i = 0; i < DIR_NUM; i++)
     {
-    if (!data->requst.up[i].res_empty())
-        cout << "session upload for dir" << i << "=" << info.stat.su[i] << endl;
-    if (!data->requst.down[i].res_empty())
-        cout << "session download for dir" << i << "=" << info.stat.sd[i] << endl;
-    }
-
-for (int i = 0; i < DIR_NUM; i++)
-    {
-    if (!data->requst.monthUp[i].res_empty())
-        cout << "month upload for dir" << i << "=" << info.stat.mu[i] << endl;
-    if (!data->requst.monthDown[i].res_empty())
-        cout << "month download for dir" << i << "=" << info.stat.md[i] << endl;
+    if (!req->u[i].empty())
+        cout << "u" << i << "=" << ud->stat.mu[i] << endl;
+    if (!req->d[i].empty())
+        cout << "d" << i << "=" << ud->stat.md[i] << endl;
     }
 
 for (int i = 0; i < USERDATA_NUM; i++)
     {
-    if (!data->requst.ud[i].res_empty())
+    if (!req->ud[i].empty())
         {
         string str;
-        ConvertFromKOI8(info.userData[i], &str);
+        ConvertFromKOI8(ud->userData[i], &str);
         cout << "userdata" << i << "=" << str << endl;
         }
     }
 
 StringReqParams strReqParams[] =
 {
-    {"note",     data->requst.note,        &info.note},
-    {"name",     data->requst.name,        &info.name},
-    {"address",  data->requst.address,     &info.address},
-    {"email",    data->requst.email,       &info.email},
-    {"phone",    data->requst.phone,       &info.phone},
-    {"group",    data->requst.group,       &info.group},
-    {"tariff",   data->requst.tariff,      &info.tariff},
-    {"password", data->requst.usrPasswd,   &info.password},
-    {"ip",       data->requst.ips,         &info.ips} // IP-address of user
+    {"note",     req->note,        &ud->note},
+    {"name",     req->name,        &ud->name},
+    {"address",  req->address,     &ud->address},
+    {"email",    req->email,       &ud->email},
+    {"phone",    req->phone,       &ud->phone},
+    {"group",    req->group,       &ud->group},
+    {"tariff",   req->tariff,      &ud->tariff},
+    {"password", req->usrPasswd,   &ud->password},
+    {"ip",      req->ips,         &ud->ips}    // IP-address of user
 };
 for (unsigned i = 0; i < sizeof(strReqParams) / sizeof(StringReqParams); i++)
     {
-    if (!strReqParams[i].reqParam.res_empty())
+    if (!strReqParams[i].reqParam.empty())
         {
         string str;
         ConvertFromKOI8(*strReqParams[i].value, &str);
         cout << strReqParams[i].name << "=" << str << endl;
         }
     }
-data->result = true;
+*result = true;
 }
 //-----------------------------------------------------------------------------
-void RecvAuthByData(const PARSER_AUTH_BY::INFO & list, void *)
+void RecvAuthByData(const std::vector<std::string> & list, void * d)
 {
+AuthByCbData * abcbd;
+abcbd = (AuthByCbData *)d;
+
+bool * result = abcbd->result;
+
 for (std::vector<std::string>::const_iterator it = list.begin(); it != list.end(); ++it)
     cout << *it << "\n";
 cout << endl;
+
+*result = true;
 }
 //-----------------------------------------------------------------------------
 int ProcessSetUser(const std::string &server,
@@ -437,9 +445,9 @@ SERVCONF sc;
 bool result = false;
 
 
-sc.SetServer(server.c_str());
-sc.SetPort(port);
-sc.SetAdmLogin(admLogin.c_str());
+sc.SetServer(server.c_str());  // õÓÔÁÎÁ×ÌÉ×ÁÅÍ ÉÍÑ ÓÅÒ×ÅÒÁ Ó ËÏÔÏÒÇÏ ÚÁÂÉÒÁÔØ ÉÎÆÕ
+sc.SetPort(port);           // ÁÄÍÉÎÓËÉÊ ÐÏÒÔ ÓÅÒ×ÅÒÁÐÏÒÔ
+sc.SetAdmLogin(admLogin.c_str());    // ÷ÙÓÔÁ×ÌÑÅÍ ÌÏÇÉΠɠÐÁÒÏÌØ ÁÄÍÉÎÁ
 sc.SetAdmPassword(admPasswd.c_str());
 
 // TODO Good variable name :)
@@ -478,24 +486,24 @@ int ProcessGetUser(const std::string &server,
                    const std::string &admLogin,
                    const std::string &admPasswd,
                    const std::string &login,
-                   REQUEST & request)
+                   void * data)
 {
 SERVCONF sc;
 
 bool result = false;
 
-sc.SetServer(server.c_str());
-sc.SetPort(port);
-sc.SetAdmLogin(admLogin.c_str());
+sc.SetServer(server.c_str());  // õÓÔÁÎÁ×ÌÉ×ÁÅÍ ÉÍÑ ÓÅÒ×ÅÒÁ Ó ËÏÔÏÒÇÏ ÚÁÂÉÒÁÔØ ÉÎÆÕ
+sc.SetPort(port);           // ÁÄÍÉÎÓËÉÊ ÐÏÒÔ ÓÅÒ×ÅÒÁÐÏÒÔ
+sc.SetAdmLogin(admLogin.c_str());    // ÷ÙÓÔÁ×ÌÑÅÍ ÌÏÇÉΠɠÐÁÒÏÌØ ÁÄÍÉÎÁ
 sc.SetAdmPassword(admPasswd.c_str());
 
 // TODO Good variable name :)
 GetUserCbData gucbd;
 
-gucbd.data = &request;
+gucbd.data = data;
 gucbd.result = &result;
 
-sc.SetGetUserCallback(GetUserCallback, &gucbd);
+sc.SetGetUserDataRecvCb(RecvUserData, &gucbd);
 sc.GetUser(login.c_str());
 
 if (result)
@@ -517,25 +525,37 @@ int ProcessAuthBy(const std::string &server,
                   const std::string &admLogin,
                   const std::string &admPasswd,
                   const std::string &login,
-                  REQUEST & request)
+                  void * data)
 {
 SERVCONF sc;
 
-sc.SetServer(server.c_str());
-sc.SetPort(port);
-sc.SetAdmLogin(admLogin.c_str());
+bool result = false;
+
+sc.SetServer(server.c_str());  // õÓÔÁÎÁ×ÌÉ×ÁÅÍ ÉÍÑ ÓÅÒ×ÅÒÁ Ó ËÏÔÏÒÇÏ ÚÁÂÉÒÁÔØ ÉÎÆÕ
+sc.SetPort(port);           // ÁÄÍÉÎÓËÉÊ ÐÏÒÔ ÓÅÒ×ÅÒÁÐÏÒÔ
+sc.SetAdmLogin(admLogin.c_str());    // ÷ÙÓÔÁ×ÌÑÅÍ ÌÏÇÉΠɠÐÁÒÏÌØ ÁÄÍÉÎÁ
 sc.SetAdmPassword(admPasswd.c_str());
 
-sc.SetAuthByCallback(RecvAuthByData, NULL);
-sc.AuthBy(login.c_str());
+// TODO Good variable name :)
+AuthByCbData abcbd;
+
+abcbd.data = data;
+abcbd.result = &result;
+
+sc.SetGetUserAuthByRecvCb(RecvAuthByData, &abcbd);
+sc.GetUserAuthBy(login.c_str());
 
-if (sc.GetError())
+if (result)
+    {
+    printf("Ok\n");
+    return 0;
+    }
+else
     {
     printf("Error\n");
     return -1;
     }
 
-printf("Ok\n");
 return 0;
 }
 //-----------------------------------------------------------------------------