X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/71d9db6cff1be807f6d010467b58efb95a6a61aa..8c6fa3fbaccc22127280bf77a48fab5a3ee0716e:/projects/stargazer/plugins/other/radius/config.h diff --git a/projects/stargazer/plugins/other/radius/config.h b/projects/stargazer/plugins/other/radius/config.h index 2d4f638f..44d5ed85 100644 --- a/projects/stargazer/plugins/other/radius/config.h +++ b/projects/stargazer/plugins/other/radius/config.h @@ -31,6 +31,8 @@ #include // uid_t, gid_t #include // mode_t +class USER; + namespace STG { @@ -52,15 +54,29 @@ struct Config UPDATED // Module sends some updates. }; + class Authorize + { + public: + Authorize() : m_auth(false) {} + Authorize(const Pairs& cond) : m_auth(true), m_cond(cond) {} + + bool check(const USER& user, const Pairs& radiusData) const; + bool exists() const { return m_auth; } + private: + bool m_auth; + Pairs m_cond; + }; + struct Section { Section() {} - Section(const Pairs& ma, const Pairs& mo, const Pairs& re, ReturnCode code) - : match(ma), modify(mo), reply(re), returnCode(code) {} + Section(const Pairs& ma, const Pairs& mo, const Pairs& re, ReturnCode code, const Authorize& auth) + : match(ma), modify(mo), reply(re), returnCode(code), authorize(auth) {} Pairs match; Pairs modify; Pairs reply; ReturnCode returnCode; + Authorize authorize; }; Config() {}