source: irc_channel.c @ 25f6151

Last change on this file since 25f6151 was 25f6151, checked in by dequis <dx@…>, at 2015-11-28T21:09:27Z

set_eval_channel_type: skip the channel free/init if nothing is changed

Fixes trac ticket 1108: https://bugs.bitlbee.org/bitlbee/ticket/1108

I would have ignored that ticket (it's about some sort of legacy
migration) but the fix sounds like a sane thing to do

  • Property mode set to 100644
File size: 22.9 KB
RevLine 
[5ebff60]1/********************************************************************\
[4be8239]2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
[0e788f5]4  * Copyright 2002-2013 Wilmer van der Gaast and others                *
[4be8239]5  \********************************************************************/
6
7/* The IRC-based UI - Representing (virtual) channels.                  */
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
[4be8239]24*/
25
26#include "bitlbee.h"
27
[5ebff60]28static char *set_eval_channel_type(set_t *set, char *value);
29static gint irc_channel_user_cmp(gconstpointer a_, gconstpointer b_);
[280c56a]30static const struct irc_channel_funcs control_channel_funcs;
[5a75d15]31
32extern const struct irc_channel_funcs irc_channel_im_chat_funcs;
[280c56a]33
[5ebff60]34irc_channel_t *irc_channel_new(irc_t *irc, const char *name)
[4be8239]35{
36        irc_channel_t *ic;
[d4a4f1a]37        set_t *s;
[5ebff60]38
39        if (!irc_channel_name_ok(name) || irc_channel_by_name(irc, name)) {
[4be8239]40                return NULL;
[5ebff60]41        }
42
43        ic = g_new0(irc_channel_t, 1);
[4be8239]44        ic->irc = irc;
[5ebff60]45        ic->name = g_strdup(name);
46        strcpy(ic->mode, CMODE);
47
48        irc_channel_add_user(ic, irc->root);
49
50        irc->channels = g_slist_append(irc->channels, ic);
51
52        set_add(&ic->set, "auto_join", "false", set_eval_bool, ic);
53
54        s = set_add(&ic->set, "type", "control", set_eval_channel_type, ic);
[d4a4f1a]55        s->flags |= SET_NOSAVE;    /* Layer violation (XML format detail) */
[5ebff60]56
57        if (name[0] == '&') {
58                set_setstr(&ic->set, "type", "control");
59        } else { /* if( name[0] == '#' ) */
60                set_setstr(&ic->set, "type", "chat");
61        }
62
[4be8239]63        return ic;
64}
65
[5ebff60]66irc_channel_t *irc_channel_by_name(irc_t *irc, const char *name)
[b9e020a]67{
68        GSList *l;
[5ebff60]69
70        for (l = irc->channels; l; l = l->next) {
[b9e020a]71                irc_channel_t *ic = l->data;
[5ebff60]72
73                if (irc_channel_name_cmp(name, ic->name) == 0) {
[b9e020a]74                        return ic;
[5ebff60]75                }
[b9e020a]76        }
[5ebff60]77
[b9e020a]78        return NULL;
79}
80
[5ebff60]81irc_channel_t *irc_channel_get(irc_t *irc, char *id)
[36562b0]82{
83        irc_channel_t *ic, *ret = NULL;
84        GSList *l;
85        int nr;
[5ebff60]86
87        if (sscanf(id, "%d", &nr) == 1 && nr < 1000) {
88                for (l = irc->channels; l; l = l->next) {
[36562b0]89                        ic = l->data;
[5ebff60]90                        if ((nr--) == 0) {
[36562b0]91                                return ic;
[5ebff60]92                        }
[36562b0]93                }
[5ebff60]94
[36562b0]95                return NULL;
96        }
[5ebff60]97
[36562b0]98        /* Exact match first: Partial match only sucks if there's a channel
99           #aa and #aabb */
[5ebff60]100        if ((ret = irc_channel_by_name(irc, id))) {
[36562b0]101                return ret;
[5ebff60]102        }
103
104        for (l = irc->channels; l; l = l->next) {
[36562b0]105                ic = l->data;
[5ebff60]106
107                if (strstr(ic->name, id)) {
[36562b0]108                        /* Make sure it's a unique match. */
[5ebff60]109                        if (!ret) {
[36562b0]110                                ret = ic;
[5ebff60]111                        } else {
[36562b0]112                                return NULL;
[5ebff60]113                        }
[36562b0]114                }
115        }
[5ebff60]116
[36562b0]117        return ret;
118}
119
[5ebff60]120int irc_channel_free(irc_channel_t *ic)
[63a520b]121{
[7d4ffc2]122        irc_t *irc;
[2fe5eb9]123        GSList *l;
[5ebff60]124
125        if (ic == NULL) {
[7d4ffc2]126                return 0;
[5ebff60]127        }
[7d4ffc2]128        irc = ic->irc;
[5ebff60]129
130        if (ic->flags & IRC_CHANNEL_JOINED) {
131                irc_channel_del_user(ic, irc->user, IRC_CDU_KICK, "Cleaning up channel");
132        }
133
134        if (ic->f->_free) {
135                ic->f->_free(ic);
136        }
137
138        while (ic->set) {
139                set_del(&ic->set, ic->set->key);
140        }
141
142        irc->channels = g_slist_remove(irc->channels, ic);
143        while (ic->users) {
144                g_free(ic->users->data);
145                ic->users = g_slist_remove(ic->users, ic->users->data);
146        }
147
148        for (l = irc->users; l; l = l->next) {
[2fe5eb9]149                irc_user_t *iu = l->data;
[5ebff60]150
151                if (iu->last_channel == ic) {
[2fe5eb9]152                        iu->last_channel = irc->default_channel;
[5ebff60]153                }
154        }
155
156        if (ic->pastebuf_timer) {
157                b_event_remove(ic->pastebuf_timer);
[2fe5eb9]158        }
[5ebff60]159
160        g_free(ic->name);
161        g_free(ic->topic);
162        g_free(ic->topic_who);
163        g_free(ic);
164
[63a520b]165        return 1;
166}
167
[5ebff60]168struct irc_channel_free_data {
[ab6006c]169        irc_t *irc;
170        irc_channel_t *ic;
171        char *name;
172};
173
[5ebff60]174static gboolean irc_channel_free_callback(gpointer data, gint fd, b_input_condition cond)
[ab6006c]175{
176        struct irc_channel_free_data *d = data;
[5ebff60]177
178        if (g_slist_find(irc_connection_list, d->irc) &&
179            irc_channel_by_name(d->irc, d->name) == d->ic &&
180            !(d->ic->flags & IRC_CHANNEL_JOINED)) {
181                irc_channel_free(d->ic);
182        }
183
184        g_free(d->name);
185        g_free(d);
[ab6006c]186        return FALSE;
187}
188
189/* Free the channel, but via the event loop, so after finishing whatever event
190   we're currently handling. */
[5ebff60]191void irc_channel_free_soon(irc_channel_t *ic)
[ab6006c]192{
[5ebff60]193        struct irc_channel_free_data *d = g_new0(struct irc_channel_free_data, 1);
194
[ab6006c]195        d->irc = ic->irc;
196        d->ic = ic;
[5ebff60]197        d->name = g_strdup(ic->name);
198
199        b_timeout_add(0, irc_channel_free_callback, d);
[ab6006c]200}
201
[5ebff60]202static char *set_eval_channel_type(set_t *set, char *value)
[2b8473c]203{
204        struct irc_channel *ic = set->data;
205        const struct irc_channel_funcs *new;
[5ebff60]206
207        if (strcmp(value, "control") == 0) {
[2b8473c]208                new = &control_channel_funcs;
[5ebff60]209        } else if (ic != ic->irc->default_channel && strcmp(value, "chat") == 0) {
[5a75d15]210                new = &irc_channel_im_chat_funcs;
[5ebff60]211        } else {
[2b8473c]212                return SET_INVALID;
[5ebff60]213        }
214
[25f6151]215        /* Skip the free/init if nothing is being changed */
216        if (ic->f == new) {
217                return value;
218        }
219
[2b8473c]220        /* TODO: Return values. */
[5ebff60]221        if (ic->f && ic->f->_free) {
222                ic->f->_free(ic);
223        }
224
[2b8473c]225        ic->f = new;
[5ebff60]226
227        if (ic->f && ic->f->_init) {
228                ic->f->_init(ic);
229        }
230
[2b8473c]231        return value;
232}
233
[5ebff60]234int irc_channel_add_user(irc_channel_t *ic, irc_user_t *iu)
[4be8239]235{
[e54112f]236        irc_channel_user_t *icu;
[5ebff60]237
238        if (irc_channel_has_user(ic, iu)) {
[4be8239]239                return 0;
[5ebff60]240        }
241
242        icu = g_new0(irc_channel_user_t, 1);
[e54112f]243        icu->iu = iu;
[5ebff60]244
245        ic->users = g_slist_insert_sorted(ic->users, icu, irc_channel_user_cmp);
246
247        irc_channel_update_ops(ic, set_getstr(&ic->irc->b->set, "ops"));
248
249        if (iu == ic->irc->user || ic->flags & IRC_CHANNEL_JOINED) {
[4be8239]250                ic->flags |= IRC_CHANNEL_JOINED;
[5ebff60]251                irc_send_join(ic, iu);
[4be8239]252        }
[5ebff60]253
[4be8239]254        return 1;
255}
256
[5ebff60]257int irc_channel_del_user(irc_channel_t *ic, irc_user_t *iu, irc_channel_del_user_type_t type, const char *msg)
[4be8239]258{
[e54112f]259        irc_channel_user_t *icu;
[5ebff60]260
261        if (!(icu = irc_channel_has_user(ic, iu))) {
[d088ee8]262                if (iu == ic->irc->user && type == IRC_CDU_KICK) {
263                        /* an error happened before joining, inform the client with a numeric */
264                        irc_send_num(ic->irc, 403, "%s :Error joining channel (check control channel?)", ic->name);
265                }
[4be8239]266                return 0;
[5ebff60]267        }
268
269        ic->users = g_slist_remove(ic->users, icu);
270        g_free(icu);
271
272        if (!(ic->flags & IRC_CHANNEL_JOINED) || type == IRC_CDU_SILENT) {
273        }
274        /* Do nothing. The caller should promise it won't screw
275           up state of the IRC client. :-) */
276        else if (type == IRC_CDU_PART) {
277                irc_send_part(ic, iu, msg);
278        } else if (type == IRC_CDU_KICK) {
279                irc_send_kick(ic, iu, ic->irc->root, msg);
280        }
281
282        if (iu == ic->irc->user) {
[4be8239]283                ic->flags &= ~IRC_CHANNEL_JOINED;
[5ebff60]284
285                if (ic->irc->status & USTATUS_SHUTDOWN) {
[06f9548]286                        /* Don't do anything fancy when we're shutting down anyway. */
[5ebff60]287                } else if (ic->flags & IRC_CHANNEL_TEMP) {
288                        irc_channel_free_soon(ic);
289                } else {
[9052bc1]290                        /* Flush userlist now. The user won't see it anyway. */
[5ebff60]291                        while (ic->users) {
292                                g_free(ic->users->data);
293                                ic->users = g_slist_remove(ic->users, ic->users->data);
[9052bc1]294                        }
[5ebff60]295                        irc_channel_add_user(ic, ic->irc->root);
[9052bc1]296                }
[1c40aa7]297        }
[5ebff60]298
[4be8239]299        return 1;
300}
301
[5ebff60]302irc_channel_user_t *irc_channel_has_user(irc_channel_t *ic, irc_user_t *iu)
[0b5cc72]303{
[e54112f]304        GSList *l;
[5ebff60]305
306        for (l = ic->users; l; l = l->next) {
[e54112f]307                irc_channel_user_t *icu = l->data;
[5ebff60]308
309                if (icu->iu == iu) {
[e54112f]310                        return icu;
[5ebff60]311                }
[e54112f]312        }
[5ebff60]313
[e54112f]314        return NULL;
[0b5cc72]315}
316
[bb151f7]317/* Find a channel we're currently in, that currently has iu in it. */
[5ebff60]318struct irc_channel *irc_channel_with_user(irc_t *irc, irc_user_t *iu)
[bb151f7]319{
320        GSList *l;
[5ebff60]321
322        for (l = irc->channels; l; l = l->next) {
[bb151f7]323                irc_channel_t *ic = l->data;
[5ebff60]324
325                if (strcmp(set_getstr(&ic->set, "type"), "control") != 0) {
[bb151f7]326                        continue;
[5ebff60]327                }
328
329                if ((ic->flags & IRC_CHANNEL_JOINED) &&
330                    irc_channel_has_user(ic, iu)) {
[bb151f7]331                        return ic;
[5ebff60]332                }
[bb151f7]333        }
[5ebff60]334
[bb151f7]335        /* If there was no match, try once more but just see if the user
336           *would* be in the channel, i.e. if s/he were online. */
[5ebff60]337        if (iu->bu == NULL) {
[bb151f7]338                return NULL;
[5ebff60]339        }
340
341        for (l = irc->channels; l; l = l->next) {
[bb151f7]342                irc_channel_t *ic = l->data;
[5ebff60]343
344                if (strcmp(set_getstr(&ic->set, "type"), "control") != 0) {
[bb151f7]345                        continue;
[5ebff60]346                }
347
348                if ((ic->flags & IRC_CHANNEL_JOINED) &&
349                    irc_channel_wants_user(ic, iu)) {
[bb151f7]350                        return ic;
[5ebff60]351                }
[bb151f7]352        }
[5ebff60]353
[bb151f7]354        return NULL;
355}
356
[5ebff60]357int irc_channel_set_topic(irc_channel_t *ic, const char *topic, const irc_user_t *iu)
[4be8239]358{
[5ebff60]359        g_free(ic->topic);
360        ic->topic = g_strdup(topic);
361
362        g_free(ic->topic_who);
363        if (iu) {
364                ic->topic_who = g_strdup_printf("%s!%s@%s", iu->nick, iu->user, iu->host);
365        } else {
[83e92bf]366                ic->topic_who = NULL;
[5ebff60]367        }
368
369        ic->topic_time = time(NULL);
370
371        if (ic->flags & IRC_CHANNEL_JOINED) {
372                irc_send_topic(ic, TRUE);
373        }
374
[4be8239]375        return 1;
376}
[b919363]377
[5ebff60]378void irc_channel_user_set_mode(irc_channel_t *ic, irc_user_t *iu, irc_channel_user_flags_t flags)
[6a9d068]379{
[5ebff60]380        irc_channel_user_t *icu = irc_channel_has_user(ic, iu);
381
382        if (!icu || icu->flags == flags) {
[6a9d068]383                return;
[5ebff60]384        }
385
386        if (ic->flags & IRC_CHANNEL_JOINED) {
387                irc_send_channel_user_mode_diff(ic, iu, icu->flags, flags);
388        }
389
[6a9d068]390        icu->flags = flags;
391}
392
[5ebff60]393void irc_channel_set_mode(irc_channel_t *ic, const char *s)
[65016a6]394{
395        irc_t *irc = ic->irc;
396        char m[128], st = 1;
397        const char *t;
398        int i;
399        char changes[512], *p, st2 = 2;
[5ebff60]400
401        memset(m, 0, sizeof(m));
402
403        for (t = ic->mode; *t; t++) {
404                if (*t < sizeof(m)) {
405                        m[(int) *t] = 1;
406                }
407        }
408
[65016a6]409        p = changes;
[5ebff60]410        for (t = s; *t; t++) {
411                if (*t == '+' || *t == '-') {
[65016a6]412                        st = *t == '+';
[5ebff60]413                } else if (strchr(CMODES, *t)) {
414                        if (m[(int) *t] != st) {
415                                if (st != st2) {
[65016a6]416                                        st2 = st, *p++ = st ? '+' : '-';
[5ebff60]417                                }
[65016a6]418                                *p++ = *t;
419                        }
[5ebff60]420                        m[(int) *t] = st;
[65016a6]421                }
422        }
423        *p = '\0';
[5ebff60]424
425        memset(ic->mode, 0, sizeof(ic->mode));
426
427        for (i = 'A'; i <= 'z' && strlen(ic->mode) < (sizeof(ic->mode) - 1); i++) {
428                if (m[i]) {
[65016a6]429                        ic->mode[strlen(ic->mode)] = i;
[5ebff60]430                }
431        }
432
433        if (*changes && (ic->flags & IRC_CHANNEL_JOINED)) {
434                irc_write(irc, ":%s!%s@%s MODE %s :%s", irc->root->nick,
435                          irc->root->user, irc->root->host, ic->name,
436                          changes);
437        }
[65016a6]438}
439
[687ec88]440char irc_channel_user_get_prefix(irc_channel_user_t *icu)
441{
442        if (icu->flags & IRC_CHANNEL_USER_OP) {
443                return '@';
444        } else if (icu->flags & IRC_CHANNEL_USER_HALFOP) {
445                return '%';
446        } else if (icu->flags & IRC_CHANNEL_USER_VOICE) {
447                return '+';
448        }
449        return 0;
450}
451
[5ebff60]452void irc_channel_auto_joins(irc_t *irc, account_t *acc)
[c8eeadd]453{
454        GSList *l;
[5ebff60]455
456        for (l = irc->channels; l; l = l->next) {
[c8eeadd]457                irc_channel_t *ic = l->data;
[5ebff60]458                gboolean aj = set_getbool(&ic->set, "auto_join");
[c8eeadd]459                char *type;
[5ebff60]460
461                if (acc &&
462                    (type = set_getstr(&ic->set, "chat_type")) &&
463                    strcmp(type, "room") == 0) {
[c8eeadd]464                        /* Bit of an ugly special case: Handle chatrooms here, we
465                           can only auto-join them if their account is online. */
466                        char *acc_s;
[5ebff60]467
[24de9fa]468                        if (!aj && !(ic->flags & IRC_CHANNEL_JOINED)) {
469                                /* Only proceed if this one's marked as auto_join
470                                   or if we're in it already. (Very likely the IRC
471                                   client auto-(re)joining at reconnect time.) */
[c8eeadd]472                                continue;
[5ebff60]473                        } else if (!(acc_s = set_getstr(&ic->set, "account"))) {
[c8eeadd]474                                continue;
[5ebff60]475                        } else if (account_get(irc->b, acc_s) != acc) {
[c8eeadd]476                                continue;
[5ebff60]477                        } else if (acc->ic == NULL || !(acc->ic->flags & OPT_LOGGED_IN)) {
[c8eeadd]478                                continue;
[5ebff60]479                        } else {
480                                ic->f->join(ic);
481                        }
482                } else if (aj) {
483                        irc_channel_add_user(ic, irc->user);
[c8eeadd]484                }
485        }
486}
487
[5ebff60]488void irc_channel_printf(irc_channel_t *ic, char *format, ...)
[9893da3]489{
490        va_list params;
491        char *text;
[5ebff60]492
493        va_start(params, format);
494        text = g_strdup_vprintf(format, params);
495        va_end(params);
496
497        irc_send_msg(ic->irc->root, "PRIVMSG", ic->name, text, NULL);
498        g_free(text);
[9893da3]499}
500
[5ebff60]501gboolean irc_channel_name_ok(const char *name_)
[b919363]502{
[5ebff60]503        const unsigned char *name = (unsigned char *) name_;
[6b90431]504        int i;
[5ebff60]505
506        if (name_[0] == '\0') {
[a670aeb]507                return FALSE;
[5ebff60]508        }
509
[4c17d19]510        /* Check if the first character is in CTYPES (#&) */
[5ebff60]511        if (strchr(CTYPES, name_[0]) == NULL) {
[4c17d19]512                return FALSE;
[5ebff60]513        }
514
[6b90431]515        /* RFC 1459 keeps amazing me: While only a "few" chars are allowed
516           in nicknames, channel names can be pretty much anything as long
517           as they start with # or &. I'll be a little bit more strict and
518           disallow all non-printable characters. */
[5ebff60]519        for (i = 1; name[i]; i++) {
520                if (name[i] <= ' ' || name[i] == ',') {
[6b90431]521                        return FALSE;
[5ebff60]522                }
523        }
524
[6b90431]525        return TRUE;
526}
527
[5ebff60]528void irc_channel_name_strip(char *name)
[134a02c]529{
530        int i, j;
[5ebff60]531
532        for (i = j = 0; name[i]; i++) {
533                if (name[i] > ' ' && name[i] != ',') {
[134a02c]534                        name[j++] = name[i];
[5ebff60]535                }
536        }
537
[134a02c]538        name[j] = '\0';
539}
540
[5ebff60]541int irc_channel_name_cmp(const char *a_, const char *b_)
[6b90431]542{
543        static unsigned char case_map[256];
[5ebff60]544        const unsigned char *a = (unsigned char *) a_, *b = (unsigned char *) b_;
[6b90431]545        int i;
[5ebff60]546
547        if (case_map['A'] == '\0') {
548                for (i = 33; i < 256; i++) {
549                        if (i != ',') {
[6b90431]550                                case_map[i] = i;
[5ebff60]551                        }
552                }
553
554                for (i = 0; i < 26; i++) {
555                        case_map['A' + i] = 'a' + i;
556                }
557
[6b90431]558                case_map['['] = '{';
559                case_map[']'] = '}';
560                case_map['~'] = '`';
561                case_map['\\'] = '|';
562        }
[5ebff60]563
564        if (!irc_channel_name_ok(a_) || !irc_channel_name_ok(b_)) {
[6b90431]565                return -1;
[5ebff60]566        }
567
568        for (i = 0; a[i] && b[i] && case_map[a[i]] && case_map[b[i]]; i++) {
569                if (case_map[a[i]] == case_map[b[i]]) {
[6b90431]570                        continue;
[5ebff60]571                } else {
[6b90431]572                        return case_map[a[i]] - case_map[b[i]];
[5ebff60]573                }
[6b90431]574        }
[5ebff60]575
[6b90431]576        return case_map[a[i]] - case_map[b[i]];
[b919363]577}
[280c56a]578
[a9b1e0e]579gboolean irc_channel_is_unused(irc_t *irc, char *name)
[e3e2059]580{
581        char *type, *chat_type;
582        irc_channel_t *oic;
583
584        if (!irc_channel_name_ok(name)) {
585                return FALSE;
586        }
587
[a9b1e0e]588        if (!(oic = irc_channel_by_name(irc, name))) {
[e3e2059]589                return TRUE;
590        }
591
592        type = set_getstr(&oic->set, "type");
593        chat_type = set_getstr(&oic->set, "chat_type");
594
595        if (type && chat_type && oic->data == FALSE &&
596            strcmp(type, "chat") == 0 &&
597            strcmp(chat_type, "groupchat") == 0) {
598                /* There's a channel with this name already, but it looks
599                   like it's not in use yet. Most likely the IRC client
600                   rejoined the channel after a reconnect. Remove it so
601                   we can reuse its name. */
602                irc_channel_free(oic);
603                return TRUE;
604        }
605
606        return FALSE;
607}
608
[a9b1e0e]609char *irc_channel_name_gen(irc_t *irc, const char *hint)
[e3e2059]610{
611        char name[MAX_NICK_LENGTH + 1] = { 0 };
612        char *translit_name;
613        gsize bytes_written;
614
615        translit_name = g_convert_with_fallback(hint, -1, "ASCII//TRANSLIT", "UTF-8", "", NULL, &bytes_written, NULL);
[b6a3fbf]616
617        if (!translit_name) {
618                /* Same thing as in nick_gen() in nick.c, try again without //TRANSLIT */
619                translit_name = g_convert_with_fallback(hint, -1, "ASCII", "UTF-8", "", NULL, &bytes_written, NULL);
620        }
621
622        if (!translit_name) {
623                return NULL;
624        }
625
[e3e2059]626        if (bytes_written > MAX_NICK_LENGTH) {
627                translit_name[MAX_NICK_LENGTH] = '\0';
628        }
629
630        name[0] = '#';
631        strncpy(name + 1, translit_name, MAX_NICK_LENGTH - 1);
632        name[MAX_NICK_LENGTH] = '\0';
633
634        g_free(translit_name);
635
636        irc_channel_name_strip(name);
637
[a9b1e0e]638        if (set_getbool(&irc->b->set, "lcnicks")) {
639                nick_lc(irc, name + 1);
[e3e2059]640        }
641
[a9b1e0e]642        while (!irc_channel_is_unused(irc, name)) {
[e3e2059]643                underscore_dedupe(name);
644        }
645
646        return g_strdup(name);
647}
648
649gboolean irc_channel_name_hint(irc_channel_t *ic, const char *name)
650{
651        irc_t *irc = ic->irc;
652        char *full_name;
653
654        /* Don't rename a channel if the user's in it already. */
655        if (ic->flags & IRC_CHANNEL_JOINED) {
656                return FALSE;
657        }
658
[a9b1e0e]659        if (!(full_name = irc_channel_name_gen(irc, name))) {
[e3e2059]660                return FALSE;
661        }
662
663        g_free(ic->name);
664        ic->name = full_name;
665
666        return TRUE;
667}
668
[5ebff60]669static gint irc_channel_user_cmp(gconstpointer a_, gconstpointer b_)
[e54112f]670{
671        const irc_channel_user_t *a = a_, *b = b_;
[5ebff60]672
673        return irc_user_cmp(a->iu, b->iu);
[e54112f]674}
675
[5ebff60]676void irc_channel_update_ops(irc_channel_t *ic, char *value)
[c5aefa4]677{
[5ebff60]678        irc_channel_user_set_mode(ic, ic->irc->root,
679                                  (strcmp(value, "both") == 0 ||
680                                   strcmp(value, "root") == 0) ? IRC_CHANNEL_USER_OP : 0);
681        irc_channel_user_set_mode(ic, ic->irc->user,
682                                  (strcmp(value, "both") == 0 ||
683                                   strcmp(value, "user") == 0) ? IRC_CHANNEL_USER_OP : 0);
[c5aefa4]684}
685
[5ebff60]686char *set_eval_irc_channel_ops(set_t *set, char *value)
[c5aefa4]687{
688        irc_t *irc = set->data;
689        GSList *l;
[5ebff60]690
691        if (strcmp(value, "both") != 0 && strcmp(value, "none") != 0 &&
692            strcmp(value, "user") != 0 && strcmp(value, "root") != 0) {
[c5aefa4]693                return SET_INVALID;
[5ebff60]694        }
695
696        for (l = irc->channels; l; l = l->next) {
697                irc_channel_update_ops(l->data, value);
698        }
699
[c5aefa4]700        return value;
701}
702
[280c56a]703/* Channel-type dependent functions, for control channels: */
[5ebff60]704static gboolean control_channel_privmsg(irc_channel_t *ic, const char *msg)
[280c56a]705{
[bce78c8]706        irc_t *irc = ic->irc;
[f7ca587]707        irc_user_t *iu;
[bce78c8]708        const char *s;
[5ebff60]709
[bce78c8]710        /* Scan for non-whitespace chars followed by a colon: */
[5ebff60]711        for (s = msg; *s && !g_ascii_isspace(*s) && *s != ':' && *s != ','; s++) {
712        }
713
714        if (*s == ':' || *s == ',') {
715                char to[s - msg + 1];
716
717                memset(to, 0, sizeof(to));
718                strncpy(to, msg, s - msg);
719                while (*(++s) && g_ascii_isspace(*s)) {
720                }
[f7ca587]721                msg = s;
[5ebff60]722
723                if (!(iu = irc_user_by_name(irc, to))) {
724                        irc_channel_printf(ic, "User does not exist: %s", to);
725                } else {
[f7ca587]726                        ic->last_target = iu;
[5ebff60]727                }
728        } else if (g_strcasecmp(set_getstr(&irc->b->set, "default_target"), "last") == 0 &&
729                   ic->last_target && g_slist_find(irc->users, ic->last_target)) {
[f7ca587]730                iu = ic->last_target;
[5ebff60]731        } else {
[f7ca587]732                iu = irc->root;
[5ebff60]733        }
734
735        if (iu && iu->f->privmsg) {
[f7ca587]736                iu->last_channel = ic;
[5ebff60]737                iu->f->privmsg(iu, msg);
[bce78c8]738        }
[5ebff60]739
[280c56a]740        return TRUE;
741}
742
[5ebff60]743static gboolean control_channel_invite(irc_channel_t *ic, irc_user_t *iu)
[46d215d]744{
745        struct irc_control_channel *icc = ic->data;
746        bee_user_t *bu = iu->bu;
[5ebff60]747
748        if (bu == NULL) {
[46d215d]749                return FALSE;
[5ebff60]750        }
751
752        if (icc->type != IRC_CC_TYPE_GROUP) {
753                irc_send_num(ic->irc, 482, "%s :Invitations are only possible to fill_by=group channels", ic->name);
[46d215d]754                return FALSE;
755        }
[5ebff60]756
757        bu->ic->acc->prpl->add_buddy(bu->ic, bu->handle,
758                                     icc->group ? icc->group->name : NULL);
759
[46d215d]760        return TRUE;
761}
762
[5ebff60]763static void control_channel_kick(irc_channel_t *ic, irc_user_t *iu, const char *msg)
[7821ee8]764{
765        struct irc_control_channel *icc = ic->data;
766        bee_user_t *bu = iu->bu;
[5ebff60]767
768        if (bu == NULL) {
[7821ee8]769                return;
[5ebff60]770        }
771
772        if (icc->type != IRC_CC_TYPE_GROUP) {
773                irc_send_num(ic->irc, 482, "%s :Kicks are only possible to fill_by=group channels", ic->name);
[7821ee8]774                return;
775        }
[5ebff60]776
777        bu->ic->acc->prpl->remove_buddy(bu->ic, bu->handle,
778                                        icc->group ? icc->group->name : NULL);
[7821ee8]779}
780
[5ebff60]781static char *set_eval_by_account(set_t *set, char *value);
782static char *set_eval_fill_by(set_t *set, char *value);
783static char *set_eval_by_group(set_t *set, char *value);
784static char *set_eval_by_protocol(set_t *set, char *value);
785static char *set_eval_show_users(set_t *set, char *value);
[2b8473c]786
[5ebff60]787static gboolean control_channel_init(irc_channel_t *ic)
[9ac3ed1]788{
789        struct irc_control_channel *icc;
[5ebff60]790
791        set_add(&ic->set, "account", NULL, set_eval_by_account, ic);
792        set_add(&ic->set, "fill_by", "all", set_eval_fill_by, ic);
793        set_add(&ic->set, "group", NULL, set_eval_by_group, ic);
794        set_add(&ic->set, "protocol", NULL, set_eval_by_protocol, ic);
795
[5a61bf59]796        /* When changing the default, also change it below. */
[5ebff60]797        set_add(&ic->set, "show_users", "online+,special%,away", set_eval_show_users, ic);
798
799        ic->data = icc = g_new0(struct irc_control_channel, 1);
[9ac3ed1]800        icc->type = IRC_CC_TYPE_DEFAULT;
[5ebff60]801
[94d5da9c]802        /* Have to run the evaluator to initialize icc->modes. */
[5ebff60]803        set_setstr(&ic->set, "show_users", "online+,special%,away");
804
[65016a6]805        /* For scripts that care. */
[5ebff60]806        irc_channel_set_mode(ic, "+C");
807
[2b8473c]808        return TRUE;
809}
810
[5ebff60]811static gboolean control_channel_join(irc_channel_t *ic)
[c8eeadd]812{
[5ebff60]813        bee_irc_channel_update(ic->irc, ic, NULL);
814
[c8eeadd]815        return TRUE;
816}
817
[5ebff60]818static char *set_eval_by_account(set_t *set, char *value)
[2b8473c]819{
820        struct irc_channel *ic = set->data;
821        struct irc_control_channel *icc = ic->data;
822        account_t *acc;
[5ebff60]823
824        if (!(acc = account_get(ic->irc->b, value))) {
[2b8473c]825                return SET_INVALID;
[5ebff60]826        }
827
[2b8473c]828        icc->account = acc;
[5ebff60]829        if ((icc->type & IRC_CC_TYPE_MASK) == IRC_CC_TYPE_ACCOUNT) {
830                bee_irc_channel_update(ic->irc, ic, NULL);
831        }
832
833        return g_strdup(acc->tag);
[2b8473c]834}
835
[5ebff60]836static char *set_eval_fill_by(set_t *set, char *value)
[2b8473c]837{
838        struct irc_channel *ic = set->data;
839        struct irc_control_channel *icc = ic->data;
[a5c6ebd]840        char *s;
[5ebff60]841
842        icc->type &= ~(IRC_CC_TYPE_MASK | IRC_CC_TYPE_INVERT);
843
[a5c6ebd]844        s = value;
[5ebff60]845        if (s[0] == '!') {
[a5c6ebd]846                icc->type |= IRC_CC_TYPE_INVERT;
[5ebff60]847                s++;
[a5c6ebd]848        }
[5ebff60]849
850        if (strcmp(s, "all") == 0) {
[a5c6ebd]851                icc->type |= IRC_CC_TYPE_DEFAULT;
[5ebff60]852        } else if (strcmp(s, "rest") == 0) {
[a5c6ebd]853                icc->type |= IRC_CC_TYPE_REST;
[5ebff60]854        } else if (strcmp(s, "group") == 0) {
[a5c6ebd]855                icc->type |= IRC_CC_TYPE_GROUP;
[5ebff60]856        } else if (strcmp(s, "account") == 0) {
[a5c6ebd]857                icc->type |= IRC_CC_TYPE_ACCOUNT;
[5ebff60]858        } else if (strcmp(s, "protocol") == 0) {
[a5c6ebd]859                icc->type |= IRC_CC_TYPE_PROTOCOL;
[5ebff60]860        } else {
[2b8473c]861                return SET_INVALID;
[5ebff60]862        }
863
864        bee_irc_channel_update(ic->irc, ic, NULL);
[2b8473c]865        return value;
866}
867
[5ebff60]868static char *set_eval_by_group(set_t *set, char *value)
[2b8473c]869{
870        struct irc_channel *ic = set->data;
871        struct irc_control_channel *icc = ic->data;
[5ebff60]872
873        icc->group = bee_group_by_name(ic->irc->b, value, TRUE);
874        if ((icc->type & IRC_CC_TYPE_MASK) == IRC_CC_TYPE_GROUP) {
875                bee_irc_channel_update(ic->irc, ic, NULL);
876        }
877
878        return g_strdup(icc->group->name);
[2b8473c]879}
880
[5ebff60]881static char *set_eval_by_protocol(set_t *set, char *value)
[7a6ba50]882{
883        struct irc_channel *ic = set->data;
884        struct irc_control_channel *icc = ic->data;
885        struct prpl *prpl;
[5ebff60]886
887        if (!(prpl = find_protocol(value))) {
[7a6ba50]888                return SET_INVALID;
[5ebff60]889        }
890
[7a6ba50]891        icc->protocol = prpl;
[5ebff60]892        if ((icc->type & IRC_CC_TYPE_MASK) == IRC_CC_TYPE_PROTOCOL) {
893                bee_irc_channel_update(ic->irc, ic, NULL);
894        }
895
[7a6ba50]896        return value;
897}
898
[5ebff60]899static char *set_eval_show_users(set_t *set, char *value)
[94d5da9c]900{
901        struct irc_channel *ic = set->data;
902        struct irc_control_channel *icc = ic->data;
[5ebff60]903        char **parts = g_strsplit(value, ",", 0), **part;
[7b8238d]904        char modes[5];
[5ebff60]905
906        memset(modes, 0, 5);
907        for (part = parts; *part; part++) {
[94d5da9c]908                char last, modechar = IRC_CHANNEL_USER_NONE;
[5ebff60]909
910                if (**part == '\0') {
[94d5da9c]911                        goto fail;
[5ebff60]912                }
913
914                last = (*part)[strlen(*part + 1)];
915                if (last == '+') {
[94d5da9c]916                        modechar = IRC_CHANNEL_USER_VOICE;
[5ebff60]917                } else if (last == '%') {
[94d5da9c]918                        modechar = IRC_CHANNEL_USER_HALFOP;
[5ebff60]919                } else if (last == '@') {
[94d5da9c]920                        modechar = IRC_CHANNEL_USER_OP;
[5ebff60]921                }
922
923                if (strncmp(*part, "offline", 7) == 0) {
[94d5da9c]924                        modes[0] = modechar;
[5ebff60]925                } else if (strncmp(*part, "away", 4) == 0) {
[94d5da9c]926                        modes[1] = modechar;
[5ebff60]927                } else if (strncmp(*part, "special", 7) == 0) {
[94d5da9c]928                        modes[2] = modechar;
[5ebff60]929                } else if (strncmp(*part, "online", 6) == 0) {
[7b8238d]930                        modes[3] = modechar;
[5ebff60]931                } else {
[94d5da9c]932                        goto fail;
[5ebff60]933                }
[94d5da9c]934        }
[5ebff60]935        memcpy(icc->modes, modes, 5);
936        bee_irc_channel_update(ic->irc, ic, NULL);
937
938        g_strfreev(parts);
[94d5da9c]939        return value;
[5ebff60]940
[94d5da9c]941fail:
[5ebff60]942        g_strfreev(parts);
943        return SET_INVALID;
[94d5da9c]944}
945
[ac2717b]946/* Figure out if a channel is supposed to have the user, assuming s/he is
947   online or otherwise also selected by the show_users setting. Only works
948   for control channels, but does *not* check if this channel is of that
949   type. Beware! */
[5ebff60]950gboolean irc_channel_wants_user(irc_channel_t *ic, irc_user_t *iu)
[ac2717b]951{
952        struct irc_control_channel *icc = ic->data;
[a5c6ebd]953        gboolean ret = FALSE;
[5ebff60]954
955        if (iu->bu == NULL) {
[ac2717b]956                return FALSE;
[5ebff60]957        }
958
959        switch (icc->type & IRC_CC_TYPE_MASK) {
[ac2717b]960        case IRC_CC_TYPE_GROUP:
[a5c6ebd]961                ret = iu->bu->group == icc->group;
962                break;
[ac2717b]963        case IRC_CC_TYPE_ACCOUNT:
[a5c6ebd]964                ret = iu->bu->ic->acc == icc->account;
965                break;
[ac2717b]966        case IRC_CC_TYPE_PROTOCOL:
[a5c6ebd]967                ret = iu->bu->ic->acc->prpl == icc->protocol;
968                break;
[ac2717b]969        case IRC_CC_TYPE_DEFAULT:
970        default:
[a5c6ebd]971                ret = TRUE;
972                break;
[ac2717b]973        }
[5ebff60]974
975        if (icc->type & IRC_CC_TYPE_INVERT) {
[a5c6ebd]976                ret = !ret;
[5ebff60]977        }
978
[a5c6ebd]979        return ret;
[ac2717b]980}
981
[5ebff60]982static gboolean control_channel_free(irc_channel_t *ic)
[2b8473c]983{
984        struct irc_control_channel *icc = ic->data;
[5ebff60]985
986        set_del(&ic->set, "account");
987        set_del(&ic->set, "fill_by");
988        set_del(&ic->set, "group");
989        set_del(&ic->set, "protocol");
990        set_del(&ic->set, "show_users");
991
992        g_free(icc);
[2b8473c]993        ic->data = NULL;
[5ebff60]994
[65016a6]995        /* For scripts that care. */
[5ebff60]996        irc_channel_set_mode(ic, "-C");
997
[9ac3ed1]998        return TRUE;
999}
1000
[280c56a]1001static const struct irc_channel_funcs control_channel_funcs = {
1002        control_channel_privmsg,
[c8eeadd]1003        control_channel_join,
[9ac3ed1]1004        NULL,
1005        NULL,
[46d215d]1006        control_channel_invite,
[7821ee8]1007        control_channel_kick,
[5ebff60]1008
[9ac3ed1]1009        control_channel_init,
[2b8473c]1010        control_channel_free,
[280c56a]1011};
Note: See TracBrowser for help on using the repository browser.