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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Authors :
* Rodrigo Moya <rodrigo@ximian.com>
*
* Copyright 2003, Novell, Inc.
*
* 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 Place, Suite 330, Boston, MA 02111-1307
* USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include <bonobo/bonobo-i18n.h>
#include <libedataserverui/e-passwords.h>
#include "authentication.h"
static GHashTable *source_lists_hash = NULL;
static char *
auth_func_cb (ECal *ecal, const char *prompt, const char *key, gpointer user_data)
{
gboolean remember;
char *password;
ESource *source;
const gchar *auth_domain, *component_name;
source = e_cal_get_source (ecal);
auth_domain = e_source_get_property (source, "auth-domain");
component_name = auth_domain ? auth_domain : "Calendar";
password = e_passwords_get_password (component_name, key);
if (!password)
password = e_passwords_ask_password (_("Enter password"), component_name, key, prompt,
E_PASSWORDS_REMEMBER_FOREVER|E_PASSWORDS_SECRET|E_PASSWORDS_ONLINE,
&remember,
NULL);
return password;
}
ECal *
auth_new_cal_from_default (ECalSourceType type)
{
ECal *ecal = NULL;
if (!e_cal_open_default (&ecal, type, auth_func_cb, NULL, NULL))
return NULL;
return ecal;
}
ECal *
auth_new_cal_from_source (ESource *source, ECalSourceType type)
{
ECal *cal;
cal = e_cal_new (source, type);
if (cal)
e_cal_set_auth_func (cal, (ECalAuthFunc) auth_func_cb, NULL);
return cal;
}
ECal *
auth_new_cal_from_uri (const char *uri, ECalSourceType type)
{
ESourceGroup *group = NULL;
ESource *source = NULL;
ECal *cal;
ESourceList *source_list = NULL;
/* try to find the source in the source list in GConf */
source_list = g_hash_table_lookup (source_lists_hash, &type);
if (!source_list) {
if (e_cal_get_sources (&source_list, type, NULL)) {
if (!source_lists_hash)
source_lists_hash = g_hash_table_new (g_int_hash, g_int_equal);
g_hash_table_insert (source_lists_hash, &type, source_list);
}
}
if (source_list) {
GSList *gl;
for (gl = e_source_list_peek_groups (source_list); gl != NULL && source == NULL; gl = gl->next) {
GSList *sl;
for (sl = e_source_group_peek_sources (gl->data); sl != NULL; sl = sl->next) {
char *source_uri;
source_uri = e_source_get_uri (sl->data);
if (source_uri) {
if (!strcmp (source_uri, uri)) {
g_free (source_uri);
source = g_object_ref (sl->data);
break;
}
g_free (source_uri);
}
}
}
}
if (!source) {
group = e_source_group_new ("", uri);
source = e_source_new ("", "");
e_source_set_group (source, group);
/* we explicitly check for groupwise:// uris, to force authentication on them */
if (!strncmp (uri, "groupwise://", strlen ("groupwise://"))) {
e_source_set_property (source, "auth", "1");
e_source_set_property (source, "auth-domain", "Groupwise");
/* FIXME: need to retrieve the username */
}
}
cal = auth_new_cal_from_source (source, type);
g_object_unref (source);
if (group)
g_object_unref (group);
return cal;
}
|