mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
69 lines
2 KiB
C++
69 lines
2 KiB
C++
/*
|
|
Copyright (c) 2006 Volker Krause <vkrause@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 "collectiondeletejob.h"
|
|
|
|
#include "collection.h"
|
|
#include "job_p.h"
|
|
|
|
#include <akonadi/private/imapparser_p.h>
|
|
#include <KLocalizedString>
|
|
|
|
using namespace Akonadi;
|
|
|
|
class Akonadi::CollectionDeleteJobPrivate : public JobPrivate
|
|
{
|
|
public:
|
|
CollectionDeleteJobPrivate(CollectionDeleteJob *parent)
|
|
: JobPrivate(parent)
|
|
{
|
|
}
|
|
|
|
Collection mCollection;
|
|
};
|
|
|
|
CollectionDeleteJob::CollectionDeleteJob(const Collection &collection, QObject *parent)
|
|
: Job(new CollectionDeleteJobPrivate(this), parent)
|
|
{
|
|
Q_D(CollectionDeleteJob);
|
|
|
|
d->mCollection = collection;
|
|
}
|
|
|
|
CollectionDeleteJob::~CollectionDeleteJob()
|
|
{
|
|
}
|
|
|
|
void CollectionDeleteJob::doStart()
|
|
{
|
|
Q_D(CollectionDeleteJob);
|
|
|
|
if (!d->mCollection.isValid() && d->mCollection.remoteId().isEmpty()) {
|
|
setError(Unknown);
|
|
setErrorText(i18n("Invalid collection"));
|
|
emitResult();
|
|
return;
|
|
}
|
|
|
|
if (d->mCollection.isValid()) {
|
|
d->writeData(d->newTag() + " DELETE " + QByteArray::number(d->mCollection.id()) + '\n');
|
|
} else {
|
|
d->writeData(d->newTag() + " RID DELETE " + ImapParser::quote(d->mCollection.remoteId().toUtf8()) + '\n');
|
|
}
|
|
}
|