]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/configuration/sgconfig/parser_auth_by.h
Move projects back into subfolder.
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / parser_auth_by.h
index c103147e4816a44a92aca397f8b6b3d23e4dc0e7..50164748adcf1b577d774c55bd59e9829c28575a 100644 (file)
  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
  */
 
-#ifndef __STG_PARSER_AUTH_BY_H__
-#define __STG_PARSER_AUTH_BY_H__
+#pragma once
 
 #include "parser.h"
 
-#include <string>
+#include "stg/common.h"
 
-class ADMIN;
-class USERS;
+#include <string>
 
 namespace STG
 {
+
+struct Admin;
+struct Users;
+
 namespace PARSER
 {
 
 class AUTH_BY : public BASE_PARSER
 {
     public:
-        AUTH_BY(const ADMIN & admin, const USERS & users)
-            : BASE_PARSER(admin, "GetUserAuthBy"), m_users(users) {}
+        class FACTORY : public BASE_PARSER::FACTORY
+        {
+            public:
+                explicit FACTORY(const Users & users) : m_users(users) {}
+                virtual BASE_PARSER * create(const Admin & admin) { return new AUTH_BY(admin, m_users); }
+                static void Register(REGISTRY & registry, const Users & users)
+                { registry[ToLower(tag)] = new FACTORY(users); }
+            private:
+                const Users & m_users;
+        };
+
+        static const char * tag;
+
+        AUTH_BY(const Admin & admin, const Users & users)
+            : BASE_PARSER(admin, tag), m_users(users) {}
         int Start(void * data, const char * el, const char ** attr);
 
     private:
-        const USERS & m_users;
+        const Users & m_users;
         std::string m_login;
 
         void CreateAnswer();
 };
 
-}
-}
-
-#endif
+} // namespace PARSER
+} // namespace STG