aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/merging/e-card-merging.c
blob: 3577fd41b5d1daf98cbb9495ee96fd3b344d0ff2 (plain) (blame)
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
187
188
189
190
191
192
193
194
195
196
197
198
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Code for checking for duplicates when doing ECard work.
 *
 * Author:
 *   Christopher James Lahey <clahey@ximian.com>
 *
 * Copyright 2001, Ximian, Inc.
 */

#include <config.h>

#include "e-card-merging.h"
#include <ebook/e-card-compare.h>
#include <glade/glade.h>
#include <gtk/gtksignal.h>
#include "addressbook/gui/widgets/e-minicard-widget.h"

typedef enum {
    E_CARD_MERGING_ADD,
    E_CARD_MERGING_COMMIT
} ECardMergingOpType;

typedef struct {
    ECardMergingOpType op;
    EBook *book;
    ECard *card;
    EBookIdCallback id_cb;
    EBookCallback   cb;
    gpointer closure;
} ECardMergingLookup;

static void
free_lookup (ECardMergingLookup *lookup)
{
    g_object_unref (lookup->book);
    g_object_unref (lookup->card);

    g_free (lookup);
}

static void
final_id_cb (EBook *book, EBookStatus status, const char *id, gpointer closure)
{
    ECardMergingLookup *lookup = closure;

    if (lookup->id_cb)
        lookup->id_cb (lookup->book, status, id, lookup->closure);

    free_lookup (lookup);
}

static void
final_cb (EBook *book, EBookStatus status, gpointer closure)
{
    ECardMergingLookup *lookup = closure;

    if (lookup->cb)
        lookup->cb (lookup->book, status, lookup->closure);

    free_lookup (lookup);
}

static void
doit (ECardMergingLookup *lookup)
{
    if (lookup->op == E_CARD_MERGING_ADD)
        e_book_add_card (lookup->book, lookup->card, final_id_cb, lookup);
    else if (lookup->op == E_CARD_MERGING_COMMIT)
        e_book_commit_card (lookup->book, lookup->card, final_cb, lookup);
}

static void
cancelit (ECardMergingLookup *lookup)
{
    if (lookup->op == E_CARD_MERGING_ADD) {
        if (lookup->id_cb)
            final_id_cb (lookup->book, E_BOOK_STATUS_CANCELLED, NULL, lookup);
    } else if (lookup->op == E_CARD_MERGING_COMMIT) {
        if (lookup->cb)
            final_cb (lookup->book, E_BOOK_STATUS_CANCELLED, lookup);
    }
}

static void
response (GtkWidget *dialog, int response, ECardMergingLookup *lookup)
{
    gtk_widget_destroy (dialog);

    switch (response) {
    case 0:
        doit (lookup);
        break;
    case 1:
        cancelit (lookup);
        break;
    }
}

static void
match_query_callback (ECard *card, ECard *match, ECardMatchType type, gpointer closure)
{
    ECardMergingLookup *lookup = closure;

    if ((gint) type <= (gint) E_CARD_MATCH_VAGUE) {
        doit (lookup);
    } else {
        GladeXML *ui;
        
        GtkWidget *widget;

        if (lookup->op == E_CARD_MERGING_ADD)
            ui = glade_xml_new (EVOLUTION_GLADEDIR "/e-card-duplicate-detected.glade", NULL, NULL);
        else if (lookup->op == E_CARD_MERGING_COMMIT)
            ui = glade_xml_new (EVOLUTION_GLADEDIR "/e-card-merging-book-commit-duplicate-detected.glade", NULL, NULL);
        else {
            doit (lookup);
            return;
        }

        widget = glade_xml_get_widget (ui, "custom-old-card");
        g_object_set (widget,
                  "card", match,
                  NULL);

        widget = glade_xml_get_widget (ui, "custom-new-card");
        g_object_set (widget,
                  "card", card,
                  NULL);

        widget = glade_xml_get_widget (ui, "dialog-duplicate-contact");

        g_signal_connect (widget, "response",
                  G_CALLBACK (response), lookup);

        gtk_widget_show_all (widget);
    }
}

gboolean
e_card_merging_book_add_card (EBook           *book,
                  ECard           *card,
                  EBookIdCallback  cb,
                  gpointer         closure)
{
    ECardMergingLookup *lookup;

    lookup = g_new (ECardMergingLookup, 1);

    lookup->op = E_CARD_MERGING_ADD;
    lookup->book = g_object_ref (book);
    lookup->card = g_object_ref (card);
    lookup->id_cb = cb;
    lookup->closure = closure;

    e_card_locate_match_full (book, card, NULL, match_query_callback, lookup);

    return TRUE;
}

gboolean
e_card_merging_book_commit_card (EBook                 *book,
                 ECard                 *card,
                 EBookCallback          cb,
                 gpointer               closure)
{
    ECardMergingLookup *lookup;
    GList *avoid;
    
    lookup = g_new (ECardMergingLookup, 1);

    lookup->op = E_CARD_MERGING_COMMIT;
    lookup->book = g_object_ref (book);
    lookup->card = card;
    lookup->cb = cb;
    lookup->closure = closure;

    avoid = g_list_append (NULL, card);

    e_card_locate_match_full (book, card, avoid, match_query_callback, lookup);

    g_list_free (avoid);

    return TRUE;
}

GtkWidget *
e_card_merging_create_old_card(gchar *name,
                   gchar *string1, gchar *string2,
                   gint int1, gint int2);

GtkWidget *
e_card_merging_create_old_card(gchar *name,
                 gchar *string1, gchar *string2,
                 gint int1, gint int2)
{
    return e_minicard_widget_new ();
}