[5ebff60] | 1 | /********************************************************************\ |
---|
[ebaebfe] | 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[0e788f5] | 4 | * Copyright 2002-2012 Wilmer van der Gaast and others * |
---|
[ebaebfe] | 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* The IRC-based UI - Sending responses to commands/etc. */ |
---|
| 8 | |
---|
| 9 | /* |
---|
| 10 | This program is free software; you can redistribute it and/or modify |
---|
| 11 | it under the terms of the GNU General Public License as published by |
---|
| 12 | the Free Software Foundation; either version 2 of the License, or |
---|
| 13 | (at your option) any later version. |
---|
| 14 | |
---|
| 15 | This program is distributed in the hope that it will be useful, |
---|
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 18 | GNU General Public License for more details. |
---|
| 19 | |
---|
| 20 | You should have received a copy of the GNU General Public License with |
---|
| 21 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
[6f10697] | 22 | if not, write to the Free Software Foundation, Inc., 51 Franklin St., |
---|
| 23 | Fifth Floor, Boston, MA 02110-1301 USA |
---|
[ebaebfe] | 24 | */ |
---|
| 25 | |
---|
| 26 | #include "bitlbee.h" |
---|
| 27 | |
---|
[5ebff60] | 28 | void irc_send_num(irc_t *irc, int code, char *format, ...) |
---|
[ebaebfe] | 29 | { |
---|
| 30 | char text[IRC_MAX_LINE]; |
---|
| 31 | va_list params; |
---|
[5ebff60] | 32 | |
---|
| 33 | va_start(params, format); |
---|
| 34 | g_vsnprintf(text, IRC_MAX_LINE, format, params); |
---|
| 35 | va_end(params); |
---|
| 36 | |
---|
| 37 | irc_write(irc, ":%s %03d %s %s", irc->root->host, code, irc->user->nick ? : "*", text); |
---|
[ebaebfe] | 38 | } |
---|
| 39 | |
---|
[5ebff60] | 40 | void irc_send_login(irc_t *irc) |
---|
[ebaebfe] | 41 | { |
---|
[5ebff60] | 42 | irc_send_num(irc, 1, ":Welcome to the %s gateway, %s", PACKAGE, irc->user->nick); |
---|
| 43 | irc_send_num(irc, 2, ":Host %s is running %s %s %s/%s.", irc->root->host, |
---|
| 44 | PACKAGE, BITLBEE_VERSION, ARCH, CPU); |
---|
| 45 | irc_send_num(irc, 3, ":%s", IRCD_INFO); |
---|
| 46 | irc_send_num(irc, 4, "%s %s %s %s", irc->root->host, BITLBEE_VERSION, UMODES UMODES_PRIV, CMODES); |
---|
| 47 | irc_send_num(irc, 5, "PREFIX=(ohv)@%%+ CHANTYPES=%s CHANMODES=,,,%s NICKLEN=%d CHANNELLEN=%d " |
---|
| 48 | "NETWORK=BitlBee SAFELIST CASEMAPPING=rfc1459 MAXTARGETS=1 WATCH=128 " |
---|
| 49 | "FLOOD=0/9999 :are supported by this server", |
---|
| 50 | CTYPES, CMODES, MAX_NICK_LENGTH - 1, MAX_NICK_LENGTH - 1); |
---|
| 51 | irc_send_motd(irc); |
---|
[ebaebfe] | 52 | } |
---|
| 53 | |
---|
[5ebff60] | 54 | void irc_send_motd(irc_t *irc) |
---|
[ebaebfe] | 55 | { |
---|
[fef7813] | 56 | char motd[2048]; |
---|
[570f183] | 57 | ssize_t len; |
---|
[ebaebfe] | 58 | int fd; |
---|
[5ebff60] | 59 | |
---|
| 60 | fd = open(global.conf->motdfile, O_RDONLY); |
---|
| 61 | if (fd == -1 || (len = read(fd, motd, sizeof(motd) - 1)) <= 0) { |
---|
| 62 | irc_send_num(irc, 422, ":We don't need MOTDs."); |
---|
| 63 | } else { |
---|
[fef7813] | 64 | char linebuf[80]; |
---|
[ed320e8] | 65 | char *add = "", max, *in; |
---|
[5ebff60] | 66 | |
---|
[fef7813] | 67 | in = motd; |
---|
| 68 | motd[len] = '\0'; |
---|
[ebaebfe] | 69 | linebuf[79] = len = 0; |
---|
[5ebff60] | 70 | max = sizeof(linebuf) - 1; |
---|
| 71 | |
---|
| 72 | irc_send_num(irc, 375, ":- %s Message Of The Day - ", irc->root->host); |
---|
| 73 | while ((linebuf[len] = *(in++))) { |
---|
| 74 | if (linebuf[len] == '\n' || len == max) { |
---|
[ebaebfe] | 75 | linebuf[len] = 0; |
---|
[5ebff60] | 76 | irc_send_num(irc, 372, ":- %s", linebuf); |
---|
[ebaebfe] | 77 | len = 0; |
---|
[5ebff60] | 78 | } else if (linebuf[len] == '%') { |
---|
[fef7813] | 79 | linebuf[len] = *(in++); |
---|
[5ebff60] | 80 | if (linebuf[len] == 'h') { |
---|
[ebaebfe] | 81 | add = irc->root->host; |
---|
[5ebff60] | 82 | } else if (linebuf[len] == 'v') { |
---|
[ebaebfe] | 83 | add = BITLBEE_VERSION; |
---|
[5ebff60] | 84 | } else if (linebuf[len] == 'n') { |
---|
[ebaebfe] | 85 | add = irc->user->nick; |
---|
[5ebff60] | 86 | } else if (linebuf[len] == '\0') { |
---|
| 87 | in--; |
---|
| 88 | } else { |
---|
[ebaebfe] | 89 | add = "%"; |
---|
[5ebff60] | 90 | } |
---|
| 91 | |
---|
| 92 | strncpy(linebuf + len, add, max - len); |
---|
| 93 | while (linebuf[++len]) { |
---|
| 94 | ; |
---|
| 95 | } |
---|
| 96 | } else if (len < max) { |
---|
| 97 | len++; |
---|
[ebaebfe] | 98 | } |
---|
| 99 | } |
---|
[5ebff60] | 100 | irc_send_num(irc, 376, ":End of MOTD"); |
---|
| 101 | } |
---|
| 102 | |
---|
| 103 | if (fd != -1) { |
---|
| 104 | close(fd); |
---|
[ebaebfe] | 105 | } |
---|
| 106 | } |
---|
| 107 | |
---|
[3864c08] | 108 | /* Used by some funcs that generate PRIVMSGs to figure out if we're talking to |
---|
| 109 | this person in /query or in a control channel. WARNING: callers rely on |
---|
| 110 | this returning a pointer at irc->user_nick, not a copy of it. */ |
---|
[5ebff60] | 111 | const char *irc_user_msgdest(irc_user_t *iu) |
---|
[ebaebfe] | 112 | { |
---|
[e67e513] | 113 | irc_t *irc = iu->irc; |
---|
[f7ca587] | 114 | irc_channel_t *ic = NULL; |
---|
[e67e513] | 115 | |
---|
[5ebff60] | 116 | if (iu->last_channel) { |
---|
| 117 | if (iu->last_channel->flags & IRC_CHANNEL_JOINED) { |
---|
[f7ca587] | 118 | ic = iu->last_channel; |
---|
[5ebff60] | 119 | } else { |
---|
| 120 | ic = irc_channel_with_user(irc, iu); |
---|
| 121 | } |
---|
[74f1cde] | 122 | } |
---|
[5ebff60] | 123 | |
---|
| 124 | if (ic) { |
---|
[e67e513] | 125 | return ic->name; |
---|
[5ebff60] | 126 | } else { |
---|
[e67e513] | 127 | return irc->user->nick; |
---|
[5ebff60] | 128 | } |
---|
[e67e513] | 129 | } |
---|
| 130 | |
---|
| 131 | /* cmd = "PRIVMSG" or "NOTICE" */ |
---|
[5ebff60] | 132 | static void irc_usermsg_(const char *cmd, irc_user_t *iu, const char *format, va_list params) |
---|
[e67e513] | 133 | { |
---|
| 134 | char text[2048]; |
---|
| 135 | const char *dst; |
---|
[5ebff60] | 136 | |
---|
| 137 | g_vsnprintf(text, sizeof(text), format, params); |
---|
| 138 | |
---|
| 139 | dst = irc_user_msgdest(iu); |
---|
| 140 | irc_send_msg(iu, cmd, dst, text, NULL); |
---|
[e67e513] | 141 | } |
---|
| 142 | |
---|
[5ebff60] | 143 | void irc_usermsg(irc_user_t *iu, char *format, ...) |
---|
[e67e513] | 144 | { |
---|
| 145 | va_list params; |
---|
[5ebff60] | 146 | |
---|
| 147 | va_start(params, format); |
---|
| 148 | irc_usermsg_("PRIVMSG", iu, format, params); |
---|
| 149 | va_end(params); |
---|
[e67e513] | 150 | } |
---|
| 151 | |
---|
[5ebff60] | 152 | void irc_usernotice(irc_user_t *iu, char *format, ...) |
---|
[e67e513] | 153 | { |
---|
| 154 | va_list params; |
---|
[5ebff60] | 155 | |
---|
| 156 | va_start(params, format); |
---|
| 157 | irc_usermsg_("NOTICE", iu, format, params); |
---|
| 158 | va_end(params); |
---|
[e67e513] | 159 | } |
---|
| 160 | |
---|
[5ebff60] | 161 | void irc_rootmsg(irc_t *irc, char *format, ...) |
---|
[e67e513] | 162 | { |
---|
| 163 | va_list params; |
---|
[5ebff60] | 164 | |
---|
| 165 | va_start(params, format); |
---|
| 166 | irc_usermsg_("PRIVMSG", irc->root, format, params); |
---|
| 167 | va_end(params); |
---|
[ebaebfe] | 168 | } |
---|
[4be8239] | 169 | |
---|
[5ebff60] | 170 | void irc_send_join(irc_channel_t *ic, irc_user_t *iu) |
---|
[4be8239] | 171 | { |
---|
| 172 | irc_t *irc = ic->irc; |
---|
[5ebff60] | 173 | |
---|
| 174 | irc_write(irc, ":%s!%s@%s JOIN :%s", iu->nick, iu->user, iu->host, ic->name); |
---|
| 175 | |
---|
| 176 | if (iu == irc->user) { |
---|
| 177 | irc_write(irc, ":%s MODE %s +%s", irc->root->host, ic->name, ic->mode); |
---|
| 178 | irc_send_names(ic); |
---|
| 179 | if (ic->topic && *ic->topic) { |
---|
| 180 | irc_send_topic(ic, FALSE); |
---|
| 181 | } |
---|
[4be8239] | 182 | } |
---|
| 183 | } |
---|
| 184 | |
---|
[5ebff60] | 185 | void irc_send_part(irc_channel_t *ic, irc_user_t *iu, const char *reason) |
---|
[4be8239] | 186 | { |
---|
[5ebff60] | 187 | irc_write(ic->irc, ":%s!%s@%s PART %s :%s", iu->nick, iu->user, iu->host, ic->name, reason ? : ""); |
---|
[4be8239] | 188 | } |
---|
| 189 | |
---|
[5ebff60] | 190 | void irc_send_quit(irc_user_t *iu, const char *reason) |
---|
[1f0224c] | 191 | { |
---|
[5ebff60] | 192 | irc_write(iu->irc, ":%s!%s@%s QUIT :%s", iu->nick, iu->user, iu->host, reason ? : ""); |
---|
[1f0224c] | 193 | } |
---|
| 194 | |
---|
[5ebff60] | 195 | void irc_send_kick(irc_channel_t *ic, irc_user_t *iu, irc_user_t *kicker, const char *reason) |
---|
[006a84f] | 196 | { |
---|
[5ebff60] | 197 | irc_write(ic->irc, ":%s!%s@%s KICK %s %s :%s", kicker->nick, kicker->user, |
---|
| 198 | kicker->host, ic->name, iu->nick, reason ? : ""); |
---|
[006a84f] | 199 | } |
---|
| 200 | |
---|
[5ebff60] | 201 | void irc_send_names(irc_channel_t *ic) |
---|
[4be8239] | 202 | { |
---|
| 203 | GSList *l; |
---|
| 204 | char namelist[385] = ""; |
---|
[5ebff60] | 205 | |
---|
[4be8239] | 206 | /* RFCs say there is no error reply allowed on NAMES, so when the |
---|
| 207 | channel is invalid, just give an empty reply. */ |
---|
[5ebff60] | 208 | for (l = ic->users; l; l = l->next) { |
---|
[e54112f] | 209 | irc_channel_user_t *icu = l->data; |
---|
| 210 | irc_user_t *iu = icu->iu; |
---|
[5ebff60] | 211 | |
---|
| 212 | if (strlen(namelist) + strlen(iu->nick) > sizeof(namelist) - 4) { |
---|
| 213 | irc_send_num(ic->irc, 353, "= %s :%s", ic->name, namelist); |
---|
[4be8239] | 214 | *namelist = 0; |
---|
| 215 | } |
---|
[5ebff60] | 216 | |
---|
| 217 | if (icu->flags & IRC_CHANNEL_USER_OP) { |
---|
| 218 | strcat(namelist, "@"); |
---|
| 219 | } else if (icu->flags & IRC_CHANNEL_USER_HALFOP) { |
---|
| 220 | strcat(namelist, "%"); |
---|
| 221 | } else if (icu->flags & IRC_CHANNEL_USER_VOICE) { |
---|
| 222 | strcat(namelist, "+"); |
---|
| 223 | } |
---|
| 224 | |
---|
| 225 | strcat(namelist, iu->nick); |
---|
| 226 | strcat(namelist, " "); |
---|
[4be8239] | 227 | } |
---|
[5ebff60] | 228 | |
---|
| 229 | if (*namelist) { |
---|
| 230 | irc_send_num(ic->irc, 353, "= %s :%s", ic->name, namelist); |
---|
| 231 | } |
---|
| 232 | |
---|
| 233 | irc_send_num(ic->irc, 366, "%s :End of /NAMES list", ic->name); |
---|
[4be8239] | 234 | } |
---|
| 235 | |
---|
[5ebff60] | 236 | void irc_send_topic(irc_channel_t *ic, gboolean topic_change) |
---|
[4be8239] | 237 | { |
---|
[5ebff60] | 238 | if (topic_change && ic->topic_who) { |
---|
| 239 | irc_write(ic->irc, ":%s TOPIC %s :%s", ic->topic_who, |
---|
| 240 | ic->name, ic->topic && *ic->topic ? ic->topic : ""); |
---|
| 241 | } else if (ic->topic) { |
---|
| 242 | irc_send_num(ic->irc, 332, "%s :%s", ic->name, ic->topic); |
---|
| 243 | if (ic->topic_who) { |
---|
| 244 | irc_send_num(ic->irc, 333, "%s %s %d", |
---|
| 245 | ic->name, ic->topic_who, (int) ic->topic_time); |
---|
| 246 | } |
---|
| 247 | } else { |
---|
| 248 | irc_send_num(ic->irc, 331, "%s :No topic for this channel", ic->name); |
---|
[83e92bf] | 249 | } |
---|
[4be8239] | 250 | } |
---|
[b95932e] | 251 | |
---|
[5ebff60] | 252 | void irc_send_whois(irc_user_t *iu) |
---|
[b95932e] | 253 | { |
---|
| 254 | irc_t *irc = iu->irc; |
---|
[5ebff60] | 255 | |
---|
| 256 | irc_send_num(irc, 311, "%s %s %s * :%s", |
---|
| 257 | iu->nick, iu->user, iu->host, iu->fullname); |
---|
| 258 | |
---|
| 259 | if (iu->bu) { |
---|
[1d39159] | 260 | bee_user_t *bu = iu->bu; |
---|
[5ebff60] | 261 | |
---|
| 262 | irc_send_num(irc, 312, "%s %s.%s :%s network", iu->nick, bu->ic->acc->user, |
---|
| 263 | bu->ic->acc->server && *bu->ic->acc->server ? bu->ic->acc->server : "", |
---|
| 264 | bu->ic->acc->prpl->name); |
---|
| 265 | |
---|
| 266 | if ((bu->status && *bu->status) || |
---|
| 267 | (bu->status_msg && *bu->status_msg)) { |
---|
[d986463] | 268 | int num = bu->flags & BEE_USER_AWAY ? 301 : 320; |
---|
[5ebff60] | 269 | |
---|
| 270 | if (bu->status && bu->status_msg) { |
---|
| 271 | irc_send_num(irc, num, "%s :%s (%s)", iu->nick, bu->status, bu->status_msg); |
---|
| 272 | } else { |
---|
| 273 | irc_send_num(irc, num, "%s :%s", iu->nick, bu->status ? : bu->status_msg); |
---|
| 274 | } |
---|
| 275 | } else if (!(bu->flags & BEE_USER_ONLINE)) { |
---|
| 276 | irc_send_num(irc, 301, "%s :%s", iu->nick, "User is offline"); |
---|
[eb50495] | 277 | } |
---|
[5ebff60] | 278 | |
---|
| 279 | if (bu->idle_time || bu->login_time) { |
---|
| 280 | irc_send_num(irc, 317, "%s %d %d :seconds idle, signon time", |
---|
| 281 | iu->nick, |
---|
| 282 | bu->idle_time ? (int) (time(NULL) - bu->idle_time) : 0, |
---|
| 283 | (int) bu->login_time); |
---|
[56699f0] | 284 | } |
---|
[5ebff60] | 285 | } else { |
---|
| 286 | irc_send_num(irc, 312, "%s %s :%s", iu->nick, irc->root->host, IRCD_INFO); |
---|
[1d39159] | 287 | } |
---|
[5ebff60] | 288 | |
---|
| 289 | irc_send_num(irc, 318, "%s :End of /WHOIS list", iu->nick); |
---|
[b95932e] | 290 | } |
---|
[2f53ada] | 291 | |
---|
[5ebff60] | 292 | void irc_send_who(irc_t *irc, GSList *l, const char *channel) |
---|
[2f53ada] | 293 | { |
---|
[5ebff60] | 294 | gboolean is_channel = strchr(CTYPES, channel[0]) != NULL; |
---|
| 295 | |
---|
| 296 | while (l) { |
---|
[2f53ada] | 297 | irc_user_t *iu = l->data; |
---|
[5ebff60] | 298 | if (is_channel) { |
---|
| 299 | iu = ((irc_channel_user_t *) iu)->iu; |
---|
| 300 | } |
---|
[2f53ada] | 301 | /* TODO(wilmer): Restore away/channel information here */ |
---|
[5ebff60] | 302 | irc_send_num(irc, 352, "%s %s %s %s %s %c :0 %s", |
---|
| 303 | is_channel ? channel : "*", iu->user, iu->host, irc->root->host, |
---|
| 304 | iu->nick, iu->flags & IRC_USER_AWAY ? 'G' : 'H', |
---|
| 305 | iu->fullname); |
---|
[2f53ada] | 306 | l = l->next; |
---|
| 307 | } |
---|
[5ebff60] | 308 | |
---|
| 309 | irc_send_num(irc, 315, "%s :End of /WHO list", channel); |
---|
[2f53ada] | 310 | } |
---|
[280c56a] | 311 | |
---|
[5ebff60] | 312 | void irc_send_msg(irc_user_t *iu, const char *type, const char *dst, const char *msg, const char *prefix) |
---|
[6761a40] | 313 | { |
---|
| 314 | char last = 0; |
---|
| 315 | const char *s = msg, *line = msg; |
---|
[5ebff60] | 316 | char raw_msg[strlen(msg) + 1024]; |
---|
| 317 | |
---|
| 318 | while (!last) { |
---|
| 319 | if (*s == '\r' && *(s + 1) == '\n') { |
---|
[6761a40] | 320 | s++; |
---|
| 321 | } |
---|
[5ebff60] | 322 | if (*s == '\n') { |
---|
| 323 | last = s[1] == 0; |
---|
| 324 | } else { |
---|
[6761a40] | 325 | last = s[0] == 0; |
---|
| 326 | } |
---|
[5ebff60] | 327 | if (*s == 0 || *s == '\n') { |
---|
| 328 | if (g_strncasecmp(line, "/me ", 4) == 0 && (!prefix || !*prefix) && |
---|
| 329 | g_strcasecmp(type, "PRIVMSG") == 0) { |
---|
| 330 | strcpy(raw_msg, "\001ACTION "); |
---|
| 331 | strncat(raw_msg, line + 4, s - line - 4); |
---|
| 332 | strcat(raw_msg, "\001"); |
---|
| 333 | irc_send_msg_raw(iu, type, dst, raw_msg); |
---|
| 334 | } else { |
---|
[6761a40] | 335 | *raw_msg = '\0'; |
---|
[5ebff60] | 336 | if (prefix && *prefix) { |
---|
| 337 | strcpy(raw_msg, prefix); |
---|
| 338 | } |
---|
| 339 | strncat(raw_msg, line, s - line); |
---|
| 340 | irc_send_msg_raw(iu, type, dst, raw_msg); |
---|
[6761a40] | 341 | } |
---|
| 342 | line = s + 1; |
---|
| 343 | } |
---|
[5ebff60] | 344 | s++; |
---|
[6761a40] | 345 | } |
---|
| 346 | } |
---|
| 347 | |
---|
[5ebff60] | 348 | void irc_send_msg_raw(irc_user_t *iu, const char *type, const char *dst, const char *msg) |
---|
[280c56a] | 349 | { |
---|
[5ebff60] | 350 | irc_write(iu->irc, ":%s!%s@%s %s %s :%s", |
---|
| 351 | iu->nick, iu->user, iu->host, type, dst, msg && *msg ? msg : " "); |
---|
[280c56a] | 352 | } |
---|
[0b5cc72] | 353 | |
---|
[5ebff60] | 354 | void irc_send_msg_f(irc_user_t *iu, const char *type, const char *dst, const char *format, ...) |
---|
[7b59872] | 355 | { |
---|
| 356 | char text[IRC_MAX_LINE]; |
---|
| 357 | va_list params; |
---|
[5ebff60] | 358 | |
---|
| 359 | va_start(params, format); |
---|
| 360 | g_vsnprintf(text, IRC_MAX_LINE, format, params); |
---|
| 361 | va_end(params); |
---|
| 362 | |
---|
| 363 | irc_write(iu->irc, ":%s!%s@%s %s %s :%s", |
---|
| 364 | iu->nick, iu->user, iu->host, type, dst, text); |
---|
[7b59872] | 365 | } |
---|
| 366 | |
---|
[5ebff60] | 367 | void irc_send_nick(irc_user_t *iu, const char *new) |
---|
[0b5cc72] | 368 | { |
---|
[5ebff60] | 369 | irc_write(iu->irc, ":%s!%s@%s NICK %s", |
---|
| 370 | iu->nick, iu->user, iu->host, new); |
---|
[0b5cc72] | 371 | } |
---|
[6a9d068] | 372 | |
---|
| 373 | /* Send an update of a user's mode inside a channel, compared to what it was. */ |
---|
[5ebff60] | 374 | void irc_send_channel_user_mode_diff(irc_channel_t *ic, irc_user_t *iu, |
---|
| 375 | irc_channel_user_flags_t old, irc_channel_user_flags_t new) |
---|
[6a9d068] | 376 | { |
---|
[5ebff60] | 377 | char changes[3 * (5 + strlen(iu->nick))]; |
---|
| 378 | char from[strlen(ic->irc->root->nick) + strlen(ic->irc->root->user) + strlen(ic->irc->root->host) + 3]; |
---|
[6a9d068] | 379 | int n; |
---|
[5ebff60] | 380 | |
---|
[6a9d068] | 381 | *changes = '\0'; n = 0; |
---|
[5ebff60] | 382 | if ((old & IRC_CHANNEL_USER_OP) != (new & IRC_CHANNEL_USER_OP)) { |
---|
| 383 | n++; |
---|
| 384 | if (new & IRC_CHANNEL_USER_OP) { |
---|
| 385 | strcat(changes, "+o"); |
---|
| 386 | } else { |
---|
| 387 | strcat(changes, "-o"); |
---|
| 388 | } |
---|
[6a9d068] | 389 | } |
---|
[5ebff60] | 390 | if ((old & IRC_CHANNEL_USER_HALFOP) != (new & IRC_CHANNEL_USER_HALFOP)) { |
---|
| 391 | n++; |
---|
| 392 | if (new & IRC_CHANNEL_USER_HALFOP) { |
---|
| 393 | strcat(changes, "+h"); |
---|
| 394 | } else { |
---|
| 395 | strcat(changes, "-h"); |
---|
| 396 | } |
---|
| 397 | } |
---|
| 398 | if ((old & IRC_CHANNEL_USER_VOICE) != (new & IRC_CHANNEL_USER_VOICE)) { |
---|
| 399 | n++; |
---|
| 400 | if (new & IRC_CHANNEL_USER_VOICE) { |
---|
| 401 | strcat(changes, "+v"); |
---|
| 402 | } else { |
---|
| 403 | strcat(changes, "-v"); |
---|
| 404 | } |
---|
[6a9d068] | 405 | } |
---|
[5ebff60] | 406 | while (n) { |
---|
| 407 | strcat(changes, " "); |
---|
| 408 | strcat(changes, iu->nick); |
---|
| 409 | n--; |
---|
[6a9d068] | 410 | } |
---|
[5ebff60] | 411 | |
---|
| 412 | if (set_getbool(&ic->irc->b->set, "simulate_netsplit")) { |
---|
| 413 | g_snprintf(from, sizeof(from), "%s", ic->irc->root->host); |
---|
| 414 | } else { |
---|
| 415 | g_snprintf(from, sizeof(from), "%s!%s@%s", ic->irc->root->nick, |
---|
| 416 | ic->irc->root->user, ic->irc->root->host); |
---|
| 417 | } |
---|
| 418 | |
---|
| 419 | if (*changes) { |
---|
| 420 | irc_write(ic->irc, ":%s MODE %s %s", from, ic->name, changes); |
---|
[6a9d068] | 421 | } |
---|
| 422 | } |
---|
[1aa74f55] | 423 | |
---|
[5ebff60] | 424 | void irc_send_invite(irc_user_t *iu, irc_channel_t *ic) |
---|
[1aa74f55] | 425 | { |
---|
| 426 | irc_t *irc = iu->irc; |
---|
[5ebff60] | 427 | |
---|
| 428 | irc_write(iu->irc, ":%s!%s@%s INVITE %s :%s", |
---|
| 429 | iu->nick, iu->user, iu->host, irc->user->nick, ic->name); |
---|
[1aa74f55] | 430 | } |
---|