aboutsummaryrefslogblamecommitdiffstats
path: root/camel/camel-vtrash-folder.c
blob: 06764af674c3165d27f3f5f26aefbf6d639a72c0 (plain) (tree)
1
2
3
4
5
6
7
8
9





                                                                           


                                                                   
  



                                                                    
  



                                                               












                                


                                                                    



















                                                                                                                  







                                                      











                                                                                                      
                                                                                           






                                                  
                           











                                                                    

                                                                                   



                                                                                                                          



















                                                                                                                        
                                


                                         
                                                                                                   
                                 
                                                                                                                  

                                 
                
                                         
                                                                
                                                                                                          
                        





                                                                                  
                                                                                    

                                                       

                                                                                

         
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 *  Authors: Jeffrey Stedfast <fejj@ximian.com>
 *
 *  Copyright 2001 Ximian, Inc. (www.ximian.com)
 *
 * 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.
 *
 */

#include <config.h>

#include "camel-exception.h"
#include "camel-vtrash-folder.h"
#include "camel-store.h"
#include "camel-vee-store.h"
#include "camel-mime-message.h"

#include <string.h>

/* Returns the class for a CamelFolder */
#define CF_CLASS(so) CAMEL_FOLDER_CLASS (CAMEL_OBJECT_GET_CLASS(so))

static CamelVeeFolderClass *camel_vtrash_folder_parent;

static void vtrash_append_message (CamelFolder *folder, CamelMimeMessage *message,
                   const CamelMessageInfo *info, CamelException *ex);
static void vtrash_copy_messages_to (CamelFolder *folder, GPtrArray *uids, CamelFolder *dest, CamelException *ex);
static void vtrash_move_messages_to (CamelFolder *folder, GPtrArray *uids, CamelFolder *dest, CamelException *ex);

static void
camel_vtrash_folder_class_init (CamelVTrashFolderClass *klass)
{
    CamelFolderClass *folder_class = (CamelFolderClass *) klass;
    
    camel_vtrash_folder_parent =
        CAMEL_VEE_FOLDER_CLASS (camel_type_get_global_classfuncs (camel_folder_get_type ()));
    
    folder_class->append_message = vtrash_append_message;
    folder_class->copy_messages_to = vtrash_copy_messages_to;
    folder_class->move_messages_to = vtrash_move_messages_to;
}

static void
camel_vtrash_folder_init (CamelVTrashFolder *vtrash)
{
    CamelFolder *folder = CAMEL_FOLDER (vtrash);

    folder->folder_flags |= CAMEL_FOLDER_IS_TRASH;
}

CamelType
camel_vtrash_folder_get_type (void)
{
    static CamelType type = CAMEL_INVALID_TYPE;
    
    if (type == CAMEL_INVALID_TYPE) {
        type = camel_type_register (camel_vee_folder_get_type (),
                        "CamelVTrashFolder",
                        sizeof (CamelVTrashFolder),
                        sizeof (CamelVTrashFolderClass),
                        (CamelObjectClassInitFunc) camel_vtrash_folder_class_init,
                        NULL,
                        (CamelObjectInitFunc) camel_vtrash_folder_init,
                        NULL);
    }
    
    return type;
}

/**
 * camel_vtrash_folder_new:
 * @parent_store: the parent CamelVeeStore
 * @name: the vfolder name
 * @ex: a CamelException
 *
 * Create a new CamelVeeFolder object.
 *
 * Return value: A new CamelVeeFolder widget.
 **/
CamelFolder *
camel_vtrash_folder_new (CamelStore *parent_store, const char *name)
{
    CamelFolder *vtrash;
    
    vtrash = (CamelFolder *)camel_object_new (camel_vtrash_folder_get_type ());
    camel_vee_folder_construct (CAMEL_VEE_FOLDER (vtrash), parent_store, name,
                    CAMEL_STORE_FOLDER_PRIVATE | CAMEL_STORE_FOLDER_CREATE | CAMEL_STORE_VEE_FOLDER_AUTO);
    camel_vee_folder_set_expression((CamelVeeFolder *)vtrash, "(match-all (system-flag \"Deleted\"))");

    return vtrash;
}

static void
vtrash_append_message (CamelFolder *folder, CamelMimeMessage *message, const CamelMessageInfo *info, CamelException *ex)
{
    /* no-op */
}

static void
vtrash_copy_messages_to (CamelFolder *source, GPtrArray *uids, CamelFolder *dest, CamelException *ex)
{
    /* don't allow the user to copy to or from the vtrash folder */
    camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM,
                  _("You cannot copy messages from this trash folder."));
}

static void
vtrash_move_messages_to (CamelFolder *source, GPtrArray *uids, CamelFolder *dest, CamelException *ex)
{
    CamelVeeMessageInfo *mi;
    int i;
    
    for (i = 0; i < uids->len; i++) {
        mi = (CamelVeeMessageInfo *)camel_folder_get_message_info (source, uids->pdata[i]);
        if (mi == NULL) {
            g_warning ("Cannot find uid %s in source folder during move_to", (char *) uids->pdata[i]);
            continue;
        }
        
        if (dest == mi->folder) {
            /* Just undelete the original message */
            camel_folder_set_message_flags (source, uids->pdata[i], CAMEL_MESSAGE_DELETED, 0);
        } else {
            /* This means that the user is trying to move the message
               from the vTrash to a folder other than the original. */
            GPtrArray *tuids;
            
            tuids = g_ptr_array_new ();
            g_ptr_array_add (tuids, uids->pdata[i]);
            camel_folder_move_messages_to (mi->folder, tuids, dest, ex);
            g_ptr_array_free (tuids, TRUE);
        }
        
        camel_folder_free_message_info (source, (CamelMessageInfo *)mi);
    }
}