aboutsummaryrefslogblamecommitdiffstats
path: root/plugins/exchange-operations/exchange-folder-permission.c
blob: 3c930ff026fec7ebdb25af21b71fd59c818bbd7e (plain) (tree)































                                                                        

                                               

                          
                            

                                     
                                        
                                              


                                             

                                                                              

                                                                                          

                                                                                            


                                                                                           



                                           
                                                                                                                                           








                                                  





                                                                                    


                               




                                                              

                                                                                                 
 




                                                         
























                                                                                      


                               




                                                              

                                                                                                 
 

                                            
 
                                                        
                       















                                                                                
                                                                                


                             
                            
                                                                               
 

                                                                    

                        
                                                   
                            
                     
                                                                
                        

         


                                                                            
                                                                                





                                                                 


                                        



                                                              







                                                                                     
                                                                                    
 


                                        



                                                              




                                                                        



                                                                                   

                                        


                                
 


                                                              

                       

                                                    
 



                                                      
                       


                                                           
 

                                                                




                                                                                     
























                                                                





                                                                                 



















                                                              
 

                                                                
 
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 *  Shakti Sen <shprasad@novell.com>
 *  Copyright (C) 2005 Novell, Inc.
 *
 *  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
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  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 Street #330, Boston, MA 02111-1307, USA.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <glib/gi18n.h>
#include <glade/glade.h>
#include <gtk/gtk.h>
#include <gtk/gtkdialog.h>
#include <gconf/gconf-client.h>
#include <libedataserver/e-xml-hash-utils.h>
#include <exchange/exchange-account.h>
#include <e-util/e-dialog-utils.h>
#include <calendar/gui/e-cal-popup.h>
#include <libedataserverui/e-source-selector.h>
#include <mail/em-popup.h>
#include <mail/em-menu.h>
#include <libebook/e-book.h>
#include "exchange-config-listener.h"
#include "exchange-operations.h"
#include "exchange-permissions-dialog.h"
#include "addressbook/gui/widgets/eab-popup.h"
#include "calendar/gui/e-cal-menu.h"
#include "calendar/gui/e-cal-model.h"
#include "addressbook/gui/widgets/eab-menu.h"

static void org_folder_permissions_cb (EPopup *ep, EPopupItem *p, void *data);
void org_gnome_exchange_folder_permissions (EPlugin *ep, EMPopupTargetFolder *t);
void org_gnome_exchange_menu_folder_permissions (EPlugin *ep, EMMenuTargetSelect *target);
void org_gnome_exchange_calendar_permissions (EPlugin *ep, ECalPopupTargetSource *target);
void org_gnome_exchange_addressbook_permissions (EPlugin *ep, EABPopupTargetSource *target);
void org_gnome_exchange_menu_ab_permissions (EPlugin *ep, EABMenuTargetSelect *target);
void org_gnome_exchange_menu_tasks_permissions (EPlugin *ep, ECalMenuTargetSelect *target);
void org_gnome_exchange_menu_cal_permissions (EPlugin *ep, ECalMenuTargetSelect *target);

gchar *selected_exchange_folder_uri = NULL;

static EPopupItem popup_items[] = {
    { E_POPUP_ITEM, "30.emc.10", N_("Permissions..."), org_folder_permissions_cb, NULL, "stock_new-dir", 0, EM_POPUP_FOLDER_INFERIORS }
};

static void
popup_free (EPopup *ep, GSList *items, void *data)
{
       g_slist_free (items);
}

void
org_gnome_exchange_calendar_permissions (EPlugin *ep, ECalPopupTargetSource *target)
{
    GSList *menus = NULL;
    int i = 0;
    static int first =0;
    ExchangeAccount *account = NULL;
    ESource *source = NULL;
    gchar *uri = NULL;

    account = exchange_operations_get_exchange_account ();

    if (!account)
        return;

    source = e_source_selector_peek_primary_selection (E_SOURCE_SELECTOR (target->selector));
    uri = (gchar *) e_source_get_uri (source);

    if (uri && ! g_strrstr (uri, "exchange://"))    {
        return;
    }

    if (!exchange_account_get_folder (account, uri))
        return;

    selected_exchange_folder_uri = uri;

    /* for translation*/
    if (!first) {
        popup_items[0].label =  _(popup_items[0].label);
        first++;

    }

    for (i = 0; i < sizeof (popup_items) / sizeof (popup_items[0]); i++)
        menus = g_slist_prepend (menus, &popup_items[i]);

    e_popup_add_items (target->target.popup, menus, NULL, popup_free, NULL);

}

void
org_gnome_exchange_addressbook_permissions (EPlugin *ep, EABPopupTargetSource *target)
{
    GSList *menus = NULL;
    int i = 0;
    static int first =0;
    ExchangeAccount *account = NULL;
    ESource *source = NULL;
    gchar *uri = NULL;

    account = exchange_operations_get_exchange_account ();

    if (!account)
        return;

    source = e_source_selector_peek_primary_selection (E_SOURCE_SELECTOR (target->selector));
    uri = (gchar *) e_source_get_uri (source);

    if (!g_strrstr (uri, "exchange://"))
        return;

    if (!exchange_account_get_folder (account, uri))
        return;

    selected_exchange_folder_uri = uri;

    /* for translation*/
    if (!first) {
        popup_items[0].label =  _(popup_items[0].label);
        first++;
    }

    for (i = 0; i < sizeof (popup_items) / sizeof (popup_items[0]); i++)
        menus = g_slist_prepend (menus, &popup_items[i]);

    e_popup_add_items (target->target.popup, menus, NULL, popup_free, NULL);
}

void
org_gnome_exchange_folder_permissions (EPlugin *ep, EMPopupTargetFolder *target)
{
    GSList *menus = NULL;
    int i = 0;
    static int first =0;
    ExchangeAccount *account = exchange_operations_get_exchange_account ();

    if (!account || ! g_strrstr (target->uri, "exchange://") ||
        !exchange_account_get_folder (account, target->uri))
        return ;

    selected_exchange_folder_uri = target->uri;
    /* for translation*/
    if (!first) {
        popup_items[0].label =  _(popup_items[0].label);
        first++;
    }

    for (i = 0; i < sizeof (popup_items) / sizeof (popup_items[0]); i++)
        menus = g_slist_prepend (menus, &popup_items[i]);

    e_popup_add_items (target->target.popup, menus, NULL, popup_free, NULL);

}

static void
org_folder_permissions_cb (EPopup *ep, EPopupItem *p, void *data)
{
    ExchangeAccount *account = NULL;
    EFolder *folder = NULL;

    account = exchange_operations_get_exchange_account ();

    if (!account)
        return;

    folder = exchange_account_get_folder (account, selected_exchange_folder_uri);
    if (folder)
        exchange_permissions_dialog_new (account, folder, NULL);

}

void
org_gnome_exchange_menu_folder_permissions (EPlugin *ep, EMMenuTargetSelect *target)
{
    ExchangeAccount *account = NULL;
    EFolder *folder = NULL;

    account = exchange_operations_get_exchange_account ();

    if (!account)
        return;

    folder = exchange_account_get_folder (account, target->uri);
    if (folder)
        exchange_permissions_dialog_new (account, folder, NULL);
}

void
org_gnome_exchange_menu_cal_permissions (EPlugin *ep, ECalMenuTargetSelect *target)
{
    ExchangeAccount *account = NULL;
    EFolder *folder = NULL;
    ECalModel *model = NULL;
    ECal *ecal = NULL;
    gchar *uri = NULL;

    account = exchange_operations_get_exchange_account ();

    if (!account || !target)
        return;

    if (target->model)
        model = E_CAL_MODEL (target->model);

    ecal = e_cal_model_get_default_client (model);
    uri = (gchar *) e_cal_get_uri (ecal);

    if (!uri)
        return;
    else    
        if (!g_str_has_prefix (uri, "exchange://"))
            return;

    folder = exchange_account_get_folder (account, uri);
    exchange_permissions_dialog_new (account, folder, NULL);
}

void
org_gnome_exchange_menu_tasks_permissions (EPlugin *ep, ECalMenuTargetSelect *target)
{
    ExchangeAccount *account = NULL;
    EFolder *folder = NULL;
    ECalModel *model = NULL;
    ECal *ecal = NULL;
    gchar *uri = NULL;

    account = exchange_operations_get_exchange_account ();

    if (!account || !target)
        return;

    if (target->model)
        model = E_CAL_MODEL (target->model);

    ecal = e_cal_model_get_default_client (model);
    uri = (gchar *) e_cal_get_uri (ecal);

    if (!uri)
        return;
    else    
        if (!g_str_has_prefix (uri, "exchange://"))
            return;

    folder = exchange_account_get_folder (account, uri);
    exchange_permissions_dialog_new (account, folder, NULL);

}

void
org_gnome_exchange_menu_ab_permissions (EPlugin *ep, EABMenuTargetSelect *target)
{
    ExchangeAccount *account = NULL;
    EFolder *folder = NULL;
    EBook *ebook = NULL;
    gchar *uri = NULL;

    account = exchange_operations_get_exchange_account ();

    if (!target || !account)
        return;

    if (target->book)
        ebook = E_BOOK (target->book);

    uri = (gchar *) e_book_get_uri (ebook);

    if (!uri)
        return;
    else    
        if (!g_str_has_prefix (uri, "exchange://"))
            return;

    folder = exchange_account_get_folder (account, uri);
    exchange_permissions_dialog_new (account, folder, NULL);
}