Mercurial > pidgin
annotate plugins/gevolution/gevo-util.c @ 8622:ffed55cbdd67
[gaim-migrate @ 9373]
Any objections to this?
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Fri, 09 Apr 2004 02:49:30 +0000 |
| parents | 8b62cc40069b |
| children | c307cf4c84d2 |
| rev | line source |
|---|---|
| 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 gboolean result; | |
| 133 | |
| 134 g_return_val_if_fail(book != NULL, FALSE); | |
| 135 | |
| 136 *book = e_book_new(); | |
| 137 | |
|
8474
8b62cc40069b
[gaim-migrate @ 9207]
Christian Hammond <chipx86@chipx86.com>
parents:
8089
diff
changeset
|
138 result = e_book_load_local_addressbook (*book, error); |
| 8089 | 139 |
| 140 if (!result) | |
| 141 { | |
| 142 g_object_unref(*book); | |
| 143 *book = NULL; | |
| 144 } | |
| 145 | |
| 146 return result; | |
| 147 } |
