kmail

attachmentcollector.cpp
1 /*
2  attachmentcollector.cpp
3 
4  This file is part of KMail, the KDE mail client.
5  Copyright (c) 2004 Marc Mutz <mutz@kde.org>
6 
7  KMail is free software; you can redistribute it and/or modify it
8  under the terms of the GNU General Public License, version 2, as
9  published by the Free Software Foundation.
10 
11  KMail is distributed in the hope that it will be useful, but
12  WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with this program; if not, write to the Free Software
18  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 
20  In addition, as a special exception, the copyright holders give
21  permission to link the code of this program with any edition of
22  the TQt library by Trolltech AS, Norway (or with modified versions
23  of TQt that use the same license as TQt), and distribute linked
24  combinations including the two. You must obey the GNU General
25  Public License in all respects for all of the code used other than
26  TQt. If you modify this file, you may extend this exception to
27  your version of the file, but you are not obligated to do so. If
28  you do not wish to do so, delete this exception statement from
29  your version.
30 */
31 
32 #include "attachmentcollector.h"
33 
34 #include "partNode.h"
35 
36 static bool isInSkipList( partNode * ) {
37  return false;
38 }
39 
40 static bool isInExclusionList( const partNode * node ) {
41  if ( !node )
42  return true;
43 
44  switch ( node->type() ) {
45  case DwMime::kTypeApplication:
46  switch ( node->subType() ) {
47  case DwMime::kSubtypePkcs7Mime:
48  case DwMime::kSubtypePkcs7Signature:
49  case DwMime::kSubtypePgpSignature:
50  case DwMime::kSubtypePgpEncrypted:
51  return true;
52  }
53  break;
54  case DwMime::kTypeMultipart:
55  return true;
56  }
57  return false;
58 }
59 
60 
61 void KMail::AttachmentCollector::collectAttachmentsFrom( partNode * node ) {
62  while ( node ) {
63  if ( node->isFirstTextPart() ) {
64  node = node->next();
65  continue;
66  }
67  if ( isInSkipList( node ) ) {
68  node = node->next( false ); // skip even the children
69  continue;
70  }
71  if ( isInExclusionList( node ) ) {
72  node = node->next();
73  continue;
74  }
75 
76  if ( node->isHeuristicalAttachment() ) {
77  mAttachments.push_back( node );
78  node = node->next( false ); // just make double sure
79  continue;
80  }
81 
82  node = node->next();
83  }
84 }
85