1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Authors: Srinivasa Ragavan <sragavan@novell.com>
*
* Copyright 2004 Novell, Inc. (www.novell.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* 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 Street #330, Boston, MA 02111-1307, USA.
*
*/
/* This is written from the save-calendar plugin and James Bowes evo-iPod
* sync code.
*
* This provides eplugin support to sync calendar/task/addressbook with iPod
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <glib.h>
#include <glib/gi18n.h>
#include <libebook/e-book.h>
#include <libebook/e-contact.h>
#include <libedataserver/e-source.h>
#include <libedataserverui/e-source-selector.h>
#include <libecal/e-cal.h>
#include <calendar/gui/e-cal-popup.h>
#include <addressbook/gui/widgets/eab-popup.h>
#include <libgnomevfs/gnome-vfs.h>
#include <string.h>
#include "format-handler.h"
#include "evolution-ipod-sync.h"
void org_gnome_sync_calendar (EPlugin *ep, ECalPopupTargetSource *target);
void org_gnome_sync_tasks (EPlugin *ep, ECalPopupTargetSource *target);
void org_gnome_sync_addressbook (EPlugin *ep, EABPopupTargetSource *target);
static void
display_error_message (GtkWidget *parent, const char *message)
{
GtkWidget *dialog;
dialog = gtk_message_dialog_new (GTK_WINDOW (parent), 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, message);
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
}
static void
destination_save_addressbook (EPlugin *ep, EABPopupTargetSource *target)
{
EBook *book;
EBookQuery *query;
GList *contacts, *tmp;
ESource *primary_source;
gchar *uri;
char *dest_uri = NULL;
GnomeVFSResult result;
GnomeVFSHandle *handle;
char *mount = ipod_get_mount();
/* use g_file api here to build path*/
dest_uri = g_strdup_printf("%s/%s/%s", mount, "Contacts", "evolution.vcf");
g_free (mount);
primary_source = e_source_selector_peek_primary_selection (target->selector);
uri = e_source_get_uri (primary_source);
book = e_book_new_from_uri (uri, NULL);
if (!book
|| !e_book_open (book, TRUE, NULL)) {
g_warning ("Couldn't load addressbook %s", uri);
return;
}
/* Let us export some meaning full contacts */
query = e_book_query_any_field_contains ("");
e_book_get_contacts (book, query, &contacts, NULL);
e_book_query_unref (query);
result = gnome_vfs_open (&handle, dest_uri, GNOME_VFS_OPEN_WRITE);
if (result != GNOME_VFS_OK) {
if ((result = gnome_vfs_create (&handle, dest_uri, GNOME_VFS_OPEN_WRITE,
TRUE, GNOME_VFS_PERM_USER_ALL)) != GNOME_VFS_OK) {
display_error_message (gtk_widget_get_toplevel (GTK_WIDGET (target->selector)),
gnome_vfs_result_to_string (result));
}
}
if (result == GNOME_VFS_OK) {
GnomeVFSFileSize bytes_written;
for (tmp = contacts; tmp; tmp=tmp->next) {
EContact *contact = tmp->data;
gchar *temp = e_vcard_to_string (E_VCARD (contact), EVC_FORMAT_VCARD_30);
gchar *vcard;
vcard = g_strconcat(temp, "\r\n", NULL);
if ((result = gnome_vfs_write (handle, (gconstpointer) vcard, strlen (vcard), &bytes_written))
!= GNOME_VFS_OK) {
display_error_message (gtk_widget_get_toplevel (GTK_WIDGET (target->selector)),
gnome_vfs_result_to_string (result));
}
g_object_unref (contact);
g_free (temp);
g_free (vcard);
}
}
sync();
if (contacts != NULL)
g_list_free (contacts);
gnome_vfs_close (handle);
g_object_unref (book);
g_free (dest_uri);
g_free (uri);
}
static void
destination_save_cal (EPlugin *ep, ECalPopupTargetSource *target, ECalSourceType type)
{
FormatHandler *handler = NULL;
char *mount = ipod_get_mount();
char *dest_uri = NULL;
/* The available formathandlers */
handler= ical_format_handler_new ();
dest_uri = g_strdup_printf("%s/%s/%s", mount, "Calendars", (type==E_CAL_SOURCE_TYPE_EVENT)? "evolution-calendar.ics":"evolution-todo.ics");
handler->save (handler, ep, target, type, dest_uri);
sync();
g_free (dest_uri);
g_free (mount);
g_free (handler);
}
void
org_gnome_sync_calendar (EPlugin *ep, ECalPopupTargetSource *target)
{
if (!ipod_check_status(FALSE))
return;
destination_save_cal (ep, target, E_CAL_SOURCE_TYPE_EVENT);
}
void
org_gnome_sync_tasks (EPlugin *ep, ECalPopupTargetSource *target)
{
if (!ipod_check_status(FALSE))
return;
destination_save_cal (ep, target, E_CAL_SOURCE_TYPE_TODO);
}
void
org_gnome_sync_addressbook (EPlugin *ep, EABPopupTargetSource *target)
{
if (!ipod_check_status(FALSE))
return;
destination_save_addressbook (ep, target);
}
|