X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/7637f48f0045c3d3d7a019bb26b8289ffeae819a..09a3057ce9cc09138dd04f07e5390f49a033f2f6:/src/global.c diff --git a/src/global.c b/src/global.c index dd275c2..6944caa 100644 --- a/src/global.c +++ b/src/global.c @@ -20,6 +20,7 @@ #include "conf.h" #include "global.h" +#include "hash.h" #include "modcmd.h" #include "nickserv.h" #include "saxdb.h" @@ -61,6 +62,24 @@ static const struct message_entry msgtab[] = { { "GMSG_MOTD_HEADER", "$bNetwork Announcements$b" }, { "GMSG_MOTD_BAR", "---------------------------------------" }, { "GMSG_MOTD_FOOTER", "--------------- Thank You--------------" }, + + /* These definitions are for other files that make use of global + * notices. Make sure you grep for them if you ever add args + * to the notice. + */ + /* chanserv.c */ + { "CSMSG_REGISTERED_TO", "%s registered to %s by %s." }, + { "CSMSG_CHANNEL_MOVED", "%s moved to %s by %s." }, + { "CSMSG_SUSPENSION_MODIFIED", "%s suspension modified by %s." }, + { "CSMSG_SUSPENDED_BY", "%s suspended by %s." }, + { "CSMSG_UNSUSPENDED_BY", "%s unsuspended by %s." }, + { "CSMSG_OWNERSHIP_TRANSFERRED", "%s ownership transferred to %s by %s." }, + + /* opserv.c */ + { "DEFCON_NETWORK_CHANGED", "Network DefCon level has changed to level %d" }, + { "DEFCON_OPER_LEVEL_CHANGE", "%s is changing the DefCon level to %d" }, + { "DEFCON_TIMEOUT_LEVEL_CHANGE", "The DefCon has changed back to level %d (timeout)" }, + { NULL, NULL } }; @@ -360,6 +379,59 @@ message_send(struct globalMessage *message) } } +void +global_message_args(long targets, const char *language_entry, ...) +{ + struct globalMessage *message; + va_list arg_list; + dict_iterator_t it; + char response[MAXLEN]; + const char *fmt; + + if(!targets || !global) + return; + + fmt = strdup(language_entry); + + /* Notice users/opers/helpers */ + for (it = dict_first(clients); it; it = iter_next(it)) { + struct userNode *luser = iter_data(it); + + language_entry = user_find_message(luser, fmt); + + va_start(arg_list, language_entry); + vsnprintf(response, MAXLEN-2, language_entry, arg_list); + response[MAXLEN-1] = 0; + + message = message_add(targets | MESSAGE_OPTION_SOURCELESS, now, 0, "", response); + if (!message) + continue; + + /* opers */ + if(message->flags & MESSAGE_RECIPIENT_OPERS && IsOper(luser)) { + if(luser->uplink != self) + notice_target(luser->nick, message); + + if ((message->flags & MESSAGE_RECIPIENT_LUSERS) || (message->flags & MESSAGE_RECIPIENT_HELPERS)) + continue; + } + + /* helpers */ + if (message->flags & MESSAGE_RECIPIENT_HELPERS && IsHelper(luser)) { + notice_target(luser->nick, message); + + if (message->flags & MESSAGE_RECIPIENT_LUSERS) + continue; + } + + /* users */ + if (message->flags & MESSAGE_RECIPIENT_LUSERS) + notice_target(luser->nick, message); + } + + message_del(message); +} + void global_message(long targets, char *text) {