: QObject(parent)
, _timedout(false)
, _followRedirects(false)
+ , _account(account)
, _ignoreCredentialFailure(false)
, _reply(0)
- , _account(account)
, _path(path)
, _redirectCount(0)
{
void slotFinished();
virtual void slotTimeout();
+protected:
+ AccountPtr _account;
private:
QNetworkReply* addTimer(QNetworkReply *reply);
bool _ignoreCredentialFailure;
QPointer<QNetworkReply> _reply; // (QPointer because the NetworkManager may be destroyed before the jobs at exit)
- AccountPtr _account;
QString _path;
QTimer _timer;
int _redirectCount;
return _serverVersion;
}
+int Account::serverVersionInt()
+{
+ // FIXME: Use Qt 5.5 QVersionNumber
+ auto components = serverVersion().split('.');
+ return (components.value(0).toInt() << 16)
+ + (components.value(1).toInt() << 8)
+ + components.value(2).toInt();
+}
+
void Account::setServerVersion(const QString& version)
{
_serverVersion = version;
}
+bool Account::rootEtagChangesNotOnlySubFolderEtags()
+{
+ return (serverVersionInt() >= 0x080100);
+}
+
+
+
} // namespace OCC
const Capabilities &capabilities() const;
void setServerVersion(const QString &version);
QString serverVersion();
+ int serverVersionInt();
+
+ // Fixed from 8.1 https://github.com/owncloud/client/issues/3730
+ bool rootEtagChangesNotOnlySubFolderEtags();
void clearCookieJar();
void lendCookieJarTo(QNetworkAccessManager *guest);
//This works in concerto with the RequestEtagJob and the Folder object to check if the remote folder changed.
if (map.contains("getetag")) {
_etagConcatenation += map.value("getetag");
+
+ if (_firstEtag.isEmpty()) {
+ _firstEtag = map.value("getetag"); // for directory itself
+ }
}
}
deleteLater();
return;
}
+ emit etag(_firstEtag);
emit etagConcatenation(_etagConcatenation);
emit finishedWithResult(_results);
deleteLater();
this, SLOT(singleDirectoryJobFirstDirectoryPermissionsSlot(QString)));
QObject::connect(_singleDirJob, SIGNAL(etagConcatenation(QString)),
this, SIGNAL(etagConcatenation(QString)));
+ QObject::connect(_singleDirJob, SIGNAL(etag(QString)),
+ this, SIGNAL(etag(QString)));
_singleDirJob->start();
}
signals:
void firstDirectoryPermissions(const QString &);
void etagConcatenation(const QString &);
+ void etag(const QString &);
void finishedWithResult(const QList<FileStatPointer> &);
void finishedWithError(int csyncErrnoCode, QString msg);
private slots:
QList<FileStatPointer> _results;
QString _subPath;
QString _etagConcatenation;
+ QString _firstEtag;
AccountPtr _account;
bool _ignoredFirst;
QPointer<LsColJob> _lsColJob;
void slotGetSizeFinishedWithError();
void slotGetSizeResult(const QVariantMap&);
signals:
- void etagConcatenation(QString);
+ void etag(const QString &);
+ void etagConcatenation(const QString &);
public:
void setupHooks(DiscoveryJob* discoveryJob, const QString &pathPrefix);
};
void RequestEtagJob::start()
{
QNetworkRequest req;
- // Let's always request all entries inside a directory. There are/were bugs in the server
- // where a root or root-folder ETag is not updated when its contents change. We work around
- // this by concatenating the ETags of the root and its contents.
- req.setRawHeader("Depth", "1");
- // See https://github.com/owncloud/core/issues/5255 and others
+ if (_account && _account->rootEtagChangesNotOnlySubFolderEtags()) {
+ // Fixed from 8.1 https://github.com/owncloud/client/issues/3730
+ req.setRawHeader("Depth", "0");
+ } else {
+ // Let's always request all entries inside a directory. There are/were bugs in the server
+ // where a root or root-folder ETag is not updated when its contents change. We work around
+ // this by concatenating the ETags of the root and its contents.
+ req.setRawHeader("Depth", "1");
+ // See https://github.com/owncloud/core/issues/5255 and others
+ }
QByteArray xml("<?xml version=\"1.0\" ?>\n"
"<d:propfind xmlns:d=\"DAV:\">\n"
if (!env.isEmpty()) {
parallelChunkUpload = env != "false" && env != "0";
} else {
- auto version = _propagator->account()->serverVersion();
- auto components = version.split('.');
- int versionNum = (components.value(0).toInt() << 16)
- + (components.value(1).toInt() << 8)
- + components.value(2).toInt();
+ int versionNum = _propagator->account()->serverVersionInt();
if (versionNum < 0x080003) {
// Disable parallel chunk upload severs older than 8.0.3 to avoid too many
// internal sever errors (#2743, #2938)
_discoveryMainThread = new DiscoveryMainThread(account());
_discoveryMainThread->setParent(this);
connect(this, SIGNAL(finished()), _discoveryMainThread, SLOT(deleteLater()));
- connect(_discoveryMainThread, SIGNAL(etagConcatenation(QString)), this, SLOT(slotRootEtagReceived(QString)));
-
+ qDebug() << "=====Server" << account()->serverVersion()
+ << QString("rootEtagChangesNotOnlySubFolderEtags=%1").arg(account()->rootEtagChangesNotOnlySubFolderEtags());
+ if (account()->rootEtagChangesNotOnlySubFolderEtags()) {
+ connect(_discoveryMainThread, SIGNAL(etag(QString)), this, SLOT(slotRootEtagReceived(QString)));
+ } else {
+ connect(_discoveryMainThread, SIGNAL(etagConcatenation(QString)), this, SLOT(slotRootEtagReceived(QString)));
+ }
DiscoveryJob *discoveryJob = new DiscoveryJob(_csync_ctx);
discoveryJob->_selectiveSyncBlackList = selectiveSyncBlackList;