8089
|
1 /*
|
|
2 * Evolution integration plugin for Gaim
|
|
3 *
|
|
4 * Copyright (C) 2003 Christian Hammond.
|
|
5 *
|
|
6 * This program is free software; you can redistribute it and/or
|
|
7 * modify it under the terms of the GNU General Public License as
|
|
8 * published by the Free Software Foundation; either version 2 of the
|
|
9 * License, or (at your option) any later version.
|
|
10 *
|
|
11 * This program is distributed in the hope that it will be useful, but
|
|
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14 * General Public License for more details.
|
|
15 *
|
|
16 * You should have received a copy of the GNU General Public License
|
|
17 * along with this program; if not, write to the Free Software
|
|
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
19 * 02111-1307, USA.
|
|
20 */
|
|
21 #include "gtkinternal.h"
|
|
22 #include "gtkblist.h"
|
|
23 #include "gtkutils.h"
|
|
24
|
|
25 #include <libebook/e-book.h>
|
|
26
|
|
27 void
|
|
28 gevo_add_buddy(GaimAccount *account, const char *group_name,
|
|
29 const char *screenname, const char *alias)
|
|
30 {
|
|
31 GaimConversation *conv = NULL;
|
|
32 GaimBuddy *buddy;
|
|
33 GaimGroup *group;
|
|
34
|
|
35 conv = gaim_find_conversation_with_account(screenname, account);
|
|
36
|
|
37 if ((group = gaim_find_group(group_name)) == NULL)
|
|
38 {
|
|
39 group = gaim_group_new(group_name);
|
|
40 gaim_blist_add_group(group, NULL);
|
|
41 }
|
|
42
|
|
43 buddy = gaim_buddy_new(account, screenname, alias);
|
|
44 gaim_blist_add_buddy(buddy, NULL, group, NULL);
|
|
45 serv_add_buddy(gaim_account_get_connection(account), screenname, group);
|
|
46
|
|
47 if (conv != NULL)
|
|
48 {
|
|
49 gaim_buddy_icon_update(gaim_conv_im_get_icon(GAIM_CONV_IM(conv)));
|
|
50 gaim_conversation_update(conv, GAIM_CONV_UPDATE_ADD);
|
|
51
|
|
52 gaim_blist_save();
|
|
53 }
|
|
54 }
|
|
55
|
|
56 GList *
|
|
57 gevo_get_groups(void)
|
|
58 {
|
|
59 GList *tmp = NULL;
|
|
60 char *tmp2;
|
|
61 GaimGroup *g;
|
|
62 GaimBlistNode *gnode;
|
|
63
|
|
64 if (gaim_get_blist()->root == NULL)
|
|
65 {
|
|
66 tmp2 = g_strdup(_("Buddies"));
|
|
67 tmp = g_list_append(tmp, tmp2);
|
|
68 }
|
|
69 else
|
|
70 {
|
|
71 for (gnode = gaim_get_blist()->root;
|
|
72 gnode != NULL;
|
|
73 gnode = gnode->next)
|
|
74 {
|
|
75 if (GAIM_BLIST_NODE_IS_GROUP(gnode))
|
|
76 {
|
|
77 g = (GaimGroup *)gnode;
|
|
78 tmp2 = g->name;
|
|
79 tmp = g_list_append(tmp, tmp2);
|
|
80 }
|
|
81 }
|
|
82 }
|
|
83
|
|
84 return tmp;
|
|
85 }
|
|
86
|
|
87 EContactField
|
|
88 gevo_prpl_get_field(GaimAccount *account, GaimBuddy *buddy)
|
|
89 {
|
|
90 EContactField protocol_field = 0;
|
|
91 const char *protocol_id;
|
|
92
|
|
93 g_return_val_if_fail(account != NULL, 0);
|
|
94
|
|
95 protocol_id = gaim_account_get_protocol_id(account);
|
|
96
|
|
97 if (!strcmp(protocol_id, "prpl-oscar"))
|
|
98 {
|
|
99 GaimConnection *gc;
|
|
100 GaimPluginProtocolInfo *prpl_info;
|
|
101
|
|
102 gc = gaim_account_get_connection(account);
|
|
103
|
|
104 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl);
|
|
105
|
|
106 if (!strcmp("aim", prpl_info->list_icon(account, buddy)))
|
|
107 {
|
|
108 protocol_field = E_CONTACT_IM_AIM;
|
|
109 }
|
|
110 else
|
|
111 protocol_field = E_CONTACT_IM_ICQ;
|
|
112 }
|
|
113 else if (!strcmp(protocol_id, "prpl-msn"))
|
|
114 protocol_field = E_CONTACT_IM_MSN;
|
|
115 else if (!strcmp(protocol_id, "prpl-yahoo"))
|
|
116 protocol_field = E_CONTACT_IM_YAHOO;
|
|
117 else if (!strcmp(protocol_id, "prpl-jabber"))
|
|
118 protocol_field = E_CONTACT_IM_JABBER;
|
|
119
|
|
120 return protocol_field;
|
|
121 }
|
|
122
|
|
123 gboolean
|
|
124 gevo_prpl_is_supported(GaimAccount *account, GaimBuddy *buddy)
|
|
125 {
|
|
126 return (gevo_prpl_get_field(account, buddy) != 0);
|
|
127 }
|
|
128
|
|
129 gboolean
|
|
130 gevo_load_addressbook(EBook **book, GError **error)
|
|
131 {
|
|
132 char *filename;
|
|
133 char *uri;
|
|
134 gboolean result;
|
|
135
|
|
136 g_return_val_if_fail(book != NULL, FALSE);
|
|
137
|
|
138 *book = e_book_new();
|
|
139
|
|
140 filename = g_build_filename(g_get_home_dir(),
|
|
141 ".evolution/addressbook/local/OnThisComputer/Personal", NULL);
|
|
142
|
|
143 uri = g_strdup_printf("file://%s", filename);
|
|
144
|
|
145 g_free(filename);
|
|
146
|
|
147 result = e_book_load_uri(*book, uri, FALSE, error);
|
|
148
|
|
149 g_free(uri);
|
|
150
|
|
151 if (!result)
|
|
152 {
|
|
153 g_object_unref(*book);
|
|
154 *book = NULL;
|
|
155 }
|
|
156
|
|
157 return result;
|
|
158 }
|