X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ede91934442fd804d7b818971a44e3ad795cb01f..b27841d687ec9e84983340b5581376dfb24010ea:/projects/stargazer/plugins/configuration/rpcconfig/users_methods.h diff --git a/projects/stargazer/plugins/configuration/rpcconfig/users_methods.h b/projects/stargazer/plugins/configuration/rpcconfig/users_methods.h index c9e5ace6..bd17c456 100644 --- a/projects/stargazer/plugins/configuration/rpcconfig/users_methods.h +++ b/projects/stargazer/plugins/configuration/rpcconfig/users_methods.h @@ -1,20 +1,25 @@ -#ifndef __USERS_METHODS_H__ -#define __USERS_METHODS_H__ +#pragma once #include #include +namespace STG +{ + +struct Admins; +class Tariffs; +class Users; +struct Store; +struct IPMask; + +} + class RPC_CONFIG; -class ADMINS; -class TARIFFS; -class USERS; -class STORE; -class IP_MASK; class METHOD_USER_GET : public xmlrpc_c::method { public: METHOD_USER_GET(RPC_CONFIG * c, - USERS * u) + STG::Users * u) : config(c), users(u) { @@ -22,16 +27,20 @@ public: void execute(xmlrpc_c::paramList const & paramList, xmlrpc_c::value * const retvalP); + private: + METHOD_USER_GET(const METHOD_USER_GET & rvalue); + METHOD_USER_GET & operator=(const METHOD_USER_GET & rvalue); + RPC_CONFIG * config; - USERS * users; + STG::Users * users; }; class METHOD_USER_ADD : public xmlrpc_c::method { public: METHOD_USER_ADD(RPC_CONFIG * c, - ADMINS * a, - USERS * u) + STG::Admins * a, + STG::Users * u) : config(c), admins(a), users(u) @@ -40,17 +49,21 @@ public: void execute(xmlrpc_c::paramList const & paramList, xmlrpc_c::value * const retvalP); + private: + METHOD_USER_ADD(const METHOD_USER_ADD & rvalue); + METHOD_USER_ADD & operator=(const METHOD_USER_ADD & rvalue); + RPC_CONFIG * config; - ADMINS * admins; - USERS * users; + STG::Admins * admins; + STG::Users * users; }; class METHOD_USER_DEL : public xmlrpc_c::method { public: METHOD_USER_DEL(RPC_CONFIG * c, - ADMINS * a, - USERS * u) + STG::Admins * a, + STG::Users * u) : config(c), admins(a), users(u) @@ -59,16 +72,20 @@ public: void execute(xmlrpc_c::paramList const & paramList, xmlrpc_c::value * const retvalP); + private: + METHOD_USER_DEL(const METHOD_USER_DEL & rvalue); + METHOD_USER_DEL & operator=(const METHOD_USER_DEL & rvalue); + RPC_CONFIG * config; - ADMINS * admins; - USERS * users; + STG::Admins * admins; + STG::Users * users; }; class METHOD_USERS_GET : public xmlrpc_c::method { public: METHOD_USERS_GET(RPC_CONFIG * c, - USERS * u) + STG::Users * u) : config(c), users(u) { @@ -76,18 +93,22 @@ public: void execute(xmlrpc_c::paramList const & paramList, xmlrpc_c::value * const retvalP); + private: + METHOD_USERS_GET(const METHOD_USERS_GET & rvalue); + METHOD_USERS_GET & operator=(const METHOD_USERS_GET & rvalue); + RPC_CONFIG * config; - USERS * users; + STG::Users * users; }; class METHOD_USER_CHG : public xmlrpc_c::method { public: METHOD_USER_CHG(RPC_CONFIG * c, - ADMINS * a, - TARIFFS * t, - STORE * s, - USERS * u) + STG::Admins * a, + STG::Tariffs * t, + STG::Store * s, + STG::Users * u) : config(c), admins(a), tariffs(t), @@ -98,20 +119,24 @@ public: void execute(xmlrpc_c::paramList const & paramList, xmlrpc_c::value * const retvalP); + private: + METHOD_USER_CHG(const METHOD_USER_CHG & rvalue); + METHOD_USER_CHG & operator=(const METHOD_USER_CHG & rvalue); + RPC_CONFIG * config; - ADMINS * admins; - TARIFFS * tariffs; - STORE * store; - USERS * users; + STG::Admins * admins; + STG::Tariffs * tariffs; + STG::Store * store; + STG::Users * users; }; class METHOD_USER_CASH_ADD : public xmlrpc_c::method { public: METHOD_USER_CASH_ADD(RPC_CONFIG * c, - ADMINS * a, - STORE * s, - USERS * u) + STG::Admins * a, + STG::Store * s, + STG::Users * u) : config(c), admins(a), store(s), @@ -121,19 +146,23 @@ public: void execute(xmlrpc_c::paramList const & paramList, xmlrpc_c::value * const retvalP); + private: + METHOD_USER_CASH_ADD(const METHOD_USER_CASH_ADD & rvalue); + METHOD_USER_CASH_ADD & operator=(const METHOD_USER_CASH_ADD & rvalue); + RPC_CONFIG * config; - ADMINS * admins; - STORE * store; - USERS * users; + STG::Admins * admins; + STG::Store * store; + STG::Users * users; }; class METHOD_USER_CASH_SET : public xmlrpc_c::method { public: METHOD_USER_CASH_SET(RPC_CONFIG * c, - ADMINS * a, - STORE * s, - USERS * u) + STG::Admins * a, + STG::Store * s, + STG::Users * u) : config(c), admins(a), store(s), @@ -143,20 +172,24 @@ public: void execute(xmlrpc_c::paramList const & paramList, xmlrpc_c::value * const retvalP); + private: + METHOD_USER_CASH_SET(const METHOD_USER_CASH_SET & rvalue); + METHOD_USER_CASH_SET & operator=(const METHOD_USER_CASH_SET & rvalue); + RPC_CONFIG * config; - ADMINS * admins; - STORE * store; - USERS * users; + STG::Admins * admins; + STG::Store * store; + STG::Users * users; }; class METHOD_USER_TARIFF_CHANGE : public xmlrpc_c::method { public: METHOD_USER_TARIFF_CHANGE(RPC_CONFIG * c, - ADMINS * a, - TARIFFS * t, - STORE * s, - USERS * u) + STG::Admins * a, + STG::Tariffs * t, + STG::Store * s, + STG::Users * u) : config(c), admins(a), tariffs(t), @@ -167,18 +200,22 @@ public: void execute(xmlrpc_c::paramList const & paramList, xmlrpc_c::value * const retvalP); + private: + METHOD_USER_TARIFF_CHANGE(const METHOD_USER_TARIFF_CHANGE & rvalue); + METHOD_USER_TARIFF_CHANGE & operator=(const METHOD_USER_TARIFF_CHANGE & rvalue); + RPC_CONFIG * config; - ADMINS * admins; - TARIFFS * tariffs; - STORE * store; - USERS * users; + STG::Admins * admins; + STG::Tariffs * tariffs; + STG::Store * store; + STG::Users * users; }; class METHOD_GET_ONLINE_IPS : public xmlrpc_c::method { public: METHOD_GET_ONLINE_IPS(RPC_CONFIG * c, - USERS * u) + STG::Users * u) : config(c), users(u) { @@ -186,11 +223,33 @@ public: void execute(xmlrpc_c::paramList const & paramList, xmlrpc_c::value * const retvalP); + private: + METHOD_GET_ONLINE_IPS(const METHOD_GET_ONLINE_IPS & rvalue); + METHOD_GET_ONLINE_IPS & operator=(const METHOD_GET_ONLINE_IPS & rvalue); + RPC_CONFIG * config; - USERS * users; + STG::Users * users; - bool ParseNet(const std::string & net, IP_MASK & ipm) const; + bool ParseNet(const std::string & net, STG::IPMask & ipm) const; }; -#endif +class METHOD_GET_USER_AUTH_BY : public xmlrpc_c::method { +public: + METHOD_GET_USER_AUTH_BY(RPC_CONFIG * c, + STG::Users * u) + : config(c), + users(u) + { + } + + void execute(xmlrpc_c::paramList const & paramList, + xmlrpc_c::value * const retvalP); + +private: + METHOD_GET_USER_AUTH_BY(const METHOD_GET_ONLINE_IPS & rvalue); + METHOD_GET_USER_AUTH_BY & operator=(const METHOD_GET_ONLINE_IPS & rvalue); + + RPC_CONFIG * config; + STG::Users * users; +};