]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/users.h
Store id in TreeServer, use TreeServer::GetID() to get the id (NOTE: it is std::string)
[user/henk/code/inspircd.git] / include / users.h
index a2d89b0a784ee282542611744c15bb50304089c1..40c3603518e1e2be0729a701f63faa4a3427754d 100644 (file)
@@ -126,6 +126,9 @@ class CoreExport ConnectClass : public classbase
        /** Type of line, either CC_ALLOW or CC_DENY
         */
        char type;
+       /** Connect class name
+        */
+       std::string name;
        /** Max time to register the connection in seconds
         */
        unsigned int registration_timeout;
@@ -161,6 +164,11 @@ class CoreExport ConnectClass : public classbase
        /** Global max when connecting by this connection class
         */
        unsigned long maxglobal;
+
+       /** Max channels for this class
+        */
+       unsigned int maxchans;
+
        /** Port number this connect class applies to
         */
        int port;
@@ -169,10 +177,11 @@ public:
 
        /** Create a new connect class with no settings.
         */
-       ConnectClass() : type(CC_DENY), registration_timeout(0), flood(0), host(""), pingtime(0), pass(""),
+       ConnectClass() : type(CC_DENY), name("unnamed"), registration_timeout(0), flood(0), host(""), pingtime(0), pass(""),
                        threshold(0), sendqmax(0), recvqmax(0), maxlocal(0), maxglobal(0) { }
 
        /** Create a new connect class to ALLOW connections.
+        * @param thename Name of the connect class
         * @param timeout The registration timeout
         * @param fld The flood value
         * @param hst The IP mask to allow
@@ -184,17 +193,67 @@ public:
         * @param maxl The maximum local sessions
         * @param maxg The maximum global sessions
         */
-       ConnectClass(unsigned int timeout, unsigned int fld, const std::string &hst, unsigned int ping,
+       ConnectClass(const std::string &thename, unsigned int timeout, unsigned int fld, const std::string &hst, unsigned int ping,
                        const std::string &pas, unsigned int thres, unsigned long sendq, unsigned long recvq,
-                       unsigned long maxl, unsigned long maxg, int p = 0) :
-                       type(CC_ALLOW), registration_timeout(timeout), flood(fld), host(hst), pingtime(ping), pass(pas),
-                       threshold(thres), sendqmax(sendq), recvqmax(recvq), maxlocal(maxl), maxglobal(maxg), port(p) { }
+                       unsigned long maxl, unsigned long maxg, unsigned int maxc, int p = 0) :
+                       type(CC_ALLOW), name(thename), registration_timeout(timeout), flood(fld), host(hst), pingtime(ping), pass(pas),
+                       threshold(thres), sendqmax(sendq), recvqmax(recvq), maxlocal(maxl), maxglobal(maxg), maxchans(maxc), port(p) { }
 
-       /** Create a new connect class to DENY  connections
+       /** Create a new connect class to DENY connections
+        * @param thename Name of the connect class
         * @param hst The IP mask to deny
         */
-       ConnectClass(const std::string &hst) : type(CC_DENY), registration_timeout(0), flood(0), host(hst), pingtime(0),
-                       pass(""), threshold(0), sendqmax(0), recvqmax(0), maxlocal(0), maxglobal(0), port(0) { }
+       ConnectClass(const std::string &thename, const std::string &hst) : type(CC_DENY), name(thename), registration_timeout(0),
+                       flood(0), host(hst), pingtime(0), pass(""), threshold(0), sendqmax(0), recvqmax(0), maxlocal(0), maxglobal(0), maxchans(0), port(0) { }
+
+       /* Create a new connect class based on another class
+        * @param thename The name of the connect class
+        * @param source Another connect class to inherit all but the name from
+        */
+       ConnectClass(const std::string &thename, const ConnectClass &source) : type(source.type), name(thename),
+                               registration_timeout(source.registration_timeout), flood(source.flood), host(source.host),
+                               pingtime(source.pingtime), pass(source.pass), threshold(source.threshold), sendqmax(source.sendqmax),
+                               recvqmax(source.recvqmax), maxlocal(source.maxlocal), maxglobal(source.maxglobal), maxchans(source.maxchans),
+                               port(source.port)
+       {
+       }
+
+       /* Update an existing entry with new values
+        */
+       void Update(unsigned int timeout, unsigned int fld, const std::string &hst, unsigned int ping,
+                               const std::string &pas, unsigned int thres, unsigned long sendq, unsigned long recvq,
+                               unsigned long maxl, unsigned long maxg, unsigned int maxc, int p)
+       {
+               if (timeout)
+                       registration_timeout = timeout;
+               if (fld)
+                       flood = fld;
+               if (!hst.empty())
+                       host = hst;
+               if (ping)
+                       pingtime = ping;
+               if (!pas.empty())
+                       pass = pas;
+               if (thres)
+                       threshold = thres;
+               if (sendq)
+                       sendqmax = sendq;
+               if (recvq)
+                       recvqmax = recvq;
+               if (maxl)
+                       maxlocal = maxl;
+               if (maxg)
+                       maxglobal = maxg;
+               if (maxc)
+                       maxchans = maxc;
+               if (p)
+                       port = p;
+       }
+
+       int GetMaxChans()
+       {
+               return maxchans;
+       }
 
        /** Returns the type, CC_ALLOW or CC_DENY
         */
@@ -203,6 +262,11 @@ public:
                return (type == CC_ALLOW ? CC_ALLOW : CC_DENY);
        }
 
+       std::string& GetName()
+       {
+               return name;
+       }
+
        /** Returns the registration timeout
         */
        unsigned int GetRegTimeout()
@@ -224,11 +288,20 @@ public:
                return host;
        }
 
+       /** Get port number
+        */
        int GetPort()
        {
                return port;
        }
 
+       /** Set port number
+        */
+       void SetPort(int p)
+       {
+               port = p;
+       }
+
        /** Returns the ping frequency
         */
        unsigned int GetPingTime()
@@ -277,6 +350,11 @@ public:
        {
                return maxglobal;
        }
+
+       bool operator= (ConnectClass &other)
+       {
+               return (other.GetName() == name);
+       }
 };
 
 /** Holds a complete list of all channels to which a user has been invited and has not yet joined.
@@ -372,6 +450,10 @@ class CoreExport userrec : public connection
         */
        char* operquit;
 
+       /** Max channels for this user
+        */
+       unsigned int MaxChans;
+
  public:
        /** Resolvers for looking up this users IP address
         * This will occur if and when res_reverse completes.
@@ -400,12 +482,19 @@ class CoreExport userrec : public connection
         */
        void StartDNSLookup();
 
+       unsigned int GetMaxChans();
+
        /** The users nickname.
         * An invalid nickname indicates an unregistered connection prior to the NICK command.
         * Use InspIRCd::IsNick() to validate nicknames.
         */
        char nick[NICKMAX];
 
+       /** The user's unique identifier.
+        * This is the unique identifier which the user has across the network.
+        */
+       char uuid[UUID_LENGTH];
+
        /** The users ident reply.
         * Two characters are added to the user-defined limit to compensate for the tilde etc.
         */
@@ -571,9 +660,11 @@ class CoreExport userrec : public connection
        bool exempt;
 
        /** Default constructor
-        * @throw Nothing at present
+        * @throw CoreException if the UID allocated to the user already exists
+        * @param Instance Creator instance
+        * @param uid User UUID, or empty to allocate one automatically
         */
-       userrec(InspIRCd* Instance);
+       userrec(InspIRCd* Instance, const std::string &uid = "");
 
        /** Returns the full displayed host of the user
         * This member function returns the hostname of the user as seen by other users
@@ -780,7 +871,7 @@ class CoreExport userrec : public connection
 
        /** Call this method to find the matching <connect> for a user, and to check them against it.
         */
-       void CheckClass();
+       void CheckClass(const std::string &explicit_class = "");
 
        /** Use this method to fully connect a user.
         * This will send the message of the day, check G/K/E lines, etc.
@@ -991,9 +1082,10 @@ class CoreExport userrec : public connection
        void PurgeEmptyChannels();
 
        /** Get the connect class which matches this user's host or IP address
+        * @param explicit_name Set this string to tie the user to a specific class name
         * @return A reference to this user's connect class
         */
-       ConnectClass* GetClass();
+       ConnectClass* GetClass(const std::string &explicit_name = "");
 
        /** Show the message of the day to this user
         */