X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/deef17e5b9c554981a37eb0787274181f8bebe94..7d84719d682b3ac00ae9fb46010e01bb77f711f6:/modules/core/m_quit.c diff --git a/modules/core/m_quit.c b/modules/core/m_quit.c index 4c769129..9df243c8 100644 --- a/modules/core/m_quit.c +++ b/modules/core/m_quit.c @@ -33,11 +33,15 @@ #include "modules.h" #include "s_conf.h" #include "inline/stringops.h" +#include "s_newconf.h" -static int m_quit(struct MsgBuf *, struct Client *, struct Client *, int, const char **); -static int ms_quit(struct MsgBuf *, struct Client *, struct Client *, int, const char **); static const char quit_desc[] = "Provides the QUIT command to allow a user to leave the network"; +static void m_quit(struct MsgBuf *, struct Client *, struct Client *, int, const char **); +static void ms_quit(struct MsgBuf *, struct Client *, struct Client *, int, const char **); + +static int h_client_quit; + struct Message quit_msgtab = { "QUIT", 0, 0, 0, 0, {{m_quit, 0}, {m_quit, 0}, {ms_quit, 0}, mg_ignore, mg_ignore, {m_quit, 0}} @@ -45,49 +49,60 @@ struct Message quit_msgtab = { mapi_clist_av1 quit_clist[] = { &quit_msgtab, NULL }; -DECLARE_MODULE_AV2(quit, NULL, NULL, quit_clist, NULL, NULL, NULL, NULL, quit_desc); +mapi_hlist_av1 quit_hlist[] = { + { "client_quit", &h_client_quit }, + { NULL, NULL } +}; + +DECLARE_MODULE_AV2(quit, NULL, NULL, quit_clist, quit_hlist, NULL, NULL, NULL, quit_desc); /* ** m_quit ** parv[1] = comment */ -static int +static void m_quit(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) { - char *comment = LOCAL_COPY((parc > 1 && parv[1]) ? parv[1] : client_p->name); + char *comment_copy = LOCAL_COPY((parc > 1 && parv[1]) ? parv[1] : client_p->name); + const char *comment = comment_copy; char reason[REASONLEN + 1]; + hook_data_client_quit hdata; source_p->flags |= FLAGS_NORMALEX; - if(strlen(comment) > (size_t) REASONLEN) - comment[REASONLEN] = '\0'; + if (strlen(comment_copy) > (size_t) REASONLEN) + comment_copy[REASONLEN] = '\0'; + + strip_colour(comment_copy); - strip_colour(comment); + hdata.client = client_p; + hdata.reason = hdata.orig_reason = comment; + call_hook(h_client_quit, &hdata); + comment = hdata.reason; - if(ConfigFileEntry.client_exit && comment[0]) + /* don't add Quit: if the reason comes from a module */ + if (ConfigFileEntry.client_exit && hdata.reason == hdata.orig_reason && comment[0]) { snprintf(reason, sizeof(reason), "Quit: %s", comment); comment = reason; } - if(!IsOper(source_p) && + if (comment == NULL || (!IsOperGeneral(source_p) && hdata.reason == hdata.orig_reason && (source_p->localClient->firsttime + ConfigFileEntry.anti_spam_exit_message_time) > - rb_current_time()) + rb_current_time())) { exit_client(client_p, source_p, source_p, "Client Quit"); - return 0; + return; } exit_client(client_p, source_p, source_p, comment); - - return 0; } /* ** ms_quit ** parv[1] = comment */ -static int +static void ms_quit(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) { char *comment = LOCAL_COPY((parc > 1 && parv[1]) ? parv[1] : client_p->name); @@ -97,6 +112,4 @@ ms_quit(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_ comment[REASONLEN] = '\0'; exit_client(client_p, source_p, source_p, comment); - - return 0; }