kde-playground/kdepimlibs/kimap/appendjob.cpp
2015-04-14 21:49:29 +00:00

154 lines
3.5 KiB
C++

/*
Copyright (c) 2009 Kevin Ottens <ervin@kde.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library 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 Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#include "appendjob.h"
#include <KDE/KLocalizedString>
#include "job_p.h"
#include "message_p.h"
#include "session_p.h"
#include "rfccodecs.h"
namespace KIMAP
{
class AppendJobPrivate : public JobPrivate
{
public:
AppendJobPrivate( Session *session, const QString& name ) : JobPrivate( session, name ), uid( 0 ) { }
~AppendJobPrivate() { }
QString mailBox;
QList<QByteArray> flags;
KDateTime internalDate;
QByteArray content;
qint64 uid;
};
}
using namespace KIMAP;
AppendJob::AppendJob( Session *session )
: Job( *new AppendJobPrivate( session, i18n( "Append" ) ) )
{
}
AppendJob::~AppendJob()
{
}
void AppendJob::setMailBox( const QString &mailBox )
{
Q_D( AppendJob );
d->mailBox = mailBox;
}
QString AppendJob::mailBox() const
{
Q_D( const AppendJob );
return d->mailBox;
}
void AppendJob::setFlags( const QList<QByteArray> &flags)
{
Q_D( AppendJob );
d->flags = flags;
}
QList<QByteArray> AppendJob::flags() const
{
Q_D( const AppendJob );
return d->flags;
}
void AppendJob::setInternalDate( const KDateTime &internalDate )
{
Q_D( AppendJob );
d->internalDate = internalDate;
}
KDateTime AppendJob::internalDate() const
{
Q_D( const AppendJob );
return d->internalDate;
}
void AppendJob::setContent( const QByteArray &content )
{
Q_D( AppendJob );
d->content = content;
}
QByteArray AppendJob::content() const
{
Q_D( const AppendJob );
return d->content;
}
qint64 AppendJob::uid() const
{
Q_D( const AppendJob );
return d->uid;
}
void AppendJob::doStart()
{
Q_D( AppendJob );
QByteArray parameters = '\"' + KIMAP::encodeImapFolderName( d->mailBox.toUtf8() ) + '\"';
if ( !d->flags.isEmpty() ) {
parameters += " (";
foreach ( const QByteArray &flag, d->flags ) {
parameters+= flag + ' ';
}
parameters.chop( 1 );
parameters += ')';
}
if ( !d->internalDate.isNull() ) {
parameters += " \"" + d->internalDate.toString( QString::fromAscii( "%d-%:b-%Y %H:%M:%S %z" ) ).toLatin1() + '\"';
}
parameters += " {" + QByteArray::number( d->content.size() ) + '}';
d->tags << d->sessionInternal()->sendCommand( "APPEND", parameters );
}
void AppendJob::handleResponse( const Message &response )
{
Q_D( AppendJob );
for ( QList<Message::Part>::ConstIterator it = response.responseCode.begin();
it != response.responseCode.end(); ++it ) {
if ( it->toString() == "APPENDUID" ) {
it = it + 2;
if ( it != response.responseCode.end() ) {
d->uid = it->toString().toLongLong();
}
break;
}
}
if ( handleErrorReplies( response ) == NotHandled ) {
if ( !response.content.isEmpty() && response.content[0].toString() == "+" ) {
d->sessionInternal()->sendData( d->content );
}
}
}