mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
93 lines
3.2 KiB
C++
93 lines
3.2 KiB
C++
/*
|
|
Copyright (c) 2010 Tobias Koenig <tokoe@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.
|
|
|
|
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 "davitemfetchjob.h"
|
|
|
|
#include "davmanager.h"
|
|
|
|
#include <kio/davjob.h>
|
|
#include <kio/job.h>
|
|
#include <klocale.h>
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
static QString etagFromHeaders( const QString &headers )
|
|
{
|
|
const QStringList allHeaders = headers.split( QLatin1Char('\n') );
|
|
|
|
QString etag;
|
|
foreach ( const QString &header, allHeaders ) {
|
|
if ( header.startsWith( QLatin1String( "etag:" ), Qt::CaseInsensitive ) )
|
|
etag = header.section( QLatin1Char(' '), 1 );
|
|
}
|
|
|
|
return etag;
|
|
}
|
|
|
|
|
|
DavItemFetchJob::DavItemFetchJob( const DavUtils::DavUrl &url, const DavItem &item, QObject *parent )
|
|
: KJob( parent ), mUrl( url ), mItem( item )
|
|
{
|
|
}
|
|
|
|
void DavItemFetchJob::start()
|
|
{
|
|
KIO::StoredTransferJob *job = KIO::storedGet( mUrl.url(), KIO::Reload, KIO::HideProgressInfo | KIO::DefaultFlags );
|
|
job->addMetaData( QLatin1String("PropagateHttpHeader"), QLatin1String("true") );
|
|
// Work around a strange bug in Zimbra (seen at least on CE 5.0.18) : if the user-agent
|
|
// contains "Mozilla", some strange debug data is displayed in the shared calendars.
|
|
// This kinda mess up the events parsing...
|
|
job->addMetaData( QLatin1String("UserAgent"), QLatin1String("KDE DAV groupware client") );
|
|
job->addMetaData( QLatin1String("cookies"), QLatin1String("none") );
|
|
job->addMetaData( QLatin1String("no-auth-prompt"), QLatin1String("true") );
|
|
|
|
connect( job, SIGNAL(result(KJob*)), this, SLOT(davJobFinished(KJob*)) );
|
|
}
|
|
|
|
DavItem DavItemFetchJob::item() const
|
|
{
|
|
return mItem;
|
|
}
|
|
|
|
void DavItemFetchJob::davJobFinished( KJob *job )
|
|
{
|
|
KIO::StoredTransferJob *storedJob = qobject_cast<KIO::StoredTransferJob*>( job );
|
|
|
|
if ( storedJob->error() ) {
|
|
const int responseCode = storedJob->queryMetaData( QLatin1String("responsecode") ).isEmpty() ?
|
|
0 :
|
|
storedJob->queryMetaData( QLatin1String("responsecode") ).toInt();
|
|
|
|
QString err;
|
|
if ( storedJob->error() != KIO::ERR_SLAVE_DEFINED )
|
|
err = KIO::buildErrorString( storedJob->error(), storedJob->errorText() );
|
|
else
|
|
err = storedJob->errorText();
|
|
|
|
setError( UserDefinedError + responseCode );
|
|
setErrorText( i18n( "There was a problem with the request.\n"
|
|
"%1 (%2).", err, responseCode ) );
|
|
} else {
|
|
mItem.setData( storedJob->data() );
|
|
mItem.setContentType( storedJob->queryMetaData( QLatin1String("content-type") ) );
|
|
mItem.setEtag( etagFromHeaders( storedJob->queryMetaData( QLatin1String("HTTP-Headers") ) ) );
|
|
}
|
|
|
|
emitResult();
|
|
}
|
|
|