diff options
author | Adam <Adam@anope.org> | 2016-10-21 23:54:01 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-10-22 16:52:29 -0400 |
commit | 128b10ba5a8b08dbffd4e945a9bb330f2147b0cf (patch) | |
tree | c56f41e0e4533cfb733c334b508bba2e63a1c699 /include/modules/nickserv.h | |
parent | 22d166fd4e98b67cac7103b48801fb95a0179f01 (diff) |
nickserv: split nick/account classes to their own headers
Diffstat (limited to 'include/modules/nickserv.h')
-rw-r--r-- | include/modules/nickserv.h | 97 |
1 files changed, 3 insertions, 94 deletions
diff --git a/include/modules/nickserv.h b/include/modules/nickserv.h index ef06bcb0c..f8d1567ef 100644 --- a/include/modules/nickserv.h +++ b/include/modules/nickserv.h @@ -23,6 +23,9 @@ #include "service.h" #include "serialize.h" +#include "nickserv/nick.h" +#include "nickserv/account.h" + namespace NickServ { class Nick; @@ -134,100 +137,6 @@ namespace NickServ }; } - /* A registered nickname. - * It matters that Base is here before Extensible (it is inherited by Serializable) - */ - class CoreExport Nick : public Serialize::Object - { - protected: - using Serialize::Object::Object; - - public: - static constexpr const char *const NAME = "nick"; - - virtual Anope::string GetNick() anope_abstract; - virtual void SetNick(const Anope::string &) anope_abstract; - - virtual Anope::string GetLastQuit() anope_abstract; - virtual void SetLastQuit(const Anope::string &) anope_abstract; - - virtual Anope::string GetLastRealname() anope_abstract; - virtual void SetLastRealname(const Anope::string &) anope_abstract; - - virtual Anope::string GetLastUsermask() anope_abstract; - virtual void SetLastUsermask(const Anope::string &) anope_abstract; - - virtual Anope::string GetLastRealhost() anope_abstract; - virtual void SetLastRealhost(const Anope::string &) anope_abstract; - - virtual time_t GetTimeRegistered() anope_abstract; - virtual void SetTimeRegistered(const time_t &) anope_abstract; - - virtual time_t GetLastSeen() anope_abstract; - virtual void SetLastSeen(const time_t &) anope_abstract; - - virtual Account *GetAccount() anope_abstract; - virtual void SetAccount(Account *acc) anope_abstract; - }; - - /* A registered account. Each account must have a Nick with the same nick as the - * account's display. - * It matters that Base is here before Extensible (it is inherited by Serializable) - */ - class CoreExport Account : public Serialize::Object - { - public: - static constexpr const char *const NAME = "account"; - - /* Set if this user is a services operattor. o->ot must exist. */ - Serialize::Reference<Oper> o; - - /* Unsaved data */ - - /* Last time an email was sent to this user */ - time_t lastmail = 0; - /* Users online now logged into this account */ - std::vector<User *> users; - - protected: - using Serialize::Object::Object; - - public: - virtual Anope::string GetDisplay() anope_abstract; - virtual void SetDisplay(const Anope::string &) anope_abstract; - - virtual Anope::string GetPassword() anope_abstract; - virtual void SetPassword(const Anope::string &) anope_abstract; - - virtual Anope::string GetEmail() anope_abstract; - virtual void SetEmail(const Anope::string &) anope_abstract; - - virtual Anope::string GetLanguage() anope_abstract; - virtual void SetLanguage(const Anope::string &) anope_abstract; - - /** Changes the display for this account - * @param na The new display, must be grouped to this account. - */ - virtual void SetDisplay(Nick *na) anope_abstract; - - /** Checks whether this account is a services oper or not. - * @return True if this account is a services oper, false otherwise. - */ - virtual bool IsServicesOper() const anope_abstract; - - /** Is the given user on this accounts access list? - * - * @param u The user - * - * @return true if the user is on the access list - */ - virtual bool IsOnAccess(User *u) anope_abstract; - - virtual MemoServ::MemoInfo *GetMemos() anope_abstract; - - virtual unsigned int GetChannelCount() anope_abstract; - }; - /* A request to check if an account/password is valid. These can exist for * extended periods due to the time some authentication modules take. */ |