]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/membership.h
Remove classbase inheritance from Invitation
[user/henk/code/inspircd.git] / include / membership.h
index dcaa5e1e1b571bb0af5a584cc3d68ab9911116c4..723449419727be15c66f55633c3fc5594d2943ea 100644 (file)
@@ -1,24 +1,28 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2012-2014 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef __MEMBERSHIP_H__
-#define __MEMBERSHIP_H__
 
-class User;
-class Channel;
+#pragma once
 
-struct Membership : public Extensible
+class CoreExport Membership : public Extensible, public intrusive_list_node<Membership>
 {
+ public:
        User* const user;
        Channel* const chan;
        // mode list, sorted by prefix rank, higest first
@@ -29,12 +33,39 @@ struct Membership : public Extensible
                return modes.find(m) != std::string::npos;
        }
        unsigned int getRank();
+
+       /** Add a prefix character to a user.
+        * Only the core should call this method, usually from
+        * within the mode parser or when the first user joins
+        * the channel (to grant the default privs to them)
+        * @param mh The mode handler of the prefix mode to associate
+        * @param adding True if adding the prefix, false when removing
+        * @return True if a change was made
+        */
+       bool SetPrefix(PrefixMode* mh, bool adding);
+};
+
+class CoreExport InviteBase
+{
+ protected:
+       InviteList invites;
+
+ public:
+       void ClearInvites();
+
+       friend class Invitation;
 };
 
-typedef std::map<User*, Membership*> UserMembList;
-typedef UserMembList::iterator UserMembIter;
-typedef UserMembList::const_iterator UserMembCIter;
+class CoreExport Invitation
+{
+       Invitation(Channel* c, LocalUser* u, time_t timeout) : user(u), chan(c), expiry(timeout) {}
 
-typedef std::set<User*> CUList;
+ public:
+       LocalUser* const user;
+       Channel* const chan;
+       time_t expiry;
 
-#endif
+       ~Invitation();
+       static void Create(Channel* c, LocalUser* u, time_t timeout);
+       static Invitation* Find(Channel* c, LocalUser* u, bool check_expired = true);
+};