aboutsummaryrefslogblamecommitdiffstats
path: root/plugins/groupwise-features/mail-retract.c
blob: 1de2dfdeadfe3de6b617718eb64035d149f56276 (plain) (tree)
1
2
3
4
5
6
7
8
9
10




                                                                
  



                                                                    
  
                                                                   
                                                                             
  
  

                                             
  
                                                        






                    
                           


                               
 

                           



                               
 


























                                                                                      

                           


                            
                                                    
               
 




                                                                        
                              
 
                                             
                                                                                                                                            
                                                                                  


                                                                     
                                                                                                                                                          

                                                                             
 


                                                                                                        
 





                                                                
 
                                                                                                                        
                                                                                                                                                                   





                                                                                                                                                                   
                 
         
 
                    
 
/*
 * 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:
 *      Sankar P <psankar@novell.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <glib/gi18n-lib.h>
#include <e-gw-connection.h>
#include <camel/camel-store.h>
#include <camel/camel-folder.h>

#include <e-util/e-error.h>

#include <mail/e-mail-reader.h>

#include "gw-ui.h"
#include "share-folder.h"

static gboolean
get_selected_info (EShellView *shell_view, CamelFolder **folder, gchar **selected_uid)
{
    EShellContent *shell_content;
    EMailReader *reader;
    MessageList *message_list;
    GPtrArray *selected;

    shell_content = e_shell_view_get_shell_content (shell_view);

    reader = (EMailReader *) (shell_content);
    message_list = e_mail_reader_get_message_list (reader);
    g_return_val_if_fail (message_list != NULL, FALSE);

    selected = message_list_get_selected (message_list);
    if (selected && selected->len == 1) {
        *folder = message_list->folder;
        *selected_uid = g_strdup (g_ptr_array_index (selected, 0));
    }

    message_list_free_uids (message_list, selected);

    return *selected_uid != NULL;
}

void
gw_retract_mail_cb (GtkAction *action, EShellView *shell_view)
{
    EGwConnection *cnc;
    CamelFolder *folder;
    CamelStore *store;
    gchar *id = NULL;
    GtkWidget *confirm_dialog, *confirm_warning;
    gint n;

    g_return_if_fail (get_selected_info (shell_view, &folder, &id));
    g_return_if_fail (folder != NULL);

    store = folder->parent_store;

    cnc = get_cnc (store);

    if (cnc && E_IS_GW_CONNECTION(cnc)) {
        confirm_dialog = gtk_dialog_new_with_buttons (_("Message Retract"), GTK_WINDOW (e_shell_view_get_shell_window (shell_view)),
                GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
                GTK_STOCK_YES, GTK_RESPONSE_YES,
                GTK_STOCK_NO, GTK_RESPONSE_NO, NULL);

        confirm_warning = gtk_label_new (_("Retracting a message may remove it from the recipient's mailbox. Are you sure you want to do this?"));
        gtk_label_set_line_wrap (GTK_LABEL (confirm_warning), TRUE);
        gtk_label_set_selectable (GTK_LABEL (confirm_warning), TRUE);

        gtk_container_add (GTK_CONTAINER ((GTK_DIALOG(confirm_dialog))->vbox), confirm_warning);
        gtk_widget_set_size_request (confirm_dialog, 400, 100);
        gtk_widget_show_all (confirm_dialog);

        n =gtk_dialog_run (GTK_DIALOG (confirm_dialog));

        gtk_widget_destroy (confirm_warning);
        gtk_widget_destroy (confirm_dialog);

        if (n == GTK_RESPONSE_YES) {

            if (e_gw_connection_retract_request (cnc, id, NULL, FALSE, FALSE) != E_GW_CONNECTION_STATUS_OK )
                e_error_run (GTK_WINDOW (e_shell_view_get_shell_window (shell_view)), "org.gnome.evolution.message.retract:retract-failure", NULL);
            else {
                GtkWidget *dialog;
                dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_INFO, GTK_BUTTONS_CLOSE, _("Message retracted successfully"));
                gtk_dialog_run (GTK_DIALOG(dialog));
                gtk_widget_destroy (dialog);
            }
        }
    }

    g_free (id);
}