You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

250 lines
8.6 KiB

/*******************************************************************************
**
** Filename : util
** Created on : 03 April, 2005
** Copyright : (c) 2005 Till Adam
** Email : <adam@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.
**
** It 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
**
** In addition, as a special exception, the copyright holders give
** permission to link the code of this program with any edition of
** the Qt library by Trolltech AS, Norway (or with modified versions
** of Qt that use the same license as Qt), and distribute linked
** combinations including the two. You must obey the GNU General
** Public License in all respects for all of the code used other than
** Qt. If you modify this file, you may extend this exception to
** your version of the file, but you are not obligated to do so. If
** you do not wish to do so, delete this exception statement from
** your version.
**
*******************************************************************************/
#include "util.h"
#include "imapsettings.h"
#include "messagecore/stringutil.h"
#include "messagecomposer/messagehelper.h"
#include <kmime/kmime_message.h>
#include <kpimutils/email.h>
#include <kimap/loginjob.h>
#include <mailtransport/transport.h>
#include <Akonadi/AgentManager>
#include <Akonadi/EntityTreeModel>
#include <akonadi/entitymimetypefiltermodel.h>
#include <KStandardDirs>
#include <kascii.h>
#include <KCharsets>
#include <stdlib.h>
#ifdef Q_WS_MACX
#endif
#include "foldercollection.h"
uint KMail::Util::folderIdentity(const Akonadi::Item& item)
{
uint id = 0;
if( item.isValid() && item.parentCollection().isValid() ) {
QSharedPointer<FolderCollection> fd = FolderCollection::forCollection( item.parentCollection() );
id = fd->identity();
}
return id;
}
QStringList KMail::Util::mailingListsFromMessage( const Akonadi::Item& item )
{
QStringList addresses;
// determine the mailing list posting address
Akonadi::Collection parentCollection = item.parentCollection();
QSharedPointer<FolderCollection> fd;
if ( parentCollection.isValid() ) {
fd = FolderCollection::forCollection( parentCollection );
if ( fd->isMailingListEnabled() && !fd->mailingListPostAddress().isEmpty() ) {
addresses << fd->mailingListPostAddress();
}
}
return addresses;
}
Akonadi::Item::Id KMail::Util::putRepliesInSameFolder( const Akonadi::Item& item )
{
Akonadi::Collection parentCollection = item.parentCollection();
QSharedPointer<FolderCollection> fd;
if ( parentCollection.isValid() ) {
fd = FolderCollection::forCollection( parentCollection );
if( fd->putRepliesInSameFolder() ) {
return parentCollection.id();
}
}
return -1;
}
KUrl KMail::Util::findSieveUrlForAccount( OrgKdeAkonadiImapSettingsInterface *a, const QString& ident) {
assert( a );
if ( !a->sieveSupport() )
return KUrl();
if ( a->sieveReuseConfig() ) {
// assemble Sieve url from the settings of the account:
KUrl u;
u.setProtocol( "sieve" );
QString server;
QDBusReply<QString> reply = a->imapServer();
if ( reply.isValid() ) {
server = reply;
server = server.section( ':', 0, 0 );
} else {
return KUrl();
}
u.setHost( server );
u.setUser( a->userName() );
QDBusInterface resourceSettings( QString("org.freedesktop.Akonadi.Resource.")+ident,"/Settings", "org.kde.Akonadi.Imap.Wallet" );
QString pwd;
QDBusReply<QString> replyPass = resourceSettings.call( "password" );
if ( replyPass.isValid() ) {
pwd = replyPass;
}
u.setPass( pwd );
u.setPort( a->sievePort() );
QString authStr;
switch( a->authentication() ) {
case MailTransport::Transport::EnumAuthenticationType::CLEAR:
case MailTransport::Transport::EnumAuthenticationType::PLAIN:
authStr = "PLAIN";
break;
case MailTransport::Transport::EnumAuthenticationType::LOGIN:
authStr = "LOGIN";
break;
case MailTransport::Transport::EnumAuthenticationType::CRAM_MD5:
authStr = "CRAM-MD5";
break;
case MailTransport::Transport::EnumAuthenticationType::DIGEST_MD5:
authStr = "DIGEST-MD5";
break;
case MailTransport::Transport::EnumAuthenticationType::GSSAPI:
authStr = "GSSAPI";
break;
case MailTransport::Transport::EnumAuthenticationType::ANONYMOUS:
authStr = "ANONYMOUS";
break;
default:
authStr = "PLAIN";
break;
}
u.addQueryItem( "x-mech", authStr );
if ( a->safety() == ( int )( KIMAP::LoginJob::Unencrypted ))
u.addQueryItem( "x-allow-unencrypted", "true" );
u.setFileName( a->sieveVacationFilename() );
return u;
} else {
KUrl u( a->sieveAlternateUrl() );
if ( u.protocol().toLower() == "sieve" && ( a->safety() == ( int )( KIMAP::LoginJob::Unencrypted ) ) && u.queryItem("x-allow-unencrypted").isEmpty() )
u.addQueryItem( "x-allow-unencrypted", "true" );
u.setFileName( a->sieveVacationFilename() );
return u;
}
}
OrgKdeAkonadiImapSettingsInterface *KMail::Util::createImapSettingsInterface( const QString &ident )
{
return new OrgKdeAkonadiImapSettingsInterface("org.freedesktop.Akonadi.Resource." + ident, "/Settings", QDBusConnection::sessionBus() );
}
void KMail::Util::launchAccountWizard( QWidget *w )
{
QStringList lst;
lst.append( "--type" );
lst.append( "message/rfc822" );
const QString path = KStandardDirs::findExe( QLatin1String("accountwizard" ) );
if( !QProcess::startDetached( path, lst ) )
KMessageBox::error( w, i18n( "Could not start the account wizard. "
"Please check your installation." ),
i18n( "Unable to start account wizard" ) );
}
Akonadi::AgentInstance::List KMail::Util::agentInstances()
{
Akonadi::AgentInstance::List relevantInstances;
foreach ( const Akonadi::AgentInstance &instance, Akonadi::AgentManager::self()->instances() ) {
if ( instance.type().mimeTypes().contains( KMime::Message::mimeType() ) &&
instance.type().capabilities().contains( "Resource" ) &&
!instance.type().capabilities().contains( "Virtual" ) ) {
relevantInstances << instance;
}
}
return relevantInstances;
}
void KMail::Util::handleClickedURL( const KUrl &url, uint identity )
{
if ( url.protocol() == "mailto" )
{
KMime::Message::Ptr msg ( new KMime::Message );
MessageHelper::initHeader( msg, KMKernel::self()->identityManager(), identity );
msg->contentType()->setCharset("utf-8");
QMap<QString, QString> fields = MessageCore::StringUtil::parseMailtoUrl( url );
msg->to()->fromUnicodeString( fields.value( "to" ),"utf-8" );
if ( !fields.value( "subject" ).isEmpty() )
msg->subject()->fromUnicodeString( fields.value( "subject" ),"utf-8" );
if ( !fields.value( "body" ).isEmpty() )
msg->setBody( fields.value( "body" ).toUtf8() );
if ( !fields.value( "cc" ).isEmpty() )
msg->cc()->fromUnicodeString( fields.value( "cc" ),"utf-8" );
KMail::Composer * win = KMail::makeComposer( msg, KMail::Composer::New, identity );
win->setFocusToSubject();
win->show();
} else {
kWarning() << "Can't handle URL:" << url;
}
}
bool KMail::Util::isVirtualCollection(const Akonadi::Collection & collection)
{
return ( collection.resource() == QLatin1String( "akonadi_nepomuktag_resource" ) || collection.resource() == QLatin1String( "akonadi_search_resource" ) );
}
QString KMail::Util::fullCollectionPath( const Akonadi::Collection& collection )
{
QString fullPath;
QModelIndex idx = Akonadi::EntityTreeModel::modelIndexForCollection( KMKernel::self()->collectionModel(), collection );
if ( !idx.isValid() )
return fullPath;
fullPath = idx.data().toString();
idx = idx.parent();
while ( idx != QModelIndex() ) {
fullPath = idx.data().toString() + '/' + fullPath;
idx = idx.parent();
}
return fullPath;
}