2013-12-13 23:27:08 +04:00
|
|
|
/*
|
2013-10-18 14:24:29 +04:00
|
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
|
|
|
|
* Copyright (C) by Daniel Molkentin <danimo@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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NETWORKJOBS_H
|
|
|
|
#define NETWORKJOBS_H
|
|
|
|
|
2014-04-29 17:30:19 +04:00
|
|
|
#include "owncloudlib.h"
|
2013-10-18 14:24:29 +04:00
|
|
|
#include <QObject>
|
2013-10-28 23:01:59 +04:00
|
|
|
#include <QNetworkRequest>
|
2013-10-18 14:24:29 +04:00
|
|
|
#include <QNetworkReply>
|
2014-02-05 17:16:43 +04:00
|
|
|
#include <QPointer>
|
2014-03-26 20:58:32 +04:00
|
|
|
#include <QElapsedTimer>
|
|
|
|
#include <QDateTime>
|
2014-03-25 13:58:57 +04:00
|
|
|
#include <QTimer>
|
2014-12-18 14:09:48 +03:00
|
|
|
#include "accountfwd.h"
|
2013-10-18 14:24:29 +04:00
|
|
|
|
|
|
|
class QUrl;
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC {
|
2013-10-18 14:24:29 +04:00
|
|
|
|
2013-10-28 23:01:59 +04:00
|
|
|
class AbstractSslErrorHandler;
|
2013-10-21 23:42:52 +04:00
|
|
|
|
2014-02-05 17:16:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Internal Helper class
|
|
|
|
*/
|
|
|
|
class NetworkJobTimeoutPauser {
|
|
|
|
public:
|
|
|
|
NetworkJobTimeoutPauser(QNetworkReply *reply);
|
|
|
|
~NetworkJobTimeoutPauser();
|
|
|
|
private:
|
|
|
|
QPointer<QTimer> _timer;
|
|
|
|
};
|
|
|
|
|
2013-10-18 14:24:29 +04:00
|
|
|
/**
|
|
|
|
* @brief The AbstractNetworkJob class
|
|
|
|
*/
|
2014-04-29 17:30:19 +04:00
|
|
|
class OWNCLOUDSYNC_EXPORT AbstractNetworkJob : public QObject {
|
2013-10-18 14:24:29 +04:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-12-18 14:09:48 +03:00
|
|
|
explicit AbstractNetworkJob(AccountPtr account, const QString &path, QObject* parent = 0);
|
2013-10-18 14:24:29 +04:00
|
|
|
virtual ~AbstractNetworkJob();
|
|
|
|
|
2013-11-22 17:01:11 +04:00
|
|
|
virtual void start();
|
2013-11-14 22:20:09 +04:00
|
|
|
|
2014-12-18 14:09:48 +03:00
|
|
|
AccountPtr account() const { return _account; }
|
2014-09-18 16:00:51 +04:00
|
|
|
|
2013-10-23 16:48:44 +04:00
|
|
|
void setPath(const QString &path);
|
|
|
|
QString path() const { return _path; }
|
2013-10-21 23:42:52 +04:00
|
|
|
|
2013-10-18 14:24:29 +04:00
|
|
|
void setReply(QNetworkReply *reply);
|
|
|
|
QNetworkReply* reply() const { return _reply; }
|
|
|
|
|
2013-11-22 17:01:11 +04:00
|
|
|
void setIgnoreCredentialFailure(bool ignore);
|
|
|
|
bool ignoreCredentialFailure() const { return _ignoreCredentialFailure; }
|
|
|
|
|
2014-03-26 20:58:32 +04:00
|
|
|
QString responseTimestamp();
|
|
|
|
quint64 duration();
|
|
|
|
|
2014-04-30 19:54:14 +04:00
|
|
|
public slots:
|
|
|
|
void setTimeout(qint64 msec);
|
|
|
|
void resetTimeout();
|
2013-10-18 14:24:29 +04:00
|
|
|
signals:
|
2013-10-28 23:01:59 +04:00
|
|
|
void networkError(QNetworkReply *reply);
|
2014-09-18 16:00:51 +04:00
|
|
|
void networkActivity();
|
2013-10-18 14:24:29 +04:00
|
|
|
protected:
|
|
|
|
void setupConnections(QNetworkReply *reply);
|
2013-10-23 16:48:44 +04:00
|
|
|
QNetworkReply* davRequest(const QByteArray& verb, const QString &relPath,
|
|
|
|
QNetworkRequest req = QNetworkRequest(),
|
|
|
|
QIODevice *data = 0);
|
2013-10-28 23:01:59 +04:00
|
|
|
QNetworkReply* davRequest(const QByteArray& verb, const QUrl &url,
|
|
|
|
QNetworkRequest req = QNetworkRequest(),
|
|
|
|
QIODevice *data = 0);
|
2013-10-23 16:48:44 +04:00
|
|
|
QNetworkReply* getRequest(const QString &relPath);
|
2013-10-28 23:01:59 +04:00
|
|
|
QNetworkReply* getRequest(const QUrl &url);
|
|
|
|
QNetworkReply* headRequest(const QString &relPath);
|
|
|
|
QNetworkReply* headRequest(const QUrl &url);
|
|
|
|
|
|
|
|
int maxRedirects() const { return 10; }
|
2014-04-14 17:08:43 +04:00
|
|
|
virtual bool finished() = 0;
|
2014-03-26 20:58:32 +04:00
|
|
|
QString _responseTimestamp;
|
|
|
|
QElapsedTimer _durationTimer;
|
|
|
|
quint64 _duration;
|
2014-11-11 15:19:29 +03:00
|
|
|
bool _timedout; // set to true when the timeout slot is recieved
|
2014-12-16 13:27:02 +03:00
|
|
|
bool _followRedirects;
|
2013-10-18 14:24:29 +04:00
|
|
|
|
2014-11-11 18:09:01 +03:00
|
|
|
public:
|
2014-10-20 15:34:09 +04:00
|
|
|
// Timeout workarounds (Because of PHP session locking)
|
|
|
|
static bool preOc7WasDetected;
|
|
|
|
|
2014-11-11 15:19:29 +03:00
|
|
|
|
2013-10-18 14:24:29 +04:00
|
|
|
private slots:
|
2013-11-22 17:01:11 +04:00
|
|
|
void slotFinished();
|
2014-09-12 20:06:29 +04:00
|
|
|
virtual void slotTimeout();
|
2013-10-18 14:24:29 +04:00
|
|
|
|
|
|
|
private:
|
2014-02-05 17:16:43 +04:00
|
|
|
QNetworkReply* addTimer(QNetworkReply *reply);
|
2013-11-22 17:01:11 +04:00
|
|
|
bool _ignoreCredentialFailure;
|
2014-05-28 21:59:35 +04:00
|
|
|
QPointer<QNetworkReply> _reply; // (QPointer because the NetworkManager may be destroyed before the jobs at exit)
|
2014-12-18 14:09:48 +03:00
|
|
|
AccountPtr _account;
|
2013-10-23 16:48:44 +04:00
|
|
|
QString _path;
|
2014-03-25 13:58:57 +04:00
|
|
|
QTimer _timer;
|
2014-12-16 13:27:02 +03:00
|
|
|
int _redirectCount;
|
2013-10-18 14:24:29 +04:00
|
|
|
};
|
|
|
|
|
2013-10-28 23:01:59 +04:00
|
|
|
/**
|
|
|
|
* @brief The EntityExistsJob class
|
|
|
|
*/
|
2014-04-29 17:30:19 +04:00
|
|
|
class OWNCLOUDSYNC_EXPORT EntityExistsJob : public AbstractNetworkJob {
|
2013-10-28 23:01:59 +04:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-12-18 14:09:48 +03:00
|
|
|
explicit EntityExistsJob(AccountPtr account, const QString &path, QObject* parent = 0);
|
2014-07-10 01:22:28 +04:00
|
|
|
void start() Q_DECL_OVERRIDE;
|
2013-11-14 22:20:09 +04:00
|
|
|
|
2013-10-28 23:01:59 +04:00
|
|
|
signals:
|
|
|
|
void exists(QNetworkReply*);
|
|
|
|
|
|
|
|
private slots:
|
2014-07-10 01:22:28 +04:00
|
|
|
virtual bool finished() Q_DECL_OVERRIDE;
|
2013-10-28 23:01:59 +04:00
|
|
|
};
|
|
|
|
|
2013-10-18 14:24:29 +04:00
|
|
|
/**
|
|
|
|
* @brief The LsColJob class
|
|
|
|
*/
|
2014-04-29 17:30:19 +04:00
|
|
|
class OWNCLOUDSYNC_EXPORT LsColJob : public AbstractNetworkJob {
|
2013-10-18 14:24:29 +04:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-12-18 14:09:48 +03:00
|
|
|
explicit LsColJob(AccountPtr account, const QString &path, QObject *parent = 0);
|
2014-07-10 01:22:28 +04:00
|
|
|
void start() Q_DECL_OVERRIDE;
|
2015-01-14 17:07:17 +03:00
|
|
|
QHash<QString, qint64> _sizes;
|
2013-10-18 14:24:29 +04:00
|
|
|
|
|
|
|
signals:
|
2014-12-02 14:25:51 +03:00
|
|
|
void directoryListingSubfolders(const QStringList &items);
|
|
|
|
void directoryListingIterated(const QString name, QMap<QString,QString> properties);
|
|
|
|
void finishedWithError(QNetworkReply *reply);
|
|
|
|
void finishedWithoutError();
|
2013-10-18 14:24:29 +04:00
|
|
|
|
|
|
|
private slots:
|
2014-07-10 01:22:28 +04:00
|
|
|
virtual bool finished() Q_DECL_OVERRIDE;
|
2013-10-18 14:24:29 +04:00
|
|
|
};
|
|
|
|
|
2013-10-23 16:48:44 +04:00
|
|
|
/**
|
2013-11-04 19:36:23 +04:00
|
|
|
* @brief The PropfindJob class
|
2013-10-23 16:48:44 +04:00
|
|
|
*/
|
|
|
|
class PropfindJob : public AbstractNetworkJob {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-12-18 14:09:48 +03:00
|
|
|
explicit PropfindJob(AccountPtr account, const QString &path, QObject *parent = 0);
|
2014-07-10 01:22:28 +04:00
|
|
|
void start() Q_DECL_OVERRIDE;
|
2013-11-14 22:20:09 +04:00
|
|
|
void setProperties(QList<QByteArray> properties);
|
|
|
|
QList<QByteArray> properties() const;
|
2013-10-23 16:48:44 +04:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void result(const QVariantMap &values);
|
2014-11-13 20:57:07 +03:00
|
|
|
void finishedWithError();
|
2013-10-23 16:48:44 +04:00
|
|
|
|
|
|
|
private slots:
|
2014-07-10 01:22:28 +04:00
|
|
|
virtual bool finished() Q_DECL_OVERRIDE;
|
2013-11-14 22:20:09 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
QList<QByteArray> _properties;
|
2013-10-23 16:48:44 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The MkColJob class
|
|
|
|
*/
|
2014-04-29 17:30:19 +04:00
|
|
|
class OWNCLOUDSYNC_EXPORT MkColJob : public AbstractNetworkJob {
|
2013-10-18 14:24:29 +04:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-12-18 14:09:48 +03:00
|
|
|
explicit MkColJob(AccountPtr account, const QString &path, QObject *parent = 0);
|
2014-07-10 01:22:28 +04:00
|
|
|
void start() Q_DECL_OVERRIDE;
|
2013-10-18 14:24:29 +04:00
|
|
|
|
|
|
|
signals:
|
2013-10-28 23:01:59 +04:00
|
|
|
void finished(QNetworkReply::NetworkError);
|
2013-10-18 14:24:29 +04:00
|
|
|
|
|
|
|
private slots:
|
2014-07-10 01:22:28 +04:00
|
|
|
virtual bool finished() Q_DECL_OVERRIDE;
|
2013-10-18 14:24:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2013-11-22 17:01:11 +04:00
|
|
|
* @brief The CheckServerJob class
|
2013-10-18 14:24:29 +04:00
|
|
|
*/
|
2014-04-29 17:30:19 +04:00
|
|
|
class OWNCLOUDSYNC_EXPORT CheckServerJob : public AbstractNetworkJob {
|
2013-10-18 14:24:29 +04:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-12-18 14:09:48 +03:00
|
|
|
explicit CheckServerJob(AccountPtr account, QObject *parent = 0);
|
2014-07-10 01:22:28 +04:00
|
|
|
void start() Q_DECL_OVERRIDE;
|
2013-10-23 16:48:44 +04:00
|
|
|
|
|
|
|
static QString version(const QVariantMap &info);
|
|
|
|
static QString versionString(const QVariantMap &info);
|
|
|
|
static bool installed(const QVariantMap &info);
|
2013-10-18 14:24:29 +04:00
|
|
|
|
|
|
|
signals:
|
2013-10-28 23:01:59 +04:00
|
|
|
void instanceFound(const QUrl&url, const QVariantMap &info);
|
2014-04-14 17:08:43 +04:00
|
|
|
void instanceNotFound(QNetworkReply *reply);
|
2013-11-14 20:02:41 +04:00
|
|
|
void timeout(const QUrl&url);
|
2013-10-18 14:24:29 +04:00
|
|
|
|
|
|
|
private slots:
|
2014-07-10 01:22:28 +04:00
|
|
|
virtual bool finished() Q_DECL_OVERRIDE;
|
|
|
|
virtual void slotTimeout() Q_DECL_OVERRIDE;
|
2013-10-18 14:24:29 +04:00
|
|
|
|
|
|
|
private:
|
2014-04-14 17:08:43 +04:00
|
|
|
bool _subdirFallback;
|
2013-10-18 14:24:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The RequestEtagJob class
|
|
|
|
*/
|
2014-07-11 00:58:58 +04:00
|
|
|
class OWNCLOUDSYNC_EXPORT RequestEtagJob : public AbstractNetworkJob {
|
2013-10-18 14:24:29 +04:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-12-18 14:09:48 +03:00
|
|
|
explicit RequestEtagJob(AccountPtr account, const QString &path, QObject *parent = 0);
|
2014-07-10 01:22:28 +04:00
|
|
|
void start() Q_DECL_OVERRIDE;
|
2013-10-18 14:24:29 +04:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void etagRetreived(const QString &etag);
|
|
|
|
|
|
|
|
private slots:
|
2014-07-10 01:22:28 +04:00
|
|
|
virtual bool finished() Q_DECL_OVERRIDE;
|
2013-10-18 14:24:29 +04:00
|
|
|
};
|
|
|
|
|
2013-11-04 19:36:23 +04:00
|
|
|
/**
|
|
|
|
* @brief The CheckQuota class
|
|
|
|
*/
|
2015-01-12 11:50:37 +03:00
|
|
|
class OWNCLOUDSYNC_EXPORT CheckQuotaJob : public AbstractNetworkJob {
|
2013-11-04 19:36:23 +04:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-12-18 14:09:48 +03:00
|
|
|
explicit CheckQuotaJob(AccountPtr account, const QString &path, QObject *parent = 0);
|
2014-07-10 01:22:28 +04:00
|
|
|
void start() Q_DECL_OVERRIDE;
|
2013-11-04 19:36:23 +04:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void quotaRetrieved(qint64 totalBytes, qint64 availableBytes);
|
|
|
|
|
|
|
|
private slots:
|
2014-04-14 17:08:43 +04:00
|
|
|
/** Return true if you want the job to be deleted after this slot has finished running. */
|
2014-07-10 01:22:28 +04:00
|
|
|
virtual bool finished() Q_DECL_OVERRIDE;
|
2013-11-04 19:36:23 +04:00
|
|
|
};
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
} // namespace OCC
|
2013-10-18 14:24:29 +04:00
|
|
|
|
|
|
|
#endif // NETWORKJOBS_H
|