nextcloud-desktop/src/libsync/propagateremotedelete.cpp

127 lines
4.2 KiB
C++
Raw Normal View History

2014-11-11 15:19:29 +03:00
/*
* Copyright (C) by Olivier Goffart <ogoffart@owncloud.com>
*
* 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.
*/
#include "propagateremotedelete.h"
#include "owncloudpropagator_p.h"
#include "account.h"
#include "asserts.h"
2014-11-11 15:19:29 +03:00
#include <QLoggingCategory>
2014-12-02 16:20:13 +03:00
namespace OCC {
2014-11-11 15:19:29 +03:00
Q_LOGGING_CATEGORY(lcDeleteJob, "sync.networkjob.delete", QtInfoMsg)
Q_LOGGING_CATEGORY(lcPropagateRemoteDelete, "sync.propagator.remotedelete", QtInfoMsg)
DeleteJob::DeleteJob(AccountPtr account, const QString& path, QObject* parent)
2014-11-11 15:19:29 +03:00
: AbstractNetworkJob(account, path, parent)
{ }
DeleteJob::DeleteJob(AccountPtr account, const QUrl& url, QObject* parent)
: AbstractNetworkJob(account, QString(), parent), _url(url)
{ }
2014-11-11 15:19:29 +03:00
void DeleteJob::start()
{
QNetworkRequest req;
if (_url.isValid()) {
sendRequest("DELETE", _url, req);
} else {
sendRequest("DELETE", makeDavUrl(path()), req);
}
2014-11-11 15:19:29 +03:00
if( reply()->error() != QNetworkReply::NoError ) {
qCWarning(lcDeleteJob) << " Network error: " << reply()->errorString();
2014-11-11 15:19:29 +03:00
}
AbstractNetworkJob::start();
}
bool DeleteJob::finished()
{
qCInfo(lcDeleteJob) << "DELETE of" << reply()->request().url() << "FINISHED WITH STATUS"
<< reply()->error()
<< (reply()->error() == QNetworkReply::NoError ? QLatin1String("") : errorString());
2014-11-11 15:19:29 +03:00
emit finishedSignal();
return true;
}
void PropagateRemoteDelete::start()
{
if (propagator()->_abortRequested.fetchAndAddRelaxed(0))
2014-11-11 15:19:29 +03:00
return;
qCDebug(lcPropagateRemoteDelete) << _item->_file;
2014-11-11 15:19:29 +03:00
_job = new DeleteJob(propagator()->account(),
propagator()->_remoteFolder + _item->_file,
this);
2014-11-11 15:19:29 +03:00
connect(_job, SIGNAL(finishedSignal()), this, SLOT(slotDeleteJobFinished()));
propagator()->_activeJobList.append(this);
2014-11-11 15:19:29 +03:00
_job->start();
}
void PropagateRemoteDelete::abort()
{
if (_job && _job->reply())
_job->reply()->abort();
}
void PropagateRemoteDelete::slotDeleteJobFinished()
{
propagator()->_activeJobList.removeOne(this);
2014-11-11 15:19:29 +03:00
ASSERT(_job);
2014-11-11 15:19:29 +03:00
QNetworkReply::NetworkError err = _job->reply()->error();
const int httpStatus = _job->reply()->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
_item->_httpErrorCode = httpStatus;
if (err != QNetworkReply::NoError && err != QNetworkReply::ContentNotFoundError) {
2014-11-11 15:19:29 +03:00
if( checkForProblemsWithShared(_item->_httpErrorCode,
2014-11-11 15:19:29 +03:00
tr("The file has been removed from a read only share. It was restored.")) ) {
return;
}
SyncFileItem::Status status = classifyError(err, _item->_httpErrorCode,
&propagator()->_anotherSyncNeeded);
2014-11-11 15:19:29 +03:00
done(status, _job->errorString());
return;
}
_item->_responseTimeStamp = _job->responseTimestamp();
2014-11-11 15:19:29 +03:00
// A 404 reply is also considered a success here: We want to make sure
// a file is gone from the server. It not being there in the first place
// is ok. This will happen for files that are in the DB but not on
// the server or the local file system.
if (httpStatus != 204 && httpStatus != 404) {
// Normally we expect "204 No Content"
// If it is not the case, it might be because of a proxy or gateway intercepting the request, so we must
// throw an error.
2015-02-06 00:00:13 +03:00
done(SyncFileItem::NormalError, tr("Wrong HTTP code returned by server. Expected 204, but received \"%1 %2\".")
.arg(_item->_httpErrorCode).arg(_job->reply()->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toString()));
return;
}
propagator()->_journal->deleteFileRecord(_item->_originalFile, _item->_isDirectory);
propagator()->_journal->commit("Remote Remove");
2014-11-11 15:19:29 +03:00
done(SyncFileItem::Success);
}
}