1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
/*
* Copyright (c) 1996-1998 Stefan Taferner <taferner@kde.org>
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "filteractionsendfakedisposition.h"
#include <messagecore/misc/mdnstateattribute.h>
#include <KDE/KLocale>
using namespace MailCommon;
// if you change this list, also update
// the count in argsFromString
static const KMime::MDN::DispositionType mdns[] =
{
KMime::MDN::Displayed,
KMime::MDN::Deleted,
KMime::MDN::Dispatched,
KMime::MDN::Processed,
KMime::MDN::Denied,
KMime::MDN::Failed,
};
static const int numMDNs = sizeof( mdns ) / sizeof( *mdns );
FilterActionSendFakeDisposition::FilterActionSendFakeDisposition( QObject *parent )
: FilterActionWithStringList( QLatin1String("fake mdn"), i18n( "Send Fake MDN" ), parent )
{
// if you change this list, also update
// mdns above
mParameterList.append( QString() );
mParameterList.append( i18nc( "MDN type", "Ignore" ) );
mParameterList.append( i18nc( "MDN type", "Displayed" ) );
mParameterList.append( i18nc( "MDN type", "Deleted" ) );
mParameterList.append( i18nc( "MDN type", "Dispatched" ) );
mParameterList.append( i18nc( "MDN type", "Processed" ) );
mParameterList.append( i18nc( "MDN type", "Denied" ) );
mParameterList.append( i18nc( "MDN type", "Failed" ) );
mParameter = mParameterList.at( 0 );
}
FilterAction* FilterActionSendFakeDisposition::newAction()
{
return new FilterActionSendFakeDisposition;
}
bool FilterActionSendFakeDisposition::isEmpty() const
{
return false;
}
FilterAction::ReturnCode FilterActionSendFakeDisposition::process(ItemContext &context , bool) const
{
const int index = mParameterList.indexOf( mParameter );
if ( index < 1 )
return ErrorButGoOn;
if ( index == 1 ) { // ignore
if ( context.item().hasAttribute<MessageCore::MDNStateAttribute>() ) {
context.item().attribute<MessageCore::MDNStateAttribute>()->setMDNState( MessageCore::MDNStateAttribute::MDNIgnore );
context.setNeedsFlagStore();
}
} else // send
sendMDN( context.item(), mdns[ index - 2 ] ); // skip first two entries: "" and "ignore"
return GoOn;
}
SearchRule::RequiredPart FilterActionSendFakeDisposition::requiredPart() const
{
return SearchRule::CompleteMessage;
}
void FilterActionSendFakeDisposition::argsFromString( const QString &argsStr )
{
if ( argsStr.length() == 1 ) {
if ( argsStr[ 0 ] == 'I' ) { // ignore
mParameter = mParameterList.at( 1 );
return;
}
for ( int i = 0 ; i < numMDNs ; ++i ) {
if ( char( mdns[ i ] ) == argsStr[ 0 ] ) { // send
mParameter = mParameterList.at( i + 2 );
return;
}
}
}
mParameter = mParameterList.at( 0 );
}
QString FilterActionSendFakeDisposition::argsAsString() const
{
const int index = mParameterList.indexOf( mParameter );
if ( index < 1 )
return QString();
return QString( QChar( index < 2 ? 'I' : char( mdns[ index - 2 ] ) ) );
}
QString FilterActionSendFakeDisposition::displayString() const
{
return label() + QLatin1String( " \"" ) + mParameter + QLatin1String( "\"" );
}
|