X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_topic.cpp;h=b9051ea6fcf753298d66167b0d25488ab6783e2c;hb=84a19a9ab6129deb71cdc24b216b74dd8eb80978;hp=c1eb50532defec87b7e14c655fc86e413d972d5b;hpb=03a85ddeaf120bd7234089f9f5333d7895f96deb;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_topic.cpp b/src/cmd_topic.cpp index c1eb50532..b9051ea6f 100644 --- a/src/cmd_topic.cpp +++ b/src/cmd_topic.cpp @@ -3,7 +3,7 @@ * +------------------------------------+ * * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: + * E-mail: * * * @@ -14,53 +14,19 @@ * --------------------------------------------------- */ -using namespace std; - #include "inspircd_config.h" -#include "inspircd.h" -#include "inspircd_io.h" -#include -#include -#ifdef GCC3 -#include -#else -#include -#endif -#include -#include -#include -#include +#include "configreader.h" #include "users.h" -#include "ctables.h" -#include "globals.h" #include "modules.h" -#include "dynamic.h" -#include "wildcard.h" #include "message.h" #include "commands.h" -#include "mode.h" -#include "xline.h" -#include "inspstring.h" -#include "dnsqueue.h" -#include "helperfuncs.h" -#include "hashcomp.h" -#include "socketengine.h" -#include "typedefs.h" -#include "command_parse.h" #include "cmd_topic.h" extern ServerConfig* Config; -extern InspIRCd* ServerInstance; extern int MODCOUNT; -extern std::vector modules; -extern std::vector factory; extern time_t TIME; -extern user_hash clientlist; -extern chan_hash chanlist; -extern whowas_hash whowas; -extern std::vector all_opers; -extern std::vector local_users; -extern userrec* fd_ref_table[MAX_DESCRIPTORS]; +extern ModuleList modules; +extern FactoryList factory; void cmd_topic::Handle (char **parameters, int pcnt, userrec *user) { @@ -68,84 +34,71 @@ void cmd_topic::Handle (char **parameters, int pcnt, userrec *user) if (pcnt == 1) { - if (strlen(parameters[0]) <= CHANMAX) + Ptr = FindChan(parameters[0]); + if (Ptr) { - Ptr = FindChan(parameters[0]); - if (Ptr) + if ((Ptr->modes[CM_SECRET]) && (!Ptr->HasUser(user))) { - if (((Ptr) && (!has_channel(user,Ptr))) && (Ptr->binarymodes & CM_SECRET)) - { - WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, Ptr->name); - return; - } - if (Ptr->topicset) - { - WriteServ(user->fd,"332 %s %s :%s", user->nick, Ptr->name, Ptr->topic); - WriteServ(user->fd,"333 %s %s %s %d", user->nick, Ptr->name, Ptr->setby, Ptr->topicset); - } - else - { - WriteServ(user->fd,"331 %s %s :No topic is set.", user->nick, Ptr->name); - } + WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, Ptr->name); + return; + } + if (Ptr->topicset) + { + WriteServ(user->fd,"332 %s %s :%s", user->nick, Ptr->name, Ptr->topic); + WriteServ(user->fd,"333 %s %s %s %d", user->nick, Ptr->name, Ptr->setby, Ptr->topicset); } else { - WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[0]); + WriteServ(user->fd,"331 %s %s :No topic is set.", user->nick, Ptr->name); } } + else + { + WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[0]); + } return; } else if (pcnt>1) { - if (strlen(parameters[0]) <= CHANMAX) + Ptr = FindChan(parameters[0]); + if (Ptr) { - Ptr = FindChan(parameters[0]); - if (Ptr) + if (IS_LOCAL(user)) { - if (IS_LOCAL(user)) + if (!Ptr->HasUser(user)) { - if ((Ptr) && (!has_channel(user,Ptr))) - { - WriteServ(user->fd,"442 %s %s :You're not on that channel!",user->nick, Ptr->name); - return; - } - if ((Ptr->binarymodes & CM_TOPICLOCK) && (cstatus(user,Ptr)fd,"482 %s %s :You must be at least a half-operator to change modes on this channel", user->nick, Ptr->name); - return; - } + WriteServ(user->fd,"442 %s %s :You're not on that channel!",user->nick, Ptr->name); + return; } - - char topic[MAXBUF]; - strlcpy(topic,parameters[1],MAXBUF); - if (strlen(topic)>MAXTOPIC) + if ((Ptr->modes[CM_TOPICLOCK]) && (cstatus(user,Ptr)fd,"482 %s %s :You must be at least a half-operator to change modes on this channel", user->nick, Ptr->name); + return; } + } + char topic[MAXTOPIC]; + strlcpy(topic,parameters[1],MAXTOPIC-1); - if (IS_LOCAL(user)) - { - int MOD_RESULT = 0; - FOREACH_RESULT(I_OnLocalTopicChange,OnLocalTopicChange(user,Ptr,topic)); - if (MOD_RESULT) - return; - } - - strlcpy(Ptr->topic,topic,MAXTOPIC); - strlcpy(Ptr->setby,user->nick,NICKMAX-1); - Ptr->topicset = TIME; - WriteChannel(Ptr,user,"TOPIC %s :%s",Ptr->name, Ptr->topic); - if (IS_LOCAL(user)) - { - FOREACH_MOD(I_OnPostLocalTopicChange,OnPostLocalTopicChange(user,Ptr,topic)); - } + if (IS_LOCAL(user)) + { + int MOD_RESULT = 0; + FOREACH_RESULT(I_OnLocalTopicChange,OnLocalTopicChange(user,Ptr,topic)); + if (MOD_RESULT) + return; } - else + + strlcpy(Ptr->topic,topic,MAXTOPIC-1); + strlcpy(Ptr->setby,user->nick,NICKMAX-1); + Ptr->topicset = TIME; + WriteChannel(Ptr,user,"TOPIC %s :%s",Ptr->name, Ptr->topic); + if (IS_LOCAL(user)) { - WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[0]); + FOREACH_MOD(I_OnPostLocalTopicChange,OnPostLocalTopicChange(user,Ptr,topic)); } } + else + { + WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[0]); + } } } - -