]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_invite.cpp
Remove an extern, partly because it's unused, partly because it then gets shadowed...
[user/henk/code/inspircd.git] / src / cmd_invite.cpp
index 6f6cbaa7d70271efb02b6af133a773414e8e4031..8baeb30b093756c237dc91f749c1fe047ccaa9b4 100644 (file)
  * ---------------------------------------------------
  */
 
-using namespace std;
-
-#include "inspircd_config.h"
-#include "inspircd.h"
-#include "inspircd_io.h"
-#include <string>
 #include <vector>
-#include <deque>
+#include "configreader.h"
 #include "users.h"
-#include "ctables.h"
-#include "globals.h"
 #include "modules.h"
-#include "dynamic.h"
-#include "message.h"
 #include "commands.h"
-#include "inspstring.h"
 #include "helperfuncs.h"
-#include "hashcomp.h"
-#include "typedefs.h"
-#include "command_parse.h"
+#include "message.h"
 #include "cmd_invite.h"
 
 extern ServerConfig* Config;
@@ -43,6 +30,8 @@ extern std::vector<ircd_module*> factory;
 
 void cmd_invite::Handle (char **parameters, int pcnt, userrec *user)
 {
+       int MOD_RESULT = 0;
+
        if (pcnt == 2)
        {
                userrec* u = Find(parameters[0]);
@@ -62,7 +51,7 @@ void cmd_invite::Handle (char **parameters, int pcnt, userrec *user)
                        return;
                }
 
-               if ((c->binarymodes & CM_INVITEONLY) && (IS_LOCAL(user)))
+               if ((c->modes[CM_INVITEONLY]) && (IS_LOCAL(user)))
                {
                        if (cstatus(user,c) < STATUS_HOP)
                        {
@@ -70,20 +59,23 @@ void cmd_invite::Handle (char **parameters, int pcnt, userrec *user)
                                return;
                        }
                }
-               if (has_channel(u,c))
+
+               if (c->HasUser(u))
                {
                        WriteServ(user->fd,"443 %s %s %s :Is already on channel %s",user->nick,u->nick,c->name,c->name);
                        return;
                }
-               if ((IS_LOCAL(user)) && (!has_channel(user,c)))
+
+               if ((IS_LOCAL(user)) && (!c->HasUser(user)))
                {
                        WriteServ(user->fd,"442 %s %s :You're not on that channel!",user->nick, c->name);
                        return;
                }
 
-               int MOD_RESULT = 0;
                FOREACH_RESULT(I_OnUserPreInvite,OnUserPreInvite(user,u,c));
-               if (MOD_RESULT == 1) {
+
+               if (MOD_RESULT == 1)
+               {
                        return;
                }
 
@@ -105,5 +97,3 @@ void cmd_invite::Handle (char **parameters, int pcnt, userrec *user)
                WriteServ(user->fd,"347 %s :End of INVITE list",user->nick);
        }
 }
-
-