aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2001-06-23 00:08:01 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2001-06-23 00:08:01 +0800
commit273ead43140dd463f4995766858942a36f5724f6 (patch)
treebd749c39271866a6623788639c1b4edbf2b3cff1
parent638004fe63b43f4cbe9598423a187b0e1a8ed5d6 (diff)
downloadgsoc2013-evolution-273ead43140dd463f4995766858942a36f5724f6.tar
gsoc2013-evolution-273ead43140dd463f4995766858942a36f5724f6.tar.gz
gsoc2013-evolution-273ead43140dd463f4995766858942a36f5724f6.tar.bz2
gsoc2013-evolution-273ead43140dd463f4995766858942a36f5724f6.tar.lz
gsoc2013-evolution-273ead43140dd463f4995766858942a36f5724f6.tar.xz
gsoc2013-evolution-273ead43140dd463f4995766858942a36f5724f6.tar.zst
gsoc2013-evolution-273ead43140dd463f4995766858942a36f5724f6.zip
new function for the backends to be able to call the getPassword method on
2001-06-22 Rodrigo Moya <rodrigo@ximian.com> * pcs/cal.[ch] (cal_get_password): new function for the backends to be able to call the getPassword method on the associated WombatClient (cal_forget_password): ditto for the forgetPassword method svn path=/trunk/; revision=10396
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/pcs/cal-backend.c1
-rw-r--r--calendar/pcs/cal-backend.h3
-rw-r--r--calendar/pcs/cal.c81
-rw-r--r--calendar/pcs/cal.h6
5 files changed, 95 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index a018ee1e08..db9d905f95 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,12 @@
2001-06-22 Rodrigo Moya <rodrigo@ximian.com>
+ * pcs/cal.[ch] (cal_get_password): new function for the backends to
+ be able to call the getPassword method on the associated
+ WombatClient
+ (cal_forget_password): ditto for the forgetPassword method
+
+2001-06-22 Rodrigo Moya <rodrigo@ximian.com>
+
* idl/evolution-calendar.idl: changed getFreeBusy method to return
a CalObj instead of a sequence
diff --git a/calendar/pcs/cal-backend.c b/calendar/pcs/cal-backend.c
index 76438ad51d..081442e392 100644
--- a/calendar/pcs/cal-backend.c
+++ b/calendar/pcs/cal-backend.c
@@ -6,6 +6,7 @@
*
* Authors: Federico Mena-Quintero <federico@ximian.com>
* JP Rosevear <jpr@ximian.com>
+ * Rodrigo Moya <rodrigo@ximian.com>
*
* 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
diff --git a/calendar/pcs/cal-backend.h b/calendar/pcs/cal-backend.h
index 44f87e3f34..132f6c6118 100644
--- a/calendar/pcs/cal-backend.h
+++ b/calendar/pcs/cal-backend.h
@@ -4,7 +4,8 @@
* Copyright (C) 2000 Helix Code, Inc.
* Copyright (C) 2000 Ximian, Inc.
*
- * Author: Federico Mena-Quintero <federico@ximian.com>
+ * Authors: Federico Mena-Quintero <federico@ximian.com>
+ * Rodrigo Moya <rodrigo@ximian.com>
*
* 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
diff --git a/calendar/pcs/cal.c b/calendar/pcs/cal.c
index 50a2fe06f6..7d01ef03e3 100644
--- a/calendar/pcs/cal.c
+++ b/calendar/pcs/cal.c
@@ -3,7 +3,8 @@
* Copyright (C) 2000 Helix Code, Inc.
* Copyright (C) 2000 Ximian, Inc.
*
- * Author: Federico Mena-Quintero <federico@ximian.com>
+ * Authors: Federico Mena-Quintero <federico@ximian.com>
+ * Rodrigo Moya <rodrigo@ximian.com>
*
* 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
@@ -642,3 +643,81 @@ cal_notify_remove (Cal *cal, const char *uid)
CORBA_exception_free (&ev);
}
+
+/**
+ * cal_get_password:
+ * @cal: A calendar client interface.
+ * @prompt: The message to show to the user when asking for the password.
+ * @key: A key associated with the password being asked.
+ *
+ * Gets a password from the calendar client this Cal knows about. It does
+ * so by using the WombatClient interface being used by the corresponding
+ * CalClient.
+ *
+ * Returns: a password entered by the user.
+ */
+char *
+cal_get_password (Cal *cal, const char *prompt, const char *key)
+{
+ CalPrivate *priv;
+ CORBA_Environment ev;
+ CORBA_char *pwd;
+
+ g_return_val_if_fail (cal != NULL, NULL);
+ g_return_val_if_fail (IS_CAL (cal), NULL);
+
+ priv = cal->priv;
+ g_return_val_if_fail (priv->wombat_client != CORBA_OBJECT_NIL, NULL);
+
+ CORBA_exception_init (&ev);
+ pwd = GNOME_Evolution_WombatClient_getPassword (
+ priv->wombat_client,
+ (const CORBA_char *) prompt,
+ (const CORBA_char *) key,
+ &ev);
+ if (ev._major != CORBA_NO_EXCEPTION) {
+ g_message ("cal_get_password: could not get password from associated WombatClient");
+ CORBA_exception_free (&ev);
+ return NULL;
+ }
+
+ return pwd;
+}
+
+/**
+ * cal_forget_password:
+ * @cal: A calendar client interface.
+ * @key: A key associated with the password to be forgotten.
+ *
+ * Notifies the associated calendar client that it should forget
+ * about the password identified by @key, so that next time the backend
+ * asks the client about it, the client would ask again the user for it.
+ * This is done in cases where the password supplied the first time
+ * was not a valid password and the backend needs the user to enter
+ * a new one.
+ */
+void
+cal_client_forget_password (Cal *cal, const char *key)
+{
+ CalPrivate *priv;
+ CORBA_Environment ev;
+
+ g_return_if_fail (cal != NULL);
+ g_return_if_fail (IS_CAL (cal));
+
+ priv = cal->priv;
+ g_return_if_fail (priv->wombat_client != CORBA_OBJECT_NIL);
+
+ CORBA_exception_init (&ev);
+ GNOME_Evolution_WombatClient_forgetPassword (
+ priv->wombat_client,
+ (const CORBA_char *) key,
+ &ev);
+
+ if (ev._major != CORBA_NO_EXCEPTION) {
+ g_message ("cal_forget_password: could not notify WombatClient about "
+ "password to be forgotten");
+ }
+
+ CORBA_exception_free (&ev);
+}
diff --git a/calendar/pcs/cal.h b/calendar/pcs/cal.h
index f9880178b5..84a973d66b 100644
--- a/calendar/pcs/cal.h
+++ b/calendar/pcs/cal.h
@@ -3,7 +3,8 @@
* Copyright (C) 2000 Helix Code, Inc.
* Copyright (C) 2000 Ximian, Inc.
*
- * Author: Federico Mena-Quintero <federico@ximian.com>
+ * Authors: Federico Mena-Quintero <federico@ximian.com>
+ * Rodrigo Moya <rodrigo@ximian.com>
*
* 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
@@ -64,6 +65,9 @@ Cal *cal_new (CalBackend *backend, GNOME_Evolution_Calendar_Listener listener);
void cal_notify_update (Cal *cal, const char *uid);
void cal_notify_remove (Cal *cal, const char *uid);
+char *cal_get_password (Cal *cal, const char *prompt, const char *key);
+void cal_forget_password (Cal *cal, const char *key);
+
END_GNOME_DECLS