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.
 
 
 

225 lines
7.4 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 "kmkernel.h"
#include "messagecore/stringutil.h"
#include "messagecomposer/messagehelper.h"
#include "templateparser/templateparser.h"
#include <kmime/kmime_message.h>
#include <kmessagebox.h>
#include <KLocale>
#include <KStandardDirs>
#include <Akonadi/EntityTreeModel>
#include <Akonadi/EntityMimeTypeFilterModel>
#include <QProcess>
#include <QModelIndex>
#include "foldercollection.h"
using namespace MailCommon;
KMime::Types::Mailbox::List KMail::Util::mailingListsFromMessage( const Akonadi::Item& item )
{
KMime::Types::Mailbox::List addresses;
// determine the mailing list posting address
Akonadi::Collection parentCollection = item.parentCollection();
if ( parentCollection.isValid() ) {
const QSharedPointer<FolderCollection> fd = FolderCollection::forCollection( parentCollection, false );
if ( fd->isMailingListEnabled() && !fd->mailingListPostAddress().isEmpty() ) {
addresses << MessageCore::StringUtil::mailboxFromUnicodeString( fd->mailingListPostAddress() );
}
}
return addresses;
}
Akonadi::Item::Id KMail::Util::putRepliesInSameFolder( const Akonadi::Item& item )
{
Akonadi::Collection parentCollection = item.parentCollection();
if ( parentCollection.isValid() ) {
const QSharedPointer<FolderCollection> fd = FolderCollection::forCollection( parentCollection, false );
if( fd->putRepliesInSameFolder() ) {
return parentCollection.id();
}
}
return -1;
}
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" ) );
}
bool KMail::Util::handleClickedURL( const KUrl &url, const QSharedPointer<MailCommon::FolderCollection> &folder )
{
if ( url.protocol() == QLatin1String( "mailto" ) )
{
KMime::Message::Ptr msg ( new KMime::Message );
uint identity = !folder.isNull() ? folder->identity() : 0;
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" );
if ( !folder.isNull() ) {
TemplateParser::TemplateParser parser( msg, TemplateParser::TemplateParser::NewMessage );
parser.setIdentityManager( KMKernel::self()->identityManager() );
parser.process( msg, folder->collection() );
}
KMail::Composer * win = KMail::makeComposer( msg, false, false, KMail::Composer::New, identity );
win->setFocusToSubject();
if ( !folder.isNull() ) {
win->setCollectionForNewMessage( folder->collection() );
}
win->show();
return true;
} else {
kWarning() << "Can't handle URL:" << url;
return false;
}
}
bool KMail::Util::mailingListsHandleURL( const KUrl::List& lst,const QSharedPointer<MailCommon::FolderCollection> &folder )
{
const QString handler = ( folder->mailingList().handler() == MailingList::KMail )
? QLatin1String( "mailto" ) : QLatin1String( "https" );
KUrl urlToHandle;
KUrl::List::ConstIterator end( lst.constEnd() );
for ( KUrl::List::ConstIterator itr = lst.constBegin(); itr != end; ++itr ) {
if ( handler == (*itr).protocol() ) {
urlToHandle = *itr;
break;
}
}
if ( urlToHandle.isEmpty() && !lst.empty() ) {
urlToHandle = lst.first();
}
if ( !urlToHandle.isEmpty() ) {
return KMail::Util::handleClickedURL( urlToHandle, folder );
} else {
kWarning()<< "Can't handle url";
return false;
}
}
bool KMail::Util::mailingListPost( const QSharedPointer<MailCommon::FolderCollection> &fd )
{
if ( fd )
return KMail::Util::mailingListsHandleURL( fd->mailingList().postUrls(),fd );
return false;
}
bool KMail::Util::mailingListSubscribe( const QSharedPointer<MailCommon::FolderCollection> &fd )
{
if ( fd )
return KMail::Util::mailingListsHandleURL( fd->mailingList().subscribeUrls(),fd );
return false;
}
bool KMail::Util::mailingListUnsubscribe( const QSharedPointer<MailCommon::FolderCollection> &fd )
{
if ( fd )
return KMail::Util::mailingListsHandleURL( fd->mailingList().unsubscribeUrls(),fd );
return false;
}
bool KMail::Util::mailingListArchives( const QSharedPointer<MailCommon::FolderCollection> &fd )
{
if ( fd )
return KMail::Util::mailingListsHandleURL( fd->mailingList().archiveUrls(),fd );
return false;
}
bool KMail::Util::mailingListHelp( const QSharedPointer<MailCommon::FolderCollection> &fd )
{
if ( fd )
return KMail::Util::mailingListsHandleURL( fd->mailingList().helpUrls(),fd );
return false;
}
void KMail::Util::lastEncryptAndSignState(bool &lastEncrypt, bool &lastSign, const KMime::Message::Ptr& msg)
{
lastSign = KMime::isSigned(msg.get());
lastEncrypt = KMime::isEncrypted(msg.get());
}
QColor KMail::Util::misspelledColor()
{
return QColor(Qt::red);
}
QColor KMail::Util::quoteL1Color()
{
return QColor( 0x00, 0x80, 0x00 );
}
QColor KMail::Util::quoteL2Color()
{
return QColor( 0x00, 0x70, 0x00 );
}
QColor KMail::Util::quoteL3Color()
{
return QColor( 0x00, 0x60, 0x00 );
}