]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_namesx.cpp
'svn propset -R svn:eol-style CR *' Set to UNIX-style always. Binaries are auto skipp...
[user/henk/code/inspircd.git] / src / modules / m_namesx.cpp
index c45d777f857c2cba161005b7bf6bf386e0f60818..37f5843314a72f7b4451b0d14a872503aebcaef8 100644 (file)
@@ -1,127 +1 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
- *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
- *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
- *
- * ---------------------------------------------------
- */
-
-#include "inspircd.h"
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
-
-static const char* dummy = "ON";
-
-/* $ModDesc: Provides aliases of commands. */
-
-class ModuleNamesX : public Module
-{
- public:
-       
-       ModuleNamesX(InspIRCd* Me)
-               : Module(Me)
-       {
-       }
-
-       void Implements(char* List)
-       {
-               List[I_OnSyncUserMetaData] = List[I_OnPreCommand] = List[I_OnUserList] = List[I_On005Numeric] = 1;
-       }
-
-       virtual ~ModuleNamesX()
-       {
-       }
-
-       void OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, const std::string &extname, bool displayable)
-       {
-               if ((displayable) && (extname == "NAMESX"))
-                       proto->ProtoSendMetaData(opaque, TYPE_USER, user, extname, "Enabled");
-       }
-
-       virtual Version GetVersion()
-       {
-               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
-       }
-
-       virtual void On005Numeric(std::string &output)
-       {
-               output.append(" NAMESX");
-       }
-
-       virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)
-       {
-               irc::string c = command.c_str();
-               /* We don't actually create a proper command handler class for PROTOCTL,
-                * because other modules might want to have PROTOCTL hooks too.
-                * Therefore, we just hook its as an unvalidated command therefore we
-                * can capture it even if it doesnt exist! :-)
-                */
-               if (c == "PROTOCTL")
-               {
-                       if ((pcnt) && (!strcasecmp(parameters[0],"NAMESX")))
-                       {
-                               user->Extend("NAMESX",dummy);
-                               return 1;
-                       }
-               }
-               return 0;
-       }
-
-       virtual int OnUserList(userrec* user, chanrec* Ptr, CUList* &ulist)
-       {
-               if (user->GetExt("NAMESX"))
-               {
-                       char list[MAXBUF];
-                       size_t dlen, curlen;
-                       dlen = curlen = snprintf(list,MAXBUF,"353 %s = %s :", user->nick, Ptr->name);
-                       int numusers = 0;
-                       char* ptr = list + dlen;
-
-                       if (!ulist)
-                               ulist = Ptr->GetUsers();
-
-                       bool has_user = Ptr->HasUser(user);
-                       for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
-                       {
-                               if ((!has_user) && (i->first->IsModeSet('i')))
-                                       continue;
-
-                               if (i->first->Visibility && !i->first->Visibility->VisibleTo(user))
-                                       continue;
-
-                               size_t ptrlen = snprintf(ptr, MAXBUF, "%s%s ", Ptr->GetAllPrefixChars(i->first), i->second.c_str());
-                               /* OnUserList can change this - reset it back to normal */
-                               i->second = i->first->nick;
-                               curlen += ptrlen;
-                               ptr += ptrlen;
-                               numusers++;
-                               if (curlen > (480-NICKMAX))
-                               {
-                                       /* list overflowed into multiple numerics */
-                                       user->WriteServ(std::string(list));
-                                       /* reset our lengths */
-                                       dlen = curlen = snprintf(list,MAXBUF,"353 %s = %s :", user->nick, Ptr->name);
-                                       ptr = list + dlen;
-                                       ptrlen = 0;
-                                       numusers = 0;
-                               }
-                       }
-                       /* if whats left in the list isnt empty, send it */
-                       if (numusers)
-                       {
-                               user->WriteServ(std::string(list));
-                       }
-                       user->WriteServ("366 %s %s :End of /NAMES list.", user->nick, Ptr->name);
-                       return 1;
-               }
-               return 0;               
-       }
-};
-
-MODULE_INIT(ModuleNamesX)
+/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "users.h"\r#include "channels.h"\r#include "modules.h"\r\rstatic const char* dummy = "ON";\r\r/* $ModDesc: Provides aliases of commands. */\r\rclass ModuleNamesX : public Module\r{\r public:\r       \r       ModuleNamesX(InspIRCd* Me)\r             : Module(Me)\r   {\r      }\r\r     void Implements(char* List)\r    {\r              List[I_OnSyncUserMetaData] = List[I_OnPreCommand] = List[I_OnUserList] = List[I_On005Numeric] = 1;\r     }\r\r     virtual ~ModuleNamesX()\r        {\r      }\r\r     void OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, const std::string &extname, bool displayable)\r       {\r              if ((displayable) && (extname == "NAMESX"))\r                    proto->ProtoSendMetaData(opaque, TYPE_USER, user, extname, "Enabled");\r }\r\r     virtual Version GetVersion()\r   {\r              return Version(1,1,0,1,VF_VENDOR,API_VERSION);\r }\r\r     virtual void On005Numeric(std::string &output)\r {\r              output.append(" NAMESX");\r      }\r\r     virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)\r       {\r              irc::string c = command.c_str();\r               /* We don't actually create a proper command handler class for PROTOCTL,\r                * because other modules might want to have PROTOCTL hooks too.\r                 * Therefore, we just hook its as an unvalidated command therefore we\r           * can capture it even if it doesnt exist! :-)\r          */\r            if (c == "PROTOCTL")\r           {\r                      if ((pcnt) && (!strcasecmp(parameters[0],"NAMESX")))\r                   {\r                              user->Extend("NAMESX",dummy);\r                          return 1;\r                      }\r              }\r              return 0;\r      }\r\r     virtual int OnUserList(userrec* user, chanrec* Ptr, CUList* &ulist)\r    {\r              if (user->GetExt("NAMESX"))\r            {\r                      char list[MAXBUF];\r                     size_t dlen, curlen;\r                   dlen = curlen = snprintf(list,MAXBUF,"353 %s = %s :", user->nick, Ptr->name);\r                  int numusers = 0;\r                      char* ptr = list + dlen;\r\r                      if (!ulist)\r                            ulist = Ptr->GetUsers();\r\r                      bool has_user = Ptr->HasUser(user);\r                    for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)\r                      {\r                              if ((!has_user) && (i->first->IsModeSet('i')))\r                                 continue;\r\r                             if (i->first->Visibility && !i->first->Visibility->VisibleTo(user))\r                                    continue;\r\r                             size_t ptrlen = snprintf(ptr, MAXBUF, "%s%s ", Ptr->GetAllPrefixChars(i->first), i->second.c_str());\r                           /* OnUserList can change this - reset it back to normal */\r                             i->second = i->first->nick;\r                            curlen += ptrlen;\r                              ptr += ptrlen;\r                         numusers++;\r                            if (curlen > (480-NICKMAX))\r                            {\r                                      /* list overflowed into multiple numerics */\r                                   user->WriteServ(std::string(list));\r                                    /* reset our lengths */\r                                        dlen = curlen = snprintf(list,MAXBUF,"353 %s = %s :", user->nick, Ptr->name);\r                                  ptr = list + dlen;\r                                     ptrlen = 0;\r                                    numusers = 0;\r                          }\r                      }\r                      /* if whats left in the list isnt empty, send it */\r                    if (numusers)\r                  {\r                              user->WriteServ(std::string(list));\r                    }\r                      user->WriteServ("366 %s %s :End of /NAMES list.", user->nick, Ptr->name);\r                      return 1;\r              }\r              return 0;               \r       }\r};\r\rMODULE_INIT(ModuleNamesX)\r
\ No newline at end of file