kde-playground/kdepim/messagecomposer/composer/savecontactpreferencejob.cpp
2015-04-14 21:49:29 +00:00

122 lines
4.6 KiB
C++

/*
Copyright (c) 2014 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, 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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "savecontactpreferencejob.h"
#include <KInputDialog>
#include <KLocalizedString>
#include <Akonadi/Contact/ContactSearchJob>
#include <Akonadi/CollectionDialog>
#include <Akonadi/ItemCreateJob>
#include <Akonadi/ItemModifyJob>
#include <QPointer>
#include <QDebug>
using namespace Kleo;
SaveContactPreferenceJob::SaveContactPreferenceJob( const QString& email, const Kleo::KeyResolver::ContactPreferences& pref, QObject *parent)
: KJob(parent),
mEmail(email),
mPref(pref)
{
}
SaveContactPreferenceJob::~SaveContactPreferenceJob()
{
}
void SaveContactPreferenceJob::start()
{
Akonadi::ContactSearchJob *job = new Akonadi::ContactSearchJob(this);
connect( job, SIGNAL(result(KJob*)), this, SLOT(slotSearchContact(KJob*)) );
job->setLimit( 1 );
job->setQuery( Akonadi::ContactSearchJob::Email, mEmail );
job->start();
}
void SaveContactPreferenceJob::slotSearchContact(KJob* job)
{
Akonadi::ContactSearchJob *contactSearchJob = qobject_cast<Akonadi::ContactSearchJob *>(job);
const Akonadi::Item::List items = contactSearchJob->items();
if ( items.isEmpty() ) {
bool ok = true;
const QString fullName = KInputDialog::getText( i18n( "Name Selection" ), i18n( "Which name shall the contact '%1' have in your address book?", mEmail ), QString(), &ok );
if ( !ok ) {
emitResult();
return;
}
QPointer<Akonadi::CollectionDialog> dlg =
new Akonadi::CollectionDialog( Akonadi::CollectionDialog::KeepTreeExpanded );
dlg->setMimeTypeFilter( QStringList() << KABC::Addressee::mimeType() );
dlg->setAccessRightsFilter( Akonadi::Collection::CanCreateItem );
dlg->setDescription( i18n( "Select the address book folder to store the new contact in:" ) );
if ( !dlg->exec() ) {
delete dlg;
emitResult();
return;
}
const Akonadi::Collection targetCollection = dlg->selectedCollection();
delete dlg;
KABC::Addressee contact;
contact.setNameFromString( fullName );
contact.insertEmail( mEmail, true );
writeCustomContactProperties( contact, mPref );
Akonadi::Item item( KABC::Addressee::mimeType() );
item.setPayload<KABC::Addressee>( contact );
Akonadi::ItemCreateJob *job = new Akonadi::ItemCreateJob( item, targetCollection );
connect(job, SIGNAL(result(KJob*)), SLOT(slotModifyCreateItem(KJob*)));
} else {
Akonadi::Item item = items.first();
KABC::Addressee contact = item.payload<KABC::Addressee>();
writeCustomContactProperties( contact, mPref );
item.setPayload<KABC::Addressee>( contact );
Akonadi::ItemModifyJob *job = new Akonadi::ItemModifyJob( item );
connect(job, SIGNAL(result(KJob*)), SLOT(slotModifyCreateItem(KJob*)));
job->start();
}
}
void SaveContactPreferenceJob::writeCustomContactProperties( KABC::Addressee &contact, const Kleo::KeyResolver::ContactPreferences& pref ) const
{
contact.insertCustom( QLatin1String("KADDRESSBOOK"), QLatin1String("CRYPTOENCRYPTPREF"), QLatin1String( Kleo::encryptionPreferenceToString( pref.encryptionPreference ) ) );
contact.insertCustom( QLatin1String("KADDRESSBOOK"), QLatin1String("CRYPTOSIGNPREF"), QLatin1String( Kleo::signingPreferenceToString( pref.signingPreference ) ) );
contact.insertCustom( QLatin1String("KADDRESSBOOK"), QLatin1String("CRYPTOPROTOPREF"), QLatin1String( cryptoMessageFormatToString( pref.cryptoMessageFormat ) ) );
contact.insertCustom( QLatin1String("KADDRESSBOOK"), QLatin1String("OPENPGPFP"), pref.pgpKeyFingerprints.join( QLatin1String(",") ) );
contact.insertCustom( QLatin1String("KADDRESSBOOK"), QLatin1String("SMIMEFP"), pref.smimeCertFingerprints.join( QLatin1String(",") ) );
}
void SaveContactPreferenceJob::slotModifyCreateItem(KJob *job)
{
if ( job->error() ) {
qDebug()<<"modify item failed "<<job->errorString();
}
emitResult();
}