aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/util/addressbook.c
blob: a6673fcda0630f184e1f67904158a20574a962ce (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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 *
 * Authors:
 *      Chris Lahey <clahey@ximian.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#include <config.h>

#include <string.h>

#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include <libebook/e-book.h>
#include <libedataserver/e-url.h>
#include <libedataserverui/e-passwords.h>

#include "e-util/e-alert-dialog.h"
#include "shell/e-shell.h"
#include "addressbook.h"

#define d(x)

static void addressbook_authenticate (EBook *book, gboolean previous_failure,
                      ESource *source, EBookAsyncCallback cb, gpointer closure);
static void auth_required_cb (EBook *book, gpointer data);

typedef struct {
    EBookAsyncCallback cb;
    ESource *source;
    gpointer closure;
    guint cancelled : 1;
} LoadSourceData;

static void
free_load_source_data (LoadSourceData *data)
{
    if (data->source)
        g_object_unref (data->source);
    g_free (data);
}

/*this function removes of anything present after semicolon
in uri*/

static gchar *
remove_parameters_from_uri (const gchar *uri)
{
    gchar *euri_str;
    EUri *euri;

    euri = e_uri_new (uri);
    euri_str = e_uri_to_string (euri, FALSE);
    e_uri_free (euri);
    return euri_str;
}

static void
load_source_auth_cb (EBook *book, const GError *error, gpointer closure)
{
    LoadSourceData *data = closure;
    gboolean was_in = g_object_get_data (G_OBJECT (book), "authenticated") != NULL;

    g_object_set_data (G_OBJECT (book), "authenticated", NULL);

    if (data->cancelled) {
        free_load_source_data (data);
        return;
    }

    if (error) {

        /* the user clicked cancel in the password dialog */
        if (g_error_matches (error, E_BOOK_ERROR, E_BOOK_ERROR_CANCELLED)) {

            if (e_book_check_static_capability (book, "anon-access")) {

                GtkWidget *dialog;

                /* XXX "LDAP" has to be removed from the folowing message
                   so that it wil valid for other servers which provide
                   anonymous access*/

                dialog = gtk_message_dialog_new (
                    NULL, 0,
                    GTK_MESSAGE_WARNING,
                    GTK_BUTTONS_OK,
                    "%s", _("Accessing LDAP Server anonymously"));
                g_signal_connect (
                    dialog, "response",
                    G_CALLBACK (gtk_widget_destroy), NULL);
                gtk_widget_show (dialog);
                error = NULL;

                goto done;
            }
        } else if (g_error_matches (error, E_BOOK_ERROR,
            E_BOOK_ERROR_INVALID_SERVER_VERSION)) {
            e_alert_run_dialog_for_args (
                e_shell_get_active_window (NULL),
                "addressbook:server-version", NULL);
            error = NULL;
            goto done;
        } else if (g_error_matches (error, E_BOOK_ERROR,
            E_BOOK_ERROR_UNSUPPORTED_AUTHENTICATION_METHOD)) {
            goto done;
        } else {
            if (g_error_matches (error, E_BOOK_ERROR,
                E_BOOK_ERROR_AUTHENTICATION_FAILED)) {
                const gchar *uri = e_book_get_uri (book);
                gchar *stripped_uri = remove_parameters_from_uri (uri);
                const gchar *auth_domain = e_source_get_property (data->source, "auth-domain");
                const gchar *component_name;

                component_name = auth_domain ? auth_domain : "Addressbook";

                e_passwords_forget_password (component_name, stripped_uri);

                g_free (stripped_uri);
            } else if (was_in) {
                /* We already tried to authenticate to the server, and it failed with
                   other reason than with E_BOOK_ERROR_AUTHENTICATION_FAILED, thus stop
                   poking with the server and report error to the user. */
                goto done;
            }

            g_object_set_data (G_OBJECT (book), "authenticated", GINT_TO_POINTER (1));
            addressbook_authenticate (book, TRUE, data->source, load_source_auth_cb, closure);
            return;
        }
    }

done:
    if (data->cb)
        data->cb (book, error, data->closure);

    free_load_source_data (data);
}

static gboolean
get_remember_password (ESource *source)
{
    const gchar *value;

    value = e_source_get_property (source, "remember_password");
    if (value && !g_ascii_strcasecmp (value, "true"))
        return TRUE;

    return FALSE;
}

static void
set_remember_password (ESource *source, gboolean value)
{
    e_source_set_property (source, "remember_password",
                   value ? "true" : "false");
}

static void
addressbook_authenticate (EBook *book, gboolean previous_failure, ESource *source,
              EBookAsyncCallback cb, gpointer closure)
{
    const gchar *password = NULL;
    gchar *pass_dup = NULL;
    const gchar *auth;
    const gchar *user;
    gchar *uri = remove_parameters_from_uri (e_book_get_uri (book));
    const gchar *auth_domain = e_source_get_property (source, "auth-domain");
    const gchar *component_name;

    component_name = auth_domain ? auth_domain : "Addressbook";

    password = e_passwords_get_password (component_name, uri);

    auth = e_source_get_property (source, "auth");

    if (auth && !strcmp ("ldap/simple-binddn", auth)) {
        user = e_source_get_property (source, "binddn");
    }
    else if (auth && !strcmp ("plain/password", auth)) {
        user = e_source_get_property (source, "user");
        if (!user) {
            user = e_source_get_property (source, "username");
        }
    }
    else {
        user = e_source_get_property (source, "email_addr");
    }
    if (!user)
        user = "";

    if (!password) {
        gchar *prompt;
        gchar *password_prompt;
        gboolean remember;
        const gchar *failed_auth;
        guint32 flags = E_PASSWORDS_REMEMBER_FOREVER|E_PASSWORDS_SECRET|E_PASSWORDS_ONLINE;

        if (previous_failure) {
            failed_auth = _("Failed to authenticate.\n");
            flags |= E_PASSWORDS_REPROMPT;
        }
        else {
            failed_auth = "";
        }

        password_prompt = g_strdup_printf (_("Enter password for %s (user %s)"),
                       e_source_peek_name (source), user);

        prompt = g_strconcat (failed_auth, password_prompt, NULL);
        g_free (password_prompt);

        remember = get_remember_password (source);
        pass_dup = e_passwords_ask_password (
            _("Enter password"), component_name,
            uri, prompt, flags, &remember, NULL);
        if (remember != get_remember_password (source))
            set_remember_password (source, remember);

        g_free (prompt);
    }

    if (password || pass_dup) {
        e_book_authenticate_user_async (book, user, password ? password : pass_dup,
                        e_source_get_property (source, "auth"),
                        cb, closure);
        g_free (pass_dup);
    }
    else {
        GError *error = g_error_new (E_BOOK_ERROR, E_BOOK_ERROR_CANCELLED, _("Cancelled"));

        /* they hit cancel */
        cb (book, error, closure);

        g_error_free (error);
    }

    g_free (uri);
}

static void
auth_required_cb (EBook *book, gpointer data)
{
    LoadSourceData *load_source_data = g_new0 (LoadSourceData, 1);

    load_source_data->source = g_object_ref (g_object_ref (e_book_get_source (book)));
    load_source_data->cancelled = FALSE;
    addressbook_authenticate (book, FALSE, load_source_data->source,
                  load_source_auth_cb, load_source_data);

}
static void
load_source_cb (EBook *book, const GError *error, gpointer closure)
{
    LoadSourceData *load_source_data = closure;

    if (load_source_data->cancelled) {
        free_load_source_data (load_source_data);
        return;
    }

    if (!error && book != NULL) {
        const gchar *auth;

        auth = e_source_get_property (load_source_data->source, "auth");
        if (auth && strcmp (auth, "none")) {
            g_signal_connect (book, "auth_required", G_CALLBACK(auth_required_cb), NULL);

            if (e_book_is_online (book)) {
                addressbook_authenticate (book, FALSE, load_source_data->source,
                              load_source_auth_cb, closure);
                return;
        }
        }
    }
    load_source_data->cb (book, error, load_source_data->closure);
    free_load_source_data (load_source_data);
}

guint
addressbook_load (EBook *book,
          EBookAsyncCallback cb, gpointer closure)
{
    LoadSourceData *load_source_data = g_new0 (LoadSourceData, 1);

    load_source_data->cb = cb;
    load_source_data->closure = closure;
    load_source_data->source = g_object_ref (g_object_ref (e_book_get_source (book)));
    load_source_data->cancelled = FALSE;

    e_book_open_async (book, FALSE, load_source_cb, load_source_data);

    return GPOINTER_TO_UINT (load_source_data);
}

void
addressbook_load_cancel (guint id)
{
    LoadSourceData *load_source_data = GUINT_TO_POINTER (id);

    load_source_data->cancelled = TRUE;
}

static void
default_book_cb (EBook *book, const GError *error, gpointer closure)
{
    LoadSourceData *load_source_data = closure;

    if (!error)
        load_source_data->source = g_object_ref (e_book_get_source (book));

    load_source_cb (book, error, closure);
}

void
addressbook_load_default_book (EBookAsyncCallback cb, gpointer closure)
{
    LoadSourceData *load_source_data = g_new (LoadSourceData, 1);
    EBook *book;
    GError *error = NULL;

    load_source_data->cb = cb;
    load_source_data->source = NULL;
    load_source_data->closure = closure;
    load_source_data->cancelled = FALSE;

    book = e_book_new_default_addressbook (&error);
    if (!book) {
        load_source_cb (NULL, error, load_source_data);
        g_error_free (error);
    } else
        e_book_open_async (
            book, FALSE, default_book_cb, load_source_data);
}