source: protocols/nogaim.c @ 188b75e

Last change on this file since 188b75e was 7486853, checked in by dequis <dx@…>, at 2016-12-26T00:20:09Z

Refactor: Split plugin info stuff from load_plugin() into two functions

  • Property mode set to 100644
File size: 21.0 KB
RevLine 
[5ebff60]1/********************************************************************\
[b7d3cc34]2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
[0e788f5]4  * Copyright 2002-2012 Wilmer van der Gaast and others                *
[b7d3cc34]5  \********************************************************************/
6
7/*
8 * nogaim
9 *
10 * Gaim without gaim - for BitlBee
11 *
12 * This file contains functions called by the Gaim IM-modules. It's written
13 * from scratch for BitlBee and doesn't contain any code from Gaim anymore
14 * (except for the function names).
15 */
16
17/*
18  This program is free software; you can redistribute it and/or modify
19  it under the terms of the GNU General Public License as published by
20  the Free Software Foundation; either version 2 of the License, or
21  (at your option) any later version.
22
23  This program is distributed in the hope that it will be useful,
24  but WITHOUT ANY WARRANTY; without even the implied warranty of
25  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  GNU General Public License for more details.
27
28  You should have received a copy of the GNU General Public License with
29  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
[6f10697]30  if not, write to the Free Software Foundation, Inc., 51 Franklin St.,
31  Fifth Floor, Boston, MA  02110-1301  USA
[b7d3cc34]32*/
33
34#define BITLBEE_CORE
35#include <ctype.h>
36
[4cf80bb]37#include "nogaim.h"
38
[b7d3cc34]39GSList *connections;
40
[65e2ce1]41#ifdef WITH_PLUGINS
[d28fe1c4]42GList *plugins = NULL;
43
44static gint pluginscmp(gconstpointer a, gconstpointer b, gpointer data)
45{
46        const struct plugin_info *ia = a;
47        const struct plugin_info *ib = b;
48
49        return g_strcasecmp(ia->name, ib->name);
50}
51
[7486853]52/* semi-private */
53gboolean plugin_info_validate(struct plugin_info *info, const char *path)
[7b23afd]54{
[d28fe1c4]55        GList *l;
[7486853]56        gboolean loaded = FALSE;
57
58        if (!path) {
59                path = "(null)";
60        }
61
62        if (info->abiver != BITLBEE_ABI_VERSION_CODE) {
63                log_message(LOGLVL_ERROR,
64                            "`%s' uses ABI %u but %u is required\n",
65                            path, info->abiver,
66                            BITLBEE_ABI_VERSION_CODE);
67                return FALSE;
68        }
69
70        if (!info->name || !info->version) {
71                log_message(LOGLVL_ERROR,
72                            "Name or version missing from the "
73                            "plugin info in `%s'\n", path);
74                return FALSE;
75        }
76
77        for (l = plugins; l; l = l->next) {
78                struct plugin_info *i = l->data;
79
80                if (g_strcasecmp(i->name, info->name) == 0) {
81                        loaded = TRUE;
82                        break;
83                }
84        }
85
86        if (loaded) {
87                log_message(LOGLVL_WARNING,
88                            "%s plugin already loaded\n",
89                            info->name);
90                return FALSE;
91        }
92
93        return TRUE;
94}
95
96/* semi-private */
97gboolean plugin_info_add(struct plugin_info *info)
98{
99        plugins = g_list_insert_sorted_with_data(plugins, info, pluginscmp, NULL);
100        return TRUE;
101}
102
103gboolean load_plugin(char *path)
104{
[0483e1e]105        struct plugin_info *info = NULL;
[d28fe1c4]106        struct plugin_info * (*info_function) (void) = NULL;
[7b23afd]107        void (*init_function) (void);
[5ebff60]108
[7b23afd]109        GModule *mod = g_module_open(path, G_MODULE_BIND_LAZY);
110
[5ebff60]111        if (!mod) {
[4fe91a1]112                log_message(LOGLVL_ERROR, "Error loading plugin `%s': %s\n", path, g_module_error());
[7b23afd]113                return FALSE;
114        }
115
[d28fe1c4]116        if (g_module_symbol(mod, "init_plugin_info", (gpointer *) &info_function)) {
117                info = info_function();
118
[7486853]119                if (!plugin_info_validate(info, path)) {
[d28fe1c4]120                        g_module_close(mod);
121                        return FALSE;
122                }
123        } else {
124                log_message(LOGLVL_WARNING, "Can't find function `init_plugin_info' in `%s'\n", path);
125        }
126
[5ebff60]127        if (!g_module_symbol(mod, "init_plugin", (gpointer *) &init_function)) {
[7b23afd]128                log_message(LOGLVL_WARNING, "Can't find function `init_plugin' in `%s'\n", path);
[d28fe1c4]129                g_module_close(mod);
[7b23afd]130                return FALSE;
131        }
132
[d28fe1c4]133        if (info_function) {
[7486853]134                plugin_info_add(info);
[d28fe1c4]135        }
[7b23afd]136
[d28fe1c4]137        init_function();
[7b23afd]138        return TRUE;
139}
[b7d3cc34]140
[65e2ce1]141void load_plugins(void)
142{
143        GDir *dir;
144        GError *error = NULL;
145
[4bfca70]146        dir = g_dir_open(global.conf->plugindir, 0, &error);
[65e2ce1]147
148        if (dir) {
149                const gchar *entry;
150                char *path;
151
152                while ((entry = g_dir_read_name(dir))) {
[35712b7]153                        if (!g_str_has_suffix(entry, "." G_MODULE_SUFFIX)) {
154                                continue;
155                        }
156
[4bfca70]157                        path = g_build_filename(global.conf->plugindir, entry, NULL);
[5ebff60]158                        if (!path) {
[65e2ce1]159                                log_message(LOGLVL_WARNING, "Can't build path for %s\n", entry);
160                                continue;
161                        }
162
163                        load_plugin(path);
164
165                        g_free(path);
166                }
167
168                g_dir_close(dir);
169        }
170}
[d28fe1c4]171
172GList *get_plugins()
173{
174        return plugins;
175}
[65e2ce1]176#endif
[b7d3cc34]177
[7b23afd]178GList *protocols = NULL;
[ad9ac5d]179GList *disabled_protocols = NULL;
[5ebff60]180
181void register_protocol(struct prpl *p)
[7b23afd]182{
[90cd6c4]183        int i;
184        gboolean refused = global.conf->protocols != NULL;
[5ebff60]185
186        for (i = 0; global.conf->protocols && global.conf->protocols[i]; i++) {
187                if (g_strcasecmp(p->name, global.conf->protocols[i]) == 0) {
[90cd6c4]188                        refused = FALSE;
[5ebff60]189                }
190        }
[90cd6c4]191
[5ebff60]192        if (refused) {
[ad9ac5d]193                disabled_protocols = g_list_append(disabled_protocols, p);
[5ebff60]194        } else {
[90cd6c4]195                protocols = g_list_append(protocols, p);
[5ebff60]196        }
[7b23afd]197}
198
[ad9ac5d]199static int proto_name_cmp(const void *proto_, const void *name)
[7b23afd]200{
[ad9ac5d]201        const struct prpl *proto = proto_;
202        return g_strcasecmp(proto->name, name);
203}
[5ebff60]204
[ad9ac5d]205struct prpl *find_protocol(const char *name)
206{
207        GList *gl = g_list_find_custom(protocols, name, proto_name_cmp);
208        return gl ? gl->data: NULL;
209}
[5ebff60]210
[ad9ac5d]211gboolean is_protocol_disabled(const char *name)
212{
213        return g_list_find_custom(disabled_protocols, name, proto_name_cmp) != NULL;
[7b23afd]214}
215
[b4f496e]216/* Returns heap allocated string with text attempting to explain why a protocol is missing
217 * Free the return value with g_free() */
218char *explain_unknown_protocol(const char *name)
219{
220        char *extramsg = NULL;
221
222        if (is_protocol_disabled(name)) {
223                return g_strdup("Protocol disabled in the global config (bitlbee.conf)");
224        }
225
226        if (strcmp(name, "yahoo") == 0) {
227                return g_strdup("The old yahoo protocol is gone, try the funyahoo++ libpurple plugin instead.");
228        }
229
230#ifdef WITH_PURPLE
231        if ((strcmp(name, "msn") == 0) ||
232            (strcmp(name, "loubserp-mxit") == 0) ||
233            (strcmp(name, "myspace") == 0)) {
234                return g_strdup("This protocol has been removed from your libpurple version.");
235        }
236
237        if (strcmp(name, "hipchat") == 0) {
238                return g_strdup("This account type isn't supported by libpurple's jabber.");
239        }
240
241#else
242        if (strcmp(name, "aim") == 0 || strcmp(name, "icq") == 0) {
243                return g_strdup("This account uses libpurple specific aliases for oscar. "
244                                "Re-add the account with `account add oscar ...'");
245        }
246
247        extramsg = "If this is a libpurple plugin, you might need to install bitlbee-libpurple instead.";
248#endif
249        return g_strconcat("The protocol plugin is not installed or could not be loaded. "
250                           "Use the `plugins' command to list available protocols. ",
251                           extramsg, NULL);
252}
253
[b7d3cc34]254void nogaim_init()
255{
[0da65d5]256        extern void msn_initmodule();
257        extern void oscar_initmodule();
258        extern void jabber_initmodule();
[1b221e0]259        extern void twitter_initmodule();
[796da03]260        extern void purple_initmodule();
[7b23afd]261
[b7d3cc34]262#ifdef WITH_MSN
[0da65d5]263        msn_initmodule();
[b7d3cc34]264#endif
265
266#ifdef WITH_OSCAR
[0da65d5]267        oscar_initmodule();
[b7d3cc34]268#endif
[5ebff60]269
[b7d3cc34]270#ifdef WITH_JABBER
[0da65d5]271        jabber_initmodule();
[b7d3cc34]272#endif
[7b23afd]273
[1b221e0]274#ifdef WITH_TWITTER
275        twitter_initmodule();
276#endif
277
[796da03]278#ifdef WITH_PURPLE
279        purple_initmodule();
280#endif
[7b23afd]281
[65e2ce1]282#ifdef WITH_PLUGINS
283        load_plugins();
[b7d3cc34]284#endif
285}
286
[808825e]287GList *get_protocols()
288{
289        return protocols;
290}
291
292GList *get_protocols_disabled()
293{
294        return disabled_protocols;
295}
296
[5ebff60]297GSList *get_connections()
298{
299        return connections;
300}
[b7d3cc34]301
[5ebff60]302struct im_connection *imcb_new(account_t *acc)
[b7d3cc34]303{
[0da65d5]304        struct im_connection *ic;
[5ebff60]305
306        ic = g_new0(struct im_connection, 1);
307
[81e04e1]308        ic->bee = acc->bee;
[0da65d5]309        ic->acc = acc;
310        acc->ic = ic;
[5ebff60]311
312        connections = g_slist_append(connections, ic);
313
314        return(ic);
[b7d3cc34]315}
316
[5ebff60]317void imc_free(struct im_connection *ic)
[b7d3cc34]318{
319        account_t *a;
[5ebff60]320
[b7d3cc34]321        /* Destroy the pointer to this connection from the account list */
[5ebff60]322        for (a = ic->bee->accounts; a; a = a->next) {
323                if (a->ic == ic) {
[0da65d5]324                        a->ic = NULL;
[b7d3cc34]325                        break;
326                }
[5ebff60]327        }
328
329        connections = g_slist_remove(connections, ic);
330        g_free(ic);
[b7d3cc34]331}
332
[5ebff60]333static void serv_got_crap(struct im_connection *ic, char *format, ...)
[b7d3cc34]334{
335        va_list params;
[e27661d]336        char *text;
[dfde8e0]337        account_t *a;
[5ebff60]338
[03df717]339        if (!ic->bee->ui->log) {
340                return;
341        }
342
[5ebff60]343        va_start(params, format);
344        text = g_strdup_vprintf(format, params);
345        va_end(params);
346
347        if ((g_strcasecmp(set_getstr(&ic->bee->set, "strip_html"), "always") == 0) ||
348            ((ic->flags & OPT_DOES_HTML) && set_getbool(&ic->bee->set, "strip_html"))) {
349                strip_html(text);
350        }
351
[dfde8e0]352        /* Try to find a different connection on the same protocol. */
[5ebff60]353        for (a = ic->bee->accounts; a; a = a->next) {
354                if (a->prpl == ic->acc->prpl && a->ic != ic) {
[dfde8e0]355                        break;
[5ebff60]356                }
357        }
358
[e27661d]359        /* If we found one, include the screenname in the message. */
[5ebff60]360        if (a) {
[03df717]361                ic->bee->ui->log(ic->bee, ic->acc->tag, text);
[5ebff60]362        } else {
[03df717]363                ic->bee->ui->log(ic->bee, ic->acc->prpl->name, text);
[5ebff60]364        }
365
366        g_free(text);
[b7d3cc34]367}
368
[5ebff60]369void imcb_log(struct im_connection *ic, char *format, ...)
[aef4828]370{
371        va_list params;
372        char *text;
[5ebff60]373
374        va_start(params, format);
375        text = g_strdup_vprintf(format, params);
376        va_end(params);
377
378        if (ic->flags & OPT_LOGGED_IN) {
379                serv_got_crap(ic, "%s", text);
380        } else {
381                serv_got_crap(ic, "Logging in: %s", text);
382        }
383
384        g_free(text);
[aef4828]385}
386
[5ebff60]387void imcb_error(struct im_connection *ic, char *format, ...)
[aef4828]388{
389        va_list params;
390        char *text;
[5ebff60]391
392        va_start(params, format);
393        text = g_strdup_vprintf(format, params);
394        va_end(params);
395
396        if (ic->flags & OPT_LOGGED_IN) {
397                serv_got_crap(ic, "Error: %s", text);
398        } else {
399                serv_got_crap(ic, "Login error: %s", text);
400        }
401
402        g_free(text);
[aef4828]403}
404
[5ebff60]405static gboolean send_keepalive(gpointer d, gint fd, b_input_condition cond)
[b7d3cc34]406{
[0da65d5]407        struct im_connection *ic = d;
[5ebff60]408
409        if ((ic->flags & OPT_PONGS) && !(ic->flags & OPT_PONGED)) {
[e132b60]410                /* This protocol is expected to ack keepalives and hasn't
411                   since the last time we were here. */
[5ebff60]412                imcb_error(ic, "Connection timeout");
413                imc_logout(ic, TRUE);
[e132b60]414                return FALSE;
415        }
416        ic->flags &= ~OPT_PONGED;
[5ebff60]417
418        if (ic->acc->prpl->keepalive) {
419                ic->acc->prpl->keepalive(ic);
420        }
421
[b7d3cc34]422        return TRUE;
423}
424
[5ebff60]425void start_keepalives(struct im_connection *ic, int interval)
[e132b60]426{
[5ebff60]427        b_event_remove(ic->keepalive);
428        ic->keepalive = b_timeout_add(interval, send_keepalive, ic);
429
[e132b60]430        /* Connecting successfully counts as a first successful pong. */
[5ebff60]431        if (ic->flags & OPT_PONGS) {
[e132b60]432                ic->flags |= OPT_PONGED;
[5ebff60]433        }
[e132b60]434}
435
[5ebff60]436void imcb_connected(struct im_connection *ic)
[b7d3cc34]437{
438        /* MSN servers sometimes redirect you to a different server and do
[84c1a0a]439           the whole login sequence again, so these "late" calls to this
[b7d3cc34]440           function should be handled correctly. (IOW, ignored) */
[5ebff60]441        if (ic->flags & OPT_LOGGED_IN) {
[b7d3cc34]442                return;
[5ebff60]443        }
[11e7828]444
[5ebff60]445        if (ic->acc->flags & ACC_FLAG_LOCAL) {
[11e7828]446                GHashTableIter nicks;
447                gpointer k, v;
[5ebff60]448                g_hash_table_iter_init(&nicks, ic->acc->nicks);
449                while (g_hash_table_iter_next(&nicks, &k, &v)) {
450                        ic->acc->prpl->add_buddy(ic, (char *) k, NULL);
[11e7828]451                }
452        }
[5ebff60]453
454        imcb_log(ic, "Logged in");
455
[0da65d5]456        ic->flags |= OPT_LOGGED_IN;
[5ebff60]457        start_keepalives(ic, 60000);
458
[58adb7e]459        /* Necessary to send initial presence status, even if we're not away. */
[5ebff60]460        imc_away_send_update(ic);
461
[280e655]462        /* Apparently we're connected successfully, so reset the
463           exponential backoff timer. */
464        ic->acc->auto_reconnect_delay = 0;
[5ebff60]465
466        if (ic->bee->ui->imc_connected) {
467                ic->bee->ui->imc_connected(ic);
468        }
[b7d3cc34]469}
470
[5ebff60]471gboolean auto_reconnect(gpointer data, gint fd, b_input_condition cond)
[b7d3cc34]472{
473        account_t *a = data;
[5ebff60]474
[b7d3cc34]475        a->reconnect = 0;
[5ebff60]476        account_on(a->bee, a);
477
478        return(FALSE);          /* Only have to run the timeout once */
[b7d3cc34]479}
480
[5ebff60]481void cancel_auto_reconnect(account_t *a)
[b7d3cc34]482{
[5ebff60]483        b_event_remove(a->reconnect);
[b7d3cc34]484        a->reconnect = 0;
485}
486
[5ebff60]487void imc_logout(struct im_connection *ic, int allow_reconnect)
[b7d3cc34]488{
[81e04e1]489        bee_t *bee = ic->bee;
[b7d3cc34]490        account_t *a;
[81e04e1]491        GSList *l;
[4230221]492        int delay;
[5ebff60]493
[8d74291]494        /* Nested calls might happen sometimes, this is probably the best
495           place to catch them. */
[5ebff60]496        if (ic->flags & OPT_LOGGING_OUT) {
[8d74291]497                return;
[5ebff60]498        } else {
[0da65d5]499                ic->flags |= OPT_LOGGING_OUT;
[5ebff60]500        }
501
502        if (ic->bee->ui->imc_disconnected) {
503                ic->bee->ui->imc_disconnected(ic);
504        }
505
506        imcb_log(ic, "Signing off..");
507
[0dd6570]508        /* TBH I don't remember anymore why I didn't just use ic->acc... */
[5ebff60]509        for (a = bee->accounts; a; a = a->next) {
510                if (a->ic == ic) {
[0dd6570]511                        break;
[5ebff60]512                }
513        }
514
515        if (a && !allow_reconnect && !(ic->flags & OPT_LOGGED_IN) &&
516            set_getbool(&a->set, "oauth")) {
[0dd6570]517                /* If this account supports OAuth, we're not logged in yet and
518                   not allowed to retry, assume there were auth issues. Give a
519                   helpful message on what might be necessary to fix this. */
[5ebff60]520                imcb_log(ic, "If you're having problems logging in, try re-requesting "
521                         "an OAuth token: account %s set password \"\"", a->tag);
[0dd6570]522        }
[5ebff60]523
524        for (l = bee->users; l; ) {
[81e04e1]525                bee_user_t *bu = l->data;
[eabc9d2]526                GSList *next = l->next;
[5ebff60]527
528                if (bu->ic == ic) {
529                        bee_user_free(bee, bu);
530                }
531
[eabc9d2]532                l = next;
[b7d3cc34]533        }
[5ebff60]534
535        b_event_remove(ic->keepalive);
[be7a180]536        ic->keepalive = 0;
[5ebff60]537        ic->acc->prpl->logout(ic);
538        b_event_remove(ic->inpa);
539
540        g_free(ic->away);
[be7a180]541        ic->away = NULL;
[5ebff60]542
543        query_del_by_conn((irc_t *) ic->bee->ui_data, ic);
544
545        if (!a) {
[b7d3cc34]546                /* Uhm... This is very sick. */
[5ebff60]547        } else if (allow_reconnect && set_getbool(&bee->set, "auto_reconnect") &&
548                   set_getbool(&a->set, "auto_reconnect") &&
549                   (delay = account_reconnect_delay(a)) > 0) {
550                imcb_log(ic, "Reconnecting in %d seconds..", delay);
551                a->reconnect = b_timeout_add(delay * 1000, auto_reconnect, a);
[b7d3cc34]552        }
[5ebff60]553
554        imc_free(ic);
[b7d3cc34]555}
556
[5ebff60]557void imcb_ask(struct im_connection *ic, char *msg, void *data,
558              query_callback doit, query_callback dont)
[b7d3cc34]559{
[5ebff60]560        query_add((irc_t *) ic->bee->ui_data, ic, msg, doit, dont, g_free, data);
[b7d3cc34]561}
562
[5ebff60]563void imcb_ask_with_free(struct im_connection *ic, char *msg, void *data,
564                        query_callback doit, query_callback dont, query_callback myfree)
[d0527c1]565{
[5ebff60]566        query_add((irc_t *) ic->bee->ui_data, ic, msg, doit, dont, myfree, data);
[d0527c1]567}
568
[5ebff60]569void imcb_add_buddy(struct im_connection *ic, const char *handle, const char *group)
[b7d3cc34]570{
[81e04e1]571        bee_user_t *bu;
572        bee_t *bee = ic->bee;
[8b61469]573        bee_group_t *oldg;
[5ebff60]574
575        if (!(bu = bee_user_by_handle(bee, ic, handle))) {
576                bu = bee_user_new(bee, ic, handle, 0);
577        }
578
[8b61469]579        oldg = bu->group;
[5ebff60]580        bu->group = bee_group_by_name(bee, group, TRUE);
581
582        if (bee->ui->user_group && bu->group != oldg) {
583                bee->ui->user_group(bee, bu);
584        }
[b7d3cc34]585}
586
[5ebff60]587void imcb_rename_buddy(struct im_connection *ic, const char *handle, const char *fullname)
[b7d3cc34]588{
[1d39159]589        bee_t *bee = ic->bee;
[5ebff60]590        bee_user_t *bu = bee_user_by_handle(bee, ic, handle);
591
592        if (!bu || !fullname) {
593                return;
594        }
595
596        if (!bu->fullname || strcmp(bu->fullname, fullname) != 0) {
597                g_free(bu->fullname);
598                bu->fullname = g_strdup(fullname);
599
600                if (bee->ui->user_fullname) {
601                        bee->ui->user_fullname(bee, bu);
602                }
[b7d3cc34]603        }
604}
605
[5ebff60]606void imcb_remove_buddy(struct im_connection *ic, const char *handle, char *group)
[998b103]607{
[5ebff60]608        bee_user_free(ic->bee, bee_user_by_handle(ic->bee, ic, handle));
[998b103]609}
610
[a42fda4]611/* Implements either imcb_buddy_nick_hint() or imcb_buddy_nick_change() depending on the value of 'change' */
612static void buddy_nick_hint_or_change(struct im_connection *ic, const char *handle, const char *nick, gboolean change)
[d06eabf]613{
[6ef9065]614        bee_t *bee = ic->bee;
[5ebff60]615        bee_user_t *bu = bee_user_by_handle(bee, ic, handle);
616
617        if (!bu || !nick) {
618                return;
619        }
620
621        g_free(bu->nick);
622        bu->nick = g_strdup(nick);
623
[a42fda4]624        if (change && bee->ui->user_nick_change) {
625                bee->ui->user_nick_change(bee, bu, nick);
626        } else if (!change && bee->ui->user_nick_hint) {
[5ebff60]627                bee->ui->user_nick_hint(bee, bu, nick);
628        }
[d06eabf]629}
[b7d3cc34]630
[a42fda4]631/* Soft variant, for newly created users. Does nothing if it's already online */
632void imcb_buddy_nick_hint(struct im_connection *ic, const char *handle, const char *nick)
633{
634        buddy_nick_hint_or_change(ic, handle, nick, FALSE);
635}
636
637/* Hard variant, always changes the nick */
638void imcb_buddy_nick_change(struct im_connection *ic, const char *handle, const char *nick)
639{
640        buddy_nick_hint_or_change(ic, handle, nick, TRUE);
641}
[b7d3cc34]642
[5ebff60]643struct imcb_ask_cb_data {
[0da65d5]644        struct im_connection *ic;
[7bf0f5f0]645        char *handle;
646};
647
[098a75b]648static void imcb_ask_cb_free(void *data)
649{
650        struct imcb_ask_cb_data *cbd = data;
651
652        g_free(cbd->handle);
653        g_free(cbd);
654}
655
[5ebff60]656static void imcb_ask_auth_cb_no(void *data)
[7bf0f5f0]657{
[fa295e36]658        struct imcb_ask_cb_data *cbd = data;
[5ebff60]659
660        cbd->ic->acc->prpl->auth_deny(cbd->ic, cbd->handle);
661
[098a75b]662        imcb_ask_cb_free(cbd);
[fa295e36]663}
664
[5ebff60]665static void imcb_ask_auth_cb_yes(void *data)
[fa295e36]666{
667        struct imcb_ask_cb_data *cbd = data;
[5ebff60]668
669        cbd->ic->acc->prpl->auth_allow(cbd->ic, cbd->handle);
670
[098a75b]671        imcb_ask_cb_free(cbd);
[fa295e36]672}
673
[5ebff60]674void imcb_ask_auth(struct im_connection *ic, const char *handle, const char *realname)
[fa295e36]675{
[5ebff60]676        struct imcb_ask_cb_data *data = g_new0(struct imcb_ask_cb_data, 1);
[fa295e36]677        char *s, *realname_ = NULL;
[5ebff60]678
679        if (realname != NULL) {
680                realname_ = g_strdup_printf(" (%s)", realname);
681        }
682
683        s = g_strdup_printf("The user %s%s wants to add you to his/her buddy list.",
684                            handle, realname_ ? realname_ : "");
685
686        g_free(realname_);
687
[fa295e36]688        data->ic = ic;
[5ebff60]689        data->handle = g_strdup(handle);
690        query_add((irc_t *) ic->bee->ui_data, ic, s,
[098a75b]691                  imcb_ask_auth_cb_yes, imcb_ask_auth_cb_no, imcb_ask_cb_free, data);
[fa295e36]692
[098a75b]693        g_free(s);
[7bf0f5f0]694}
695
[5ebff60]696static void imcb_ask_add_cb_yes(void *data)
[7bf0f5f0]697{
[fa295e36]698        struct imcb_ask_cb_data *cbd = data;
[5ebff60]699
700        cbd->ic->acc->prpl->add_buddy(cbd->ic, cbd->handle, NULL);
701
[098a75b]702        imcb_ask_cb_free(data);
[7bf0f5f0]703}
704
[5ebff60]705void imcb_ask_add(struct im_connection *ic, const char *handle, const char *realname)
[b7d3cc34]706{
[098a75b]707        struct imcb_ask_cb_data *data;
[7bf0f5f0]708        char *s;
[5ebff60]709
[7bf0f5f0]710        /* TODO: Make a setting for this! */
[5ebff60]711        if (bee_user_by_handle(ic->bee, ic, handle) != NULL) {
[7bf0f5f0]712                return;
[5ebff60]713        }
714
[098a75b]715        data = g_new0(struct imcb_ask_cb_data, 1);
716
[5ebff60]717        s = g_strdup_printf("The user %s is not in your buddy list yet. Do you want to add him/her now?", handle);
718
[0da65d5]719        data->ic = ic;
[5ebff60]720        data->handle = g_strdup(handle);
721        query_add((irc_t *) ic->bee->ui_data, ic, s,
[098a75b]722                  imcb_ask_add_cb_yes, imcb_ask_cb_free, imcb_ask_cb_free, data);
723
724        g_free(s);
[b7d3cc34]725}
726
[5ebff60]727struct bee_user *imcb_buddy_by_handle(struct im_connection *ic, const char *handle)
[81e04e1]728{
[5ebff60]729        return bee_user_by_handle(ic->bee, ic, handle);
[b7d3cc34]730}
731
[226fce1]732/* The plan is to not allow straight calls to prpl functions anymore, but do
733   them all from some wrappers. We'll start to define some down here: */
734
[5ebff60]735int imc_chat_msg(struct groupchat *c, char *msg, int flags)
[b7d3cc34]736{
[e27661d]737        char *buf = NULL;
[5ebff60]738
739        if ((c->ic->flags & OPT_DOES_HTML) && (g_strncasecmp(msg, "<html>", 6) != 0)) {
740                buf = escape_html(msg);
[b7d3cc34]741                msg = buf;
742        }
[5ebff60]743
744        c->ic->acc->prpl->chat_msg(c, msg, flags);
745        g_free(buf);
746
[0da65d5]747        return 1;
[b7d3cc34]748}
[226fce1]749
[5ebff60]750static char *imc_away_state_find(GList *gcm, char *away, char **message);
[226fce1]751
[5ebff60]752int imc_away_send_update(struct im_connection *ic)
[226fce1]753{
[3e1ef92c]754        char *away, *msg = NULL;
[5ebff60]755
756        if (ic->acc->prpl->away_states == NULL ||
757            ic->acc->prpl->set_away == NULL) {
[91cec2f]758                return 0;
[58adb7e]759        }
[5ebff60]760
761        away = set_getstr(&ic->acc->set, "away") ?
762               : set_getstr(&ic->bee->set, "away");
763        if (away && *away) {
[977a9d5]764                GList *m = ic->acc->prpl->away_states(ic);
[ff468a7]765                if (m == NULL) {
766                        return 0;
767                }
[5ebff60]768                msg = ic->acc->flags & ACC_FLAG_AWAY_MESSAGE ? away : NULL;
[ac68733a]769                away = imc_away_state_find(m, away, &msg) ? :
770                       (imc_away_state_find(m, "away", &msg) ? : m->data);
[5ebff60]771        } else if (ic->acc->flags & ACC_FLAG_STATUS_MESSAGE) {
[58adb7e]772                away = NULL;
[5ebff60]773                msg = set_getstr(&ic->acc->set, "status") ?
774                      : set_getstr(&ic->bee->set, "status");
[226fce1]775        }
[5ebff60]776
777        ic->acc->prpl->set_away(ic, away, msg);
778
[34fbbf9]779        return 1;
[226fce1]780}
781
[84b045d]782static char *imc_away_alias_list[8][5] =
[226fce1]783{
784        { "Away from computer", "Away", "Extended away", NULL },
785        { "NA", "N/A", "Not available", NULL },
786        { "Busy", "Do not disturb", "DND", "Occupied", NULL },
787        { "Be right back", "BRB", NULL },
788        { "On the phone", "Phone", "On phone", NULL },
789        { "Out to lunch", "Lunch", "Food", NULL },
790        { "Invisible", "Hidden" },
791        { NULL }
792};
793
[5ebff60]794static char *imc_away_state_find(GList *gcm, char *away, char **message)
[226fce1]795{
796        GList *m;
797        int i, j;
[5ebff60]798
799        for (m = gcm; m; m = m->next) {
800                if (g_strncasecmp(m->data, away, strlen(m->data)) == 0) {
[34fbbf9]801                        /* At least the Yahoo! module works better if message
802                           contains no data unless it adds something to what
803                           we have in state already. */
[5ebff60]804                        if (strlen(m->data) == strlen(away)) {
[34fbbf9]805                                *message = NULL;
[5ebff60]806                        }
807
[34fbbf9]808                        return m->data;
809                }
[5ebff60]810        }
811
812        for (i = 0; *imc_away_alias_list[i]; i++) {
[34fbbf9]813                int keep_message;
[5ebff60]814
815                for (j = 0; imc_away_alias_list[i][j]; j++) {
816                        if (g_strncasecmp(away, imc_away_alias_list[i][j], strlen(imc_away_alias_list[i][j])) == 0) {
817                                keep_message = strlen(away) != strlen(imc_away_alias_list[i][j]);
[226fce1]818                                break;
[34fbbf9]819                        }
[5ebff60]820                }
821
822                if (!imc_away_alias_list[i][j]) {       /* If we reach the end, this row */
823                        continue;                       /* is not what we want. Next!    */
824
825                }
[226fce1]826                /* Now find an entry in this row which exists in gcm */
[5ebff60]827                for (j = 0; imc_away_alias_list[i][j]; j++) {
828                        for (m = gcm; m; m = m->next) {
829                                if (g_strcasecmp(imc_away_alias_list[i][j], m->data) == 0) {
830                                        if (!keep_message) {
[34fbbf9]831                                                *message = NULL;
[5ebff60]832                                        }
833
[34fbbf9]834                                        return imc_away_alias_list[i][j];
835                                }
[5ebff60]836                        }
[226fce1]837                }
[5ebff60]838
[34fbbf9]839                /* No need to look further, apparently this state doesn't
840                   have any good alias for this protocol. */
841                break;
[226fce1]842        }
[5ebff60]843
[34fbbf9]844        return NULL;
[226fce1]845}
[da3b536]846
[5ebff60]847void imc_add_allow(struct im_connection *ic, char *handle)
[da3b536]848{
[5ebff60]849        if (g_slist_find_custom(ic->permit, handle, (GCompareFunc) ic->acc->prpl->handle_cmp) == NULL) {
850                ic->permit = g_slist_prepend(ic->permit, g_strdup(handle));
[da3b536]851        }
[5ebff60]852
853        ic->acc->prpl->add_permit(ic, handle);
[da3b536]854}
855
[5ebff60]856void imc_rem_allow(struct im_connection *ic, char *handle)
[da3b536]857{
858        GSList *l;
[5ebff60]859
860        if ((l = g_slist_find_custom(ic->permit, handle, (GCompareFunc) ic->acc->prpl->handle_cmp))) {
861                g_free(l->data);
862                ic->permit = g_slist_delete_link(ic->permit, l);
[da3b536]863        }
[5ebff60]864
865        ic->acc->prpl->rem_permit(ic, handle);
[da3b536]866}
867
[5ebff60]868void imc_add_block(struct im_connection *ic, char *handle)
[da3b536]869{
[5ebff60]870        if (g_slist_find_custom(ic->deny, handle, (GCompareFunc) ic->acc->prpl->handle_cmp) == NULL) {
871                ic->deny = g_slist_prepend(ic->deny, g_strdup(handle));
[da3b536]872        }
[5ebff60]873
874        ic->acc->prpl->add_deny(ic, handle);
[da3b536]875}
876
[5ebff60]877void imc_rem_block(struct im_connection *ic, char *handle)
[da3b536]878{
879        GSList *l;
[5ebff60]880
881        if ((l = g_slist_find_custom(ic->deny, handle, (GCompareFunc) ic->acc->prpl->handle_cmp))) {
882                g_free(l->data);
883                ic->deny = g_slist_delete_link(ic->deny, l);
[da3b536]884        }
[5ebff60]885
886        ic->acc->prpl->rem_deny(ic, handle);
[da3b536]887}
[85023c6]888
[d6e2aa8]889/* Deprecated: using this function resulted in merging several handles accidentally
890 * Also the irc layer handles this decently nowadays */
[5ebff60]891void imcb_clean_handle(struct im_connection *ic, char *handle)
[85023c6]892{
893}
Note: See TracBrowser for help on using the repository browser.