diff options
author | Praveen Kumar <kpraveen@novell.com> | 2005-07-01 18:06:24 +0800 |
---|---|---|
committer | Praveen Kumar <kpraveen@src.gnome.org> | 2005-07-01 18:06:24 +0800 |
commit | da4c46c126c59356c64030c1f05ddc2a3f72cad0 (patch) | |
tree | 708bee4677887bbfc1dd2fc3f7bcce13030d75c8 /plugins/exchange-operations/exchange-contacts.c | |
parent | bffdf85285b26fca4783e5f9208a7e3b6d943674 (diff) | |
download | gsoc2013-evolution-da4c46c126c59356c64030c1f05ddc2a3f72cad0.tar.gz gsoc2013-evolution-da4c46c126c59356c64030c1f05ddc2a3f72cad0.tar.zst gsoc2013-evolution-da4c46c126c59356c64030c1f05ddc2a3f72cad0.zip |
Added new file entries for calendar , contacts and change-password enabled
2005-07-01 Praveen Kumar <kpraveen@novell.com>
* Makefile.am : Added new file entries for calendar , contacts
and change-password
* exchange-account-setup.c (btn_chpass_clicked) : enabled the code
* exchange-operations.c (exchange_operations_cta_add_node_to_tree) :
This now stores the relative uri of the node to the model
(exchange_operations_cta_select_node_from_tree) : Added new. This
selects the node for a given relative uri.
* exchange-operations.h : Similar
* org-gnome-exchange-operations.eplug.in : Added commit hook action
for calendar and contacts
* exchange-change-password.c : Added new
* exchange-calendar.c : Added new
* exchange-contacts.c : Added new
svn path=/trunk/; revision=29610
Diffstat (limited to 'plugins/exchange-operations/exchange-contacts.c')
-rw-r--r-- | plugins/exchange-operations/exchange-contacts.c | 327 |
1 files changed, 327 insertions, 0 deletions
diff --git a/plugins/exchange-operations/exchange-contacts.c b/plugins/exchange-operations/exchange-contacts.c new file mode 100644 index 0000000000..623699a31c --- /dev/null +++ b/plugins/exchange-operations/exchange-contacts.c @@ -0,0 +1,327 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * + * Praveen Kumar <kpraveen@novell.com> + * Copyright (C) 2005 Novell, Inc. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + */ + +#include <string.h> +#include <gtk/gtk.h> +#include <e-util/e-config.h> +#include <calendar/gui/e-cal-config.h> +#include <libedataserver/e-source.h> +#include <libedataserver/e-url.h> +#include <e-folder.h> +#include <exchange-account.h> + +#include <libebook/e-book.h> +#include <libecal/e-cal.h> +#include <addressbook/gui/widgets/eab-config.h> + +#include "mail/em-account-editor.h" +#include "mail/em-config.h" +#include "e-util/e-account.h" +#include "e-util/e-error.h" + +#include "exchange-operations.h" + +enum { + CONTACTSNAME_COL, + CONTACTSRURI_COL, + NUM_COLS +}; + +gchar *contacts_uri=NULL; + +GPtrArray *e_exchange_contacts_get_contacts (void); +void e_exchange_contacts_pcontacts_on_change (GtkTreeView *treeview, ESource *source); +GtkWidget *e_exchange_contacts_pcontacts (EPlugin *epl, EConfigHookItemFactoryData *data); +gboolean e_exchange_contacts_check (EPlugin *epl, EConfigHookPageCheckData *data); +void e_exchange_contacts_commit (EPlugin *epl, EConfigTarget *target); + +/* FIXME: Reconsider the prototype of this function */ +GPtrArray * +e_exchange_contacts_get_contacts (void) +{ + ExchangeAccount *account; + GPtrArray *folder_array; + GPtrArray *contacts_list; + EFolder *folder; + + int i, prefix_len; + gchar *uri_prefix, *ruri; + + account = exchange_operations_get_exchange_account (); + + uri_prefix = g_strconcat ("exchange://", account->account_filename, "/", NULL); + prefix_len = strlen (uri_prefix); + + contacts_list = g_ptr_array_new (); + folder_array = exchange_account_get_folders (account); + + for (i=0; i<folder_array->len; ++i) { + gchar *type, *tmp; + folder = g_ptr_array_index (folder_array, i); + type = (gchar*) e_folder_get_type_string (folder); + if (!strcmp (type, "contacts")) { + tmp = (gchar*) e_folder_get_physical_uri (folder); + if (g_str_has_prefix (tmp, uri_prefix)) { + ruri = g_strdup (tmp+prefix_len); /* ATTN: Should not free this explicitly */ + g_ptr_array_add (contacts_list, (gpointer)ruri); + } + } + } + + g_free (uri_prefix); + return contacts_list; +} + +void +e_exchange_contacts_pcontacts_on_change (GtkTreeView *treeview, ESource *source) +{ + GtkTreeSelection *selection; + GtkTreeModel *model; + GtkTreeIter iter; + ExchangeAccount *account; + gchar *es_ruri; + + account = exchange_operations_get_exchange_account (); + + selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview)); + gtk_tree_selection_get_selected(selection, &model, &iter); + gchar *ruri; + + gtk_tree_model_get (model, &iter, CONTACTSRURI_COL, &ruri, -1); + es_ruri = g_strconcat ("exchange://", account->account_filename, "/", ruri, NULL); + e_source_set_relative_uri (source, es_ruri); + /* + if (contacts_uri) { + g_free (contacts_uri); + } + contacts_uri = g_strdup (es_ruri); + */ + g_free (ruri); + g_free (es_ruri); +} + +GtkWidget * +e_exchange_contacts_pcontacts (EPlugin *epl, EConfigHookItemFactoryData *data) +{ + static GtkWidget *lbl_pcontacts, *scrw_pcontacts, *tv_pcontacts, *vb_pcontacts; + GtkTreeStore *ts_pcontacts; + GtkCellRenderer *cr_contacts; + GtkTreeViewColumn *tvc_contacts; + GPtrArray *conlist; + gchar *ruri, *account_name, *uri_text; + ExchangeAccount *account; + + int i; + gboolean src_exists=FALSE; + + EABConfigTargetSource *t = (EABConfigTargetSource *) data->target; + ESource *source = t->source; + + if (data->old) { + /* FIXME: Review this */ + /* + gtk_widget_destroy (lbl_pcontacts); + gtk_widget_destroy (scrw_pcontacts); + gtk_widget_destroy (tv_pcontacts); + */ + } + + uri_text = e_source_get_uri (source); + if (strncmp (uri_text, "exchange", 8)) { + g_free (uri_text); + return NULL; + } + + g_free (uri_text); + + if (e_source_peek_absolute_uri (source)) { + src_exists = TRUE; + } + else { + e_source_set_relative_uri (source, ""); /* FIXME: Nasty hack */ + /* + if (contacts_uri) { + g_free (contacts_uri); + contacts_uri = NULL; + } + */ + } + + account = exchange_operations_get_exchange_account (); + account_name = account->account_name; + + vb_pcontacts = gtk_vbox_new (FALSE, 6); + gtk_container_add (GTK_CONTAINER (data->parent), vb_pcontacts); + + /* FIXME: Take care of i18n */ + lbl_pcontacts = gtk_label_new_with_mnemonic (_("_Location:")); + gtk_widget_show (lbl_pcontacts); + gtk_misc_set_alignment (GTK_MISC (lbl_pcontacts), 0.0, 0.5); + gtk_box_pack_start (GTK_BOX (vb_pcontacts), lbl_pcontacts, FALSE, FALSE, 0); + + ts_pcontacts = gtk_tree_store_new (NUM_COLS, G_TYPE_STRING, G_TYPE_STRING); + + conlist = e_exchange_contacts_get_contacts (); + + for (i=0; i<conlist->len; ++i) { + ruri = g_ptr_array_index (conlist, i); + exchange_operations_cta_add_node_to_tree (ts_pcontacts, NULL, ruri); + } + + cr_contacts = gtk_cell_renderer_text_new (); + tvc_contacts = gtk_tree_view_column_new_with_attributes (account_name, cr_contacts, "text", CONTACTSNAME_COL, NULL); + tv_pcontacts = gtk_tree_view_new_with_model (GTK_TREE_MODEL (ts_pcontacts)); + gtk_tree_view_append_column (GTK_TREE_VIEW (tv_pcontacts), tvc_contacts); + g_object_set (tv_pcontacts,"expander-column", tvc_contacts, "headers-visible", TRUE, NULL); + gtk_tree_view_expand_all (GTK_TREE_VIEW (tv_pcontacts)); + + scrw_pcontacts = gtk_scrolled_window_new (NULL, NULL); + gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrw_pcontacts), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); + gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrw_pcontacts), GTK_SHADOW_IN); + g_object_set (scrw_pcontacts, "height-request", 150, NULL); + gtk_container_add (GTK_CONTAINER (scrw_pcontacts), tv_pcontacts); + gtk_label_set_mnemonic_widget (GTK_LABEL (lbl_pcontacts), tv_pcontacts); + g_signal_connect (G_OBJECT (tv_pcontacts), "cursor-changed", G_CALLBACK (e_exchange_contacts_pcontacts_on_change), t->source); + gtk_widget_show_all (scrw_pcontacts); + + gtk_box_pack_start (GTK_BOX (vb_pcontacts), scrw_pcontacts, FALSE, FALSE, 0); + gtk_widget_show_all (vb_pcontacts); + + if (src_exists) { + gchar *uri_prefix, *sruri, *tmpruri; + int prefix_len; + GtkTreeSelection *selection; + + uri_prefix = g_strconcat ("exchange://", account->account_filename, "/", NULL); + prefix_len = strlen (uri_prefix); + + tmpruri = (gchar*)e_source_peek_absolute_uri (t->source); + + if (g_str_has_prefix (tmpruri, uri_prefix)) { + sruri = g_strdup (tmpruri+prefix_len); + } + else { + sruri = NULL; + } + + selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tv_pcontacts)); + exchange_operations_cta_select_node_from_tree (ts_pcontacts, NULL, sruri, sruri, selection); + gtk_widget_set_sensitive (tv_pcontacts, FALSE); + + g_free (uri_prefix); + g_free (sruri); + } + + g_ptr_array_free (conlist, TRUE); + return vb_pcontacts; +} + +gboolean +e_exchange_contacts_check (EPlugin *epl, EConfigHookPageCheckData *data) +{ + /* FIXME - check pageid */ + EABConfigTargetSource *t = (EABConfigTargetSource *) data->target; + ESourceGroup *group = e_source_peek_group (t->source); + + if (!strncmp (e_source_group_peek_base_uri (group), "exchange", 8)) { + if (!strlen (e_source_peek_relative_uri (t->source))) { + //if (!contacts_uri) { + return FALSE; + } + } + + return TRUE; +} + +void +e_exchange_contacts_commit (EPlugin *epl, EConfigTarget *target) +{ + EABConfigTargetSource *t = (EABConfigTargetSource *) target; + ESource *source = t->source; + gchar *uri_text, *gname, *gruri, *ruri, *path, *path_prefix; + int prefix_len; + + ExchangeAccount *account; + ExchangeAccountFolderResult result; + + uri_text = e_source_get_uri (source); + if (strncmp (uri_text, "exchange", 8)) { + g_free (uri_text); + return ; + } + + g_free (uri_text); + + account = exchange_operations_get_exchange_account (); + path_prefix = g_strconcat ("exchange://", account->account_filename, "/", NULL); + prefix_len = strlen (path_prefix); + + gname = (gchar*) e_source_peek_name (source); + gruri = (gchar*) e_source_peek_relative_uri (source); + ruri = g_strconcat (gruri, "/", gname, NULL); + //ruri = g_strconcat (contacts_uri, "/", gname, NULL); + + g_print ("Setting absolute URI to %s\n", ruri); + + e_source_set_absolute_uri (source, ruri); + + g_print ("Read absolute URI as %s\n", e_source_peek_absolute_uri(source)); + + /* FIXME: This creates some problem. Identify the cause */ + //e_source_set_relative_uri (source, ""); /* FIXME: Nasty hack */ + + path = g_strdup_printf ("/%s", ruri+prefix_len); + result = exchange_account_create_folder (account, path, "contacts"); + + switch (result) { + /* TODO: Modify all these error messages using e_error */ + case EXCHANGE_ACCOUNT_FOLDER_OK: + g_print ("Folder created\n"); + break; + case EXCHANGE_ACCOUNT_FOLDER_ALREADY_EXISTS: + g_print ("Already exists\n"); + break; + case EXCHANGE_ACCOUNT_FOLDER_DOES_NOT_EXIST: + g_print ("Doesn't exists\n"); + break; + case EXCHANGE_ACCOUNT_FOLDER_UNKNOWN_TYPE: + g_print ("Unknown type\n"); + break; + case EXCHANGE_ACCOUNT_FOLDER_PERMISSION_DENIED: + g_print ("Permission denied\n"); + break; + case EXCHANGE_ACCOUNT_FOLDER_OFFLINE: + g_print ("Folder offline\n"); + break; + case EXCHANGE_ACCOUNT_FOLDER_UNSUPPORTED_OPERATION: + g_print ("Unsupported operation\n"); + break; + case EXCHANGE_ACCOUNT_FOLDER_GENERIC_ERROR: + g_print ("Generic error\n"); + break; + } + /* + g_free (contacts_uri); + contacts_uri = NULL; + */ + g_free (ruri); + g_free (path); +} |