2014-01-16 16:49:55 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Olivier Goffart <ogoffart@owncloud.com>
|
|
|
|
* Copyright (C) by Klaas Freitag <freitag@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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-05-09 15:24:11 +03:00
|
|
|
#include "owncloudpropagator.h"
|
2014-11-11 14:16:14 +03:00
|
|
|
#include "syncfileitem.h"
|
2017-05-09 15:24:11 +03:00
|
|
|
#include <QLoggingCategory>
|
|
|
|
#include <QNetworkReply>
|
2014-11-11 14:16:14 +03:00
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC {
|
2014-01-16 16:49:55 +04:00
|
|
|
|
2014-02-06 14:50:16 +04:00
|
|
|
inline QByteArray parseEtag(const char *header)
|
|
|
|
{
|
|
|
|
if (!header)
|
|
|
|
return QByteArray();
|
|
|
|
QByteArray arr = header;
|
2015-10-15 15:57:06 +03:00
|
|
|
|
|
|
|
// Weak E-Tags can appear when gzip compression is on, see #3946
|
|
|
|
if (arr.startsWith("W/"))
|
|
|
|
arr = arr.mid(2);
|
|
|
|
|
|
|
|
// https://github.com/owncloud/client/issues/1195
|
|
|
|
arr.replace("-gzip", "");
|
|
|
|
|
2014-02-06 14:50:16 +04:00
|
|
|
if (arr.length() >= 2 && arr.startsWith('"') && arr.endsWith('"')) {
|
|
|
|
arr = arr.mid(1, arr.length() - 2);
|
|
|
|
}
|
|
|
|
return arr;
|
|
|
|
}
|
|
|
|
|
2014-11-11 14:16:14 +03:00
|
|
|
inline QByteArray getEtagFromReply(QNetworkReply *reply)
|
|
|
|
{
|
2015-03-27 15:16:11 +03:00
|
|
|
QByteArray ocEtag = parseEtag(reply->rawHeader("OC-ETag"));
|
|
|
|
QByteArray etag = parseEtag(reply->rawHeader("ETag"));
|
|
|
|
QByteArray ret = ocEtag;
|
2014-11-11 14:16:14 +03:00
|
|
|
if (ret.isEmpty()) {
|
2015-03-27 15:16:11 +03:00
|
|
|
ret = etag;
|
|
|
|
}
|
|
|
|
if (ocEtag.length() > 0 && ocEtag != etag) {
|
2017-05-09 15:24:11 +03:00
|
|
|
qCDebug(lcPropagator) << "Quite peculiar, we have an etag != OC-Etag [no problem!]" << etag << ocEtag;
|
2014-11-11 14:16:14 +03:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-10-05 06:20:09 +03:00
|
|
|
* Given an error from the network, map to a SyncFileItem::Status error
|
2014-11-11 14:16:14 +03:00
|
|
|
*/
|
2015-09-30 16:34:50 +03:00
|
|
|
inline SyncFileItem::Status classifyError(QNetworkReply::NetworkError nerror,
|
|
|
|
int httpCode,
|
2018-11-12 20:46:39 +03:00
|
|
|
bool *anotherSyncNeeded = nullptr)
|
2015-09-30 16:34:50 +03:00
|
|
|
{
|
2014-11-11 14:16:14 +03:00
|
|
|
Q_ASSERT(nerror != QNetworkReply::NoError); // we should only be called when there is an error
|
|
|
|
|
2018-05-16 16:51:31 +03:00
|
|
|
if (nerror == QNetworkReply::RemoteHostClosedError) {
|
|
|
|
// Sometimes server bugs lead to a connection close on certain files,
|
|
|
|
// that shouldn't bring the rest of the syncing to a halt.
|
|
|
|
return SyncFileItem::NormalError;
|
|
|
|
}
|
|
|
|
|
2015-07-01 14:57:34 +03:00
|
|
|
if (nerror > QNetworkReply::NoError && nerror <= QNetworkReply::UnknownProxyError) {
|
2014-11-11 14:16:14 +03:00
|
|
|
// network error or proxy error -> fatal
|
|
|
|
return SyncFileItem::FatalError;
|
|
|
|
}
|
|
|
|
|
2015-07-01 14:57:34 +03:00
|
|
|
if (httpCode == 503) {
|
|
|
|
// "Service unavailable"
|
|
|
|
// Happens for maintenance mode and other temporary outages
|
|
|
|
return SyncFileItem::FatalError;
|
|
|
|
}
|
|
|
|
|
2014-11-11 14:16:14 +03:00
|
|
|
if (httpCode == 412) {
|
|
|
|
// "Precondition Failed"
|
|
|
|
// Happens when the e-tag has changed
|
|
|
|
return SyncFileItem::SoftError;
|
|
|
|
}
|
|
|
|
|
2015-09-30 15:00:53 +03:00
|
|
|
if (httpCode == 423) {
|
|
|
|
// "Locked"
|
|
|
|
// Should be temporary.
|
2015-09-30 16:34:50 +03:00
|
|
|
if (anotherSyncNeeded) {
|
|
|
|
*anotherSyncNeeded = true;
|
|
|
|
}
|
2019-06-03 18:50:16 +03:00
|
|
|
return SyncFileItem::FileLocked;
|
2015-09-30 15:00:53 +03:00
|
|
|
}
|
|
|
|
|
2014-11-11 14:16:14 +03:00
|
|
|
return SyncFileItem::NormalError;
|
|
|
|
}
|
2014-01-16 16:49:55 +04:00
|
|
|
}
|