/*
* 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
*
*
* Authors:
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
*/
/* ExchangeDelegatesUser: A single delegate */
#ifdef HAVE_CONFIG_H
#include
#endif
#include "exchange-delegates.h"
#include "exchange-delegates-user.h"
#include
#include
#include
#include
#include
#include
#include
#include "exchange-delegates.h"
#include
#include
#include
#include
#include
#include
#include
#include
#define EXCHANGE_DELEGATES_USER_CUSTOM -3
/* Can't use E2K_PERMISSIONS_ROLE_CUSTOM, because it's -1, which
* means "end of list" to e_dialog_combo_box_get/set
*/
static const gint exchange_perm_map[] = {
E2K_PERMISSIONS_ROLE_NONE,
E2K_PERMISSIONS_ROLE_REVIEWER,
E2K_PERMISSIONS_ROLE_AUTHOR,
E2K_PERMISSIONS_ROLE_EDITOR,
EXCHANGE_DELEGATES_USER_CUSTOM,
-1
};
const gchar *exchange_delegates_user_folder_names[] = {
"calendar", "tasks", "inbox", "contacts"
};
/* To translators: The folder names to be displayed in the message being
sent to the delegatee.
*/
static const gchar *folder_names_for_display[] = {
N_("Calendar"), N_("Tasks"), N_("Inbox"), N_("Contacts")
};
enum {
EDITED,
LAST_SIGNAL
};
static guint signals [LAST_SIGNAL] = { 0 };
#define PARENT_TYPE G_TYPE_OBJECT
static GObjectClass *parent_class = NULL;
static void
finalize (GObject *object)
{
ExchangeDelegatesUser *user = EXCHANGE_DELEGATES_USER (object);
if (user->display_name)
g_free (user->display_name);
if (user->dn)
g_free (user->dn);
if (user->entryid)
g_byte_array_free (user->entryid, TRUE);
if (user->sid)
g_object_unref (user->sid);
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static void
class_init (GObjectClass *object_class)
{
parent_class = g_type_class_ref (PARENT_TYPE);
object_class->finalize = finalize;
/* signals */
signals[EDITED] =
g_signal_new ("edited",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (ExchangeDelegatesUserClass, edited),
NULL, NULL,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
}
E2K_MAKE_TYPE (exchange_delegates_user, ExchangeDelegatesUser, class_init, NULL, PARENT_TYPE)
static inline gboolean
is_delegate_role (E2kPermissionsRole role)
{
return (role == E2K_PERMISSIONS_ROLE_NONE ||
role == E2K_PERMISSIONS_ROLE_REVIEWER ||
role == E2K_PERMISSIONS_ROLE_AUTHOR ||
role == E2K_PERMISSIONS_ROLE_EDITOR);
}
static void
set_perms (GtkWidget *combobox, E2kPermissionsRole role)
{
if (!is_delegate_role (role)) {
gtk_combo_box_append_text (GTK_COMBO_BOX (combobox), _("Custom"));
role = EXCHANGE_DELEGATES_USER_CUSTOM;
}
e_dialog_combo_box_set (combobox, role, exchange_perm_map);
}
static void
parent_window_destroyed (gpointer dialog, GObject *where_parent_window_was)
{
gtk_dialog_response (dialog, GTK_RESPONSE_CANCEL);
}
/* Maps the role_nam parameter to their corresponding Full role name
*/
static const gchar *
map_to_full_role_name (E2kPermissionsRole role_nam)
{
const gchar *role_name;
switch (role_nam)
{
/* To translators: The following are the various types of permissions that can
assigned by an user to his folders.
*/
case E2K_PERMISSIONS_ROLE_EDITOR: role_name = g_strdup (
_("Editor (read, create, edit)"));
break;
case E2K_PERMISSIONS_ROLE_AUTHOR: role_name = g_strdup (
_("Author (read, create)"));
break;
case E2K_PERMISSIONS_ROLE_REVIEWER: role_name = g_strdup (
_("Reviewer (read-only)"));
break;
default: role_name = g_strdup (_("None"));
break;
}
return role_name;
}
static void
em_utils_delegates_done (CamelFolder *folder, CamelMimeMessage *msg, CamelMessageInfo *info,
gint queued, const gchar *appended_uid, gpointer data)
{
camel_message_info_free (info);
mail_send ();
}
/**
* exchange_delegates_user_edit:
* @user: a delegate
* @parent_window: parent window for the editor dialog
*
* Brings up a dialog to edit @user's permissions as a delegate.
* An %edited signal will be emitted if anything changed.
*
* Return value: %TRUE for "OK", %FALSE for "Cancel".
**/
gboolean
exchange_delegates_user_edit (ExchangeAccount *account,
ExchangeDelegatesUser *user,
GtkWidget *parent_window)
{
gchar *title;
gint button, i;
E2kPermissionsRole role;
gboolean modified;
GtkWidget *delegate_permissions;
GtkWidget *dialog_vbox1;
GtkWidget *vbox3;
GtkWidget *delegate_label;
GtkWidget *folders_table;
GtkWidget *calendar_label;
GtkWidget *task_label;
GtkWidget *inbox_label;
GtkWidget *contact_label;
GtkWidget *calendar_perms_combobox;
GtkWidget *task_perms_combobox;
GtkWidget *inbox_perms_combobox;
GtkWidget *contact_perms_combobox;
GtkWidget *delegate_mail;
GtkWidget *see_private_checkbox;
GtkWidget *combobox, *comboboxes[EXCHANGE_DELEGATES_LAST];
g_return_val_if_fail (EXCHANGE_IS_DELEGATES_USER (user), FALSE);
g_return_val_if_fail (E2K_IS_SID (user->sid), FALSE);
delegate_permissions = gtk_dialog_new_with_buttons (
_("Delegate Permissions"),
NULL,
GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_OK, GTK_RESPONSE_OK,
NULL);
if (parent_window)
gtk_window_set_transient_for (GTK_WINDOW (delegate_permissions), GTK_WINDOW (parent_window));
dialog_vbox1 = gtk_dialog_get_content_area (GTK_DIALOG (delegate_permissions));
gtk_widget_show (dialog_vbox1);
vbox3 = gtk_vbox_new (FALSE, 12);
gtk_widget_show (vbox3);
gtk_box_pack_start (GTK_BOX (dialog_vbox1), vbox3, TRUE, TRUE, 0);
gtk_container_set_border_width (GTK_CONTAINER (vbox3), 12);
delegate_label = gtk_label_new (_("Permissions for"));
gtk_widget_show (delegate_label);
gtk_box_pack_start (GTK_BOX (vbox3), delegate_label, FALSE, FALSE, 0);
gtk_label_set_justify (GTK_LABEL (delegate_label), GTK_JUSTIFY_CENTER);
folders_table = gtk_table_new (4, 2, FALSE);
gtk_widget_show (folders_table);
gtk_box_pack_start (GTK_BOX (vbox3), folders_table, FALSE, FALSE, 0);
gtk_table_set_row_spacings (GTK_TABLE (folders_table), 6);
gtk_table_set_col_spacings (GTK_TABLE (folders_table), 6);
/* Translators: This is used for permissions for for the folder Calendar. */
calendar_label = gtk_label_new_with_mnemonic (_("C_alendar:"));
gtk_widget_show (calendar_label);
gtk_table_attach (GTK_TABLE (folders_table), calendar_label, 0, 1, 0, 1,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
gtk_label_set_justify (GTK_LABEL (calendar_label), GTK_JUSTIFY_CENTER);
gtk_misc_set_alignment (GTK_MISC (calendar_label), 0, 0.5);
/* Translators: This is used for permissions for for the folder Tasks. */
task_label = gtk_label_new_with_mnemonic (_("_Tasks:"));
gtk_widget_show (task_label);
gtk_table_attach (GTK_TABLE (folders_table), task_label, 0, 1, 1, 2,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
gtk_label_set_justify (GTK_LABEL (task_label), GTK_JUSTIFY_CENTER);
gtk_misc_set_alignment (GTK_MISC (task_label), 0, 0.5);
/* Translators: This is used for permissions for for the folder Inbox. */
inbox_label = gtk_label_new_with_mnemonic (_("_Inbox:"));
gtk_widget_show (inbox_label);
gtk_table_attach (GTK_TABLE (folders_table), inbox_label, 0, 1, 2, 3,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
gtk_label_set_justify (GTK_LABEL (inbox_label), GTK_JUSTIFY_CENTER);
gtk_misc_set_alignment (GTK_MISC (inbox_label), 0, 0.5);
/* Translators: This is used for permissions for for the folder Contacts. */
contact_label = gtk_label_new_with_mnemonic (_("Co_ntacts:"));
gtk_widget_show (contact_label);
gtk_table_attach (GTK_TABLE (folders_table), contact_label, 0, 1, 3, 4,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
gtk_label_set_justify (GTK_LABEL (contact_label), GTK_JUSTIFY_CENTER);
gtk_misc_set_alignment (GTK_MISC (contact_label), 0, 0.5);
calendar_perms_combobox = gtk_combo_box_new_text ();
gtk_widget_show (calendar_perms_combobox);
gtk_table_attach (GTK_TABLE (folders_table), calendar_perms_combobox, 1, 2, 0, 1,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (GTK_FILL), 0, 0);
gtk_combo_box_append_text (GTK_COMBO_BOX (calendar_perms_combobox), _("None"));
gtk_combo_box_append_text (GTK_COMBO_BOX (calendar_perms_combobox), _("Reviewer (read-only)"));
gtk_combo_box_append_text (GTK_COMBO_BOX (calendar_perms_combobox), _("Author (read, create)"));
gtk_combo_box_append_text (GTK_COMBO_BOX (calendar_perms_combobox), _("Editor (read, create, edit)"));
task_perms_combobox = gtk_combo_box_new_text ();
gtk_widget_show (task_perms_combobox);
gtk_table_attach (GTK_TABLE (folders_table), task_perms_combobox, 1, 2, 1, 2,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (GTK_FILL), 0, 0);
gtk_combo_box_append_text (GTK_COMBO_BOX (task_perms_combobox), _("None"));
gtk_combo_box_append_text (GTK_COMBO_BOX (task_perms_combobox), _("Reviewer (read-only)"));
gtk_combo_box_append_text (GTK_COMBO_BOX (task_perms_combobox), _("Author (read, create)"));
gtk_combo_box_append_text (GTK_COMBO_BOX (task_perms_combobox), _("Editor (read, create, edit)"));
inbox_perms_combobox = gtk_combo_box_new_text ();
gtk_widget_show (inbox_perms_combobox);
gtk_table_attach (GTK_TABLE (folders_table), inbox_perms_combobox, 1, 2, 2, 3,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (GTK_FILL), 0, 0);
gtk_combo_box_append_text (GTK_COMBO_BOX (inbox_perms_combobox), _("None"));
gtk_combo_box_append_text (GTK_COMBO_BOX (inbox_perms_combobox), _("Reviewer (read-only)"));
gtk_combo_box_append_text (GTK_COMBO_BOX (inbox_perms_combobox), _("Author (read, create)"));
gtk_combo_box_append_text (GTK_COMBO_BOX (inbox_perms_combobox), _("Editor (read, create, edit)"));
contact_perms_combobox = gtk_combo_box_new_text ();
gtk_widget_show (contact_perms_combobox);
gtk_table_attach (GTK_TABLE (folders_table), contact_perms_combobox, 1, 2, 3, 4,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (GTK_FILL), 0, 0);
gtk_combo_box_append_text (GTK_COMBO_BOX (contact_perms_combobox), _("None"));
gtk_combo_box_append_text (GTK_COMBO_BOX (contact_perms_combobox), _("Reviewer (read-only)"));
gtk_combo_box_append_text (GTK_COMBO_BOX (contact_perms_combobox), _("Author (read, create)"));
gtk_combo_box_append_text (GTK_COMBO_BOX (contact_perms_combobox), _("Editor (read, create, edit)"));
delegate_mail = gtk_check_button_new_with_mnemonic (_("_Summarize permissions"));
gtk_widget_show (delegate_mail);
gtk_box_pack_start (GTK_BOX (vbox3), delegate_mail, FALSE, FALSE, 0);
see_private_checkbox = gtk_check_button_new_with_mnemonic (_("_Delegate can see private items"));
gtk_widget_show (see_private_checkbox);
gtk_box_pack_start (GTK_BOX (vbox3), see_private_checkbox, FALSE, FALSE, 0);
gtk_box_set_spacing (GTK_BOX (dialog_vbox1), 6);
title = g_strdup_printf (_("Permissions for %s"), user->display_name);
gtk_label_set_text (GTK_LABEL (delegate_label), title);
g_free (title);
comboboxes[0] = calendar_perms_combobox;
comboboxes[1] = task_perms_combobox;
comboboxes[2] = inbox_perms_combobox;
comboboxes[3] = contact_perms_combobox;
/* Set up the permissions */
for (i = 0; i < EXCHANGE_DELEGATES_LAST; i++) {
combobox = comboboxes[i];
set_perms (combobox, user->role[i]);
}
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (see_private_checkbox),
user->see_private);
/* Run the dialog, while watching its parent. */
g_object_weak_ref (G_OBJECT (parent_window),
parent_window_destroyed, delegate_permissions);
g_object_add_weak_pointer (G_OBJECT (parent_window),
(gpointer*)&parent_window);
button = gtk_dialog_run (GTK_DIALOG (delegate_permissions));
if (parent_window) {
g_object_remove_weak_pointer (G_OBJECT (parent_window),
(gpointer *)&parent_window);
g_object_weak_unref (G_OBJECT (parent_window),
parent_window_destroyed, delegate_permissions);
}
if (button != GTK_RESPONSE_OK) {
gtk_widget_destroy (delegate_permissions);
return FALSE;
}
/* And update */
modified = FALSE;
for (i = 0; i < EXCHANGE_DELEGATES_LAST; i++) {
combobox = comboboxes[i];
role = e_dialog_combo_box_get (combobox, exchange_perm_map);
if (is_delegate_role (user->role[i]) &&
user->role[i] != role) {
user->role[i] = role;
modified = TRUE;
}
}
/* The following piece of code is used to construct a mail message to be sent to a Delegate
summarizing all the permissions set for him on the user's various folders.
*/
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (delegate_mail)) == TRUE) {
if (button == GTK_RESPONSE_OK) {
EAccount *eaccount;
CamelMimeMessage *delegate_mail = camel_mime_message_new ();
CamelMultipart *body = camel_multipart_new ();
CamelMimePart *part;
CamelDataWrapper *delegate_mail_text, *delegate_mail_data;
CamelContentType *type;
CamelInternetAddress *addr;
CamelStream *stream;
CamelFolder *out_folder;
CamelMessageInfo *info;
gchar *self_address, *delegate_mail_subject;
gchar *role_name;
GString *role_name_final;
const gchar *recipient_address;
const gchar *delegate_exchange_dn;
const gchar *msg_part1 = NULL, *msg_part2 = NULL;
role_name_final = g_string_new ("");
self_address = g_strdup (exchange_account_get_email_id (account));
/* Create toplevel container */
camel_data_wrapper_set_mime_type (CAMEL_DATA_WRAPPER (body),
"multipart/alternative;");
camel_multipart_set_boundary (body, NULL);
/* Create textual receipt */
delegate_mail_text = camel_data_wrapper_new ();
type = camel_content_type_new ("text", "html");
camel_content_type_set_param (type, "format", "flowed");
camel_data_wrapper_set_mime_type_field (delegate_mail_text, type);
camel_content_type_unref (type);
stream = camel_stream_mem_new ();
/* To translators: This is a part of the message to be sent to the delegatee
summarizing the permissions assigned to him.
*/
msg_part1 = _("This message was sent automatically by Evolution to inform you that you have been "
"designated as a delegate. You can now send messages on my behalf.");
/* To translators: Another chunk of the same message.
*/
msg_part2 = _("You have been given the following permissions on my folders:");
camel_stream_printf (stream,
"%s
%s
", msg_part1, msg_part2);
for (i = 0; i < EXCHANGE_DELEGATES_LAST; i++) {
combobox = comboboxes[i];
role = e_dialog_combo_box_get (combobox, exchange_perm_map);
role_name = g_strdup (map_to_full_role_name(role));
g_string_append_printf (
role_name_final,
"%s: | %s |
",
folder_names_for_display[i], role_name);
}
camel_stream_printf (stream, "%s
", role_name_final->str);
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (see_private_checkbox)) == TRUE) {
/* To translators: This message is included if the delegatee has been given access
to the private items.
*/
camel_stream_printf (stream, "
%s", _("You are also permitted "
"to see my private items."));
}
else
/* To translators: This message is included if the delegatee has not been given access
to the private items.
*/
camel_stream_printf (stream, "
%s", _("However you are not permitted "
"to see my private items."));
camel_data_wrapper_construct_from_stream (delegate_mail_text, stream);
g_free (role_name);
g_string_free (role_name_final, TRUE);
camel_object_unref (stream);
part = camel_mime_part_new ();
camel_medium_set_content_object (CAMEL_MEDIUM (part), delegate_mail_text);
camel_object_unref (delegate_mail_text);
camel_multipart_add_part (body, part);
camel_object_unref (part);
/* Create the machine-readable receipt */
delegate_mail_data = camel_data_wrapper_new ();
type = camel_content_type_new ("message", "disposition-notification");
camel_data_wrapper_set_mime_type_field (delegate_mail_data, type);
camel_content_type_unref (type);
stream = camel_stream_mem_new ();
part = camel_mime_part_new ();
camel_data_wrapper_construct_from_stream (delegate_mail_data, stream);
camel_object_unref (stream);
camel_medium_set_content_object (CAMEL_MEDIUM (part), delegate_mail_data);
camel_object_unref (delegate_mail_data);
camel_multipart_add_part (body, part);
camel_object_unref (part);
/* Finish creating the message */
camel_medium_set_content_object (CAMEL_MEDIUM (delegate_mail), CAMEL_DATA_WRAPPER (body));
camel_object_unref (body);
delegate_mail_subject = g_strdup_printf (_("You have been designated "
"as a delegate for %s"), exchange_account_get_username (account));
camel_mime_message_set_subject (delegate_mail, delegate_mail_subject);
g_free (delegate_mail_subject);
addr = camel_internet_address_new ();
camel_address_decode (CAMEL_ADDRESS (addr), self_address);
camel_mime_message_set_from (delegate_mail, addr);
g_free (self_address);
camel_object_unref (addr);
delegate_exchange_dn = e2k_entryid_to_dn (user->entryid);
recipient_address = email_look_up (delegate_exchange_dn,account);
if (recipient_address) {
addr = camel_internet_address_new ();
camel_address_decode (CAMEL_ADDRESS (addr), recipient_address);
camel_mime_message_set_recipients (delegate_mail, CAMEL_RECIPIENT_TYPE_TO, addr);
camel_object_unref (addr);
}
eaccount = exchange_account_fetch (account);
if (eaccount) {
camel_medium_set_header (CAMEL_MEDIUM (delegate_mail),
"X-Evolution-Account", eaccount->uid);
camel_medium_set_header (CAMEL_MEDIUM (delegate_mail),
"X-Evolution-Transport", eaccount->transport->url);
camel_medium_set_header (CAMEL_MEDIUM (delegate_mail),
"X-Evolution-Fcc", eaccount->sent_folder_uri);
}
/* Send the permissions summarizing mail */
out_folder = e_mail_local_get_folder (E_MAIL_FOLDER_OUTBOX);
info = camel_message_info_new (NULL);
camel_message_info_set_flags (info, CAMEL_MESSAGE_SEEN, CAMEL_MESSAGE_SEEN);
mail_append_mail (out_folder, delegate_mail, info, em_utils_delegates_done, NULL);
}
}
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (see_private_checkbox)) !=
user->see_private) {
user->see_private = !user->see_private;
modified = TRUE;
}
gtk_widget_destroy (delegate_permissions);
if (modified)
g_signal_emit (user, signals[EDITED], 0);
return TRUE;
}
/**
* exchange_delegates_user_new:
* @display_name: the delegate's (UTF8) display name
*
* Return value: a new delegate user with default permissions (but
* with most of the internal data blank).
**/
ExchangeDelegatesUser *
exchange_delegates_user_new (const gchar *display_name)
{
ExchangeDelegatesUser *user;
gint i;
user = g_object_new (EXCHANGE_TYPE_DELEGATES_USER, NULL);
user->display_name = g_strdup (display_name);
for (i = 0; i < EXCHANGE_DELEGATES_LAST; i++) {
if (i == EXCHANGE_DELEGATES_CALENDAR ||
i == EXCHANGE_DELEGATES_TASKS)
user->role[i] = E2K_PERMISSIONS_ROLE_EDITOR;
else
user->role[i] = E2K_PERMISSIONS_ROLE_NONE;
}
return user;
}
/**
* exchange_delegates_user_new_from_gc:
* @gc: the global catalog object
* @email: email address of the new delegate
* @creator_entryid: The value of the PR_CREATOR_ENTRYID property
* on the LocalFreebusy file.
*
* Return value: a new delegate user with default permissions and
* internal data filled in from the global catalog.
**/
ExchangeDelegatesUser *
exchange_delegates_user_new_from_gc (E2kGlobalCatalog *gc,
const gchar *email,
GByteArray *creator_entryid)
{
E2kGlobalCatalogStatus status;
E2kGlobalCatalogEntry *entry;
ExchangeDelegatesUser *user;
guint8 *p;
status = e2k_global_catalog_lookup (
gc, NULL, /* FIXME: cancellable */
E2K_GLOBAL_CATALOG_LOOKUP_BY_EMAIL, email,
(E2K_GLOBAL_CATALOG_LOOKUP_SID |
E2K_GLOBAL_CATALOG_LOOKUP_LEGACY_EXCHANGE_DN),
&entry);
if (status != E2K_GLOBAL_CATALOG_OK)
return NULL;
user = exchange_delegates_user_new (e2k_sid_get_display_name (entry->sid));
user->dn = g_strdup (entry->dn);
user->sid = entry->sid;
g_object_ref (user->sid);
user->entryid = g_byte_array_new ();
p = creator_entryid->data + creator_entryid->len - 2;
while (p > creator_entryid->data && *p)
p--;
g_byte_array_append (user->entryid, creator_entryid->data,
p - creator_entryid->data + 1);
g_byte_array_append (user->entryid, (guint8*)entry->legacy_exchange_dn,
strlen (entry->legacy_exchange_dn));
g_byte_array_append (user->entryid, (guint8*)"", 1);
return user;
}