]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/configuration/sgconfig/parser_auth_by.cpp
Move projects back into subfolder.
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / parser_auth_by.cpp
index e16745c58097b4a83c81429bd70e6a0ed2b1b880..7e38a1199b6abd2d4c9950433564bfd3d5e20e86 100644 (file)
 #include "stg/users.h"
 #include "stg/user.h"
 
+#include <cstring>
+
 using STG::PARSER::AUTH_BY;
 
+const char * AUTH_BY::tag = "GetUserAuthBy";
+
 int AUTH_BY::Start(void * /*data*/, const char *el, const char **attr)
 {
-    if (strcasecmp(el, tag.c_str()) != 0)
+    if (strcasecmp(el, m_tag.c_str()) != 0)
         return -1;
 
     if (!attr[1])
@@ -39,16 +43,17 @@ int AUTH_BY::Start(void * /*data*/, const char *el, const char **attr)
 
 void AUTH_BY::CreateAnswer()
 {
-    CONST_USER_PTR u;
+    using ConstUserPtr = const User*;
+    ConstUserPtr u;
     if (m_users.FindByName(m_login, &u))
     {
-        answer = "<AuthorizedBy result=\"error\" reason=\"User not found.\"/>";
+        m_answer = "<AuthorizedBy result=\"error\" reason=\"User not found.\"/>";
         return;
     }
 
-    answer = "<AuthorizedBy result=\"ok\">";
+    m_answer = "<AuthorizedBy result=\"ok\">";
     std::vector<std::string> list(u->GetAuthorizers());
     for (std::vector<std::string>::const_iterator it = list.begin(); it != list.end(); ++it)
-        answer += "<Auth name=\"" + *it + "\"/>";
-    answer += "</AuthorizedBy>";
+        m_answer += "<Auth name=\"" + *it + "\"/>";
+    m_answer += "</AuthorizedBy>";
 }