nextcloud-desktop/src/mirall/account.h

153 lines
4.5 KiB
C
Raw Normal View History

2013-10-21 23:42:52 +04:00
/*
* 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; version 2 of the License.
*
* 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 SERVERCONNECTION_H
#define SERVERCONNECTION_H
#include <QByteArray>
#include <QUrl>
#include <QNetworkCookie>
2013-10-23 16:48:44 +04:00
#include <QNetworkRequest>
#include <QSslCertificate>
2013-10-24 02:29:08 +04:00
#include <QSslError>
2013-10-21 23:42:52 +04:00
class QSettings;
class QNetworkReply;
class QUrl;
2013-10-23 16:48:44 +04:00
class QNetworkAccessManager;
2013-10-21 23:42:52 +04:00
namespace Mirall {
class AbstractCredentials;
class Account;
2013-11-05 21:15:47 +04:00
class AccountManager : public QObject {
Q_OBJECT
2013-10-21 23:42:52 +04:00
public:
static AccountManager *instance();
2013-11-05 21:15:47 +04:00
~AccountManager() {}
2013-10-21 23:42:52 +04:00
void setAccount(Account *account);
2013-10-21 23:42:52 +04:00
Account *account() { return _account; }
2013-11-05 21:15:47 +04:00
Q_SIGNALS:
void accountChanged(Account *newAccount, Account *oldAccount);
void accountAboutToChange(Account *newAccount, Account *oldAccount);
2013-10-21 23:42:52 +04:00
private:
AccountManager() : _account(0) {}
2013-10-21 23:42:52 +04:00
Account *_account;
static AccountManager *_instance;
};
2013-10-24 02:29:08 +04:00
/* Reimplement this to handle SSL errors */
class AbstractSslErrorHandler {
public:
virtual ~AbstractSslErrorHandler() {}
2013-10-24 02:29:08 +04:00
virtual bool handleErrors(QList<QSslError>, QList<QSslCertificate>*, Account*) = 0;
};
2013-10-21 23:42:52 +04:00
/**
* @brief This class represents an account on an ownCloud Server
*/
class Account : public QObject {
2013-10-24 02:29:08 +04:00
Q_OBJECT
2013-10-21 23:42:52 +04:00
public:
static QString davPath() { return "remote.php/webdav/"; }
Account(AbstractSslErrorHandler *sslErrorHandler = 0, QObject *parent = 0);
~Account();
2013-10-21 23:42:52 +04:00
/**
* Saves the account to a given settings file
*/
void save();
2013-10-21 23:42:52 +04:00
/**
* Creates an account object from from a given settings file.
*/
static Account* restore();
/**
* @brief Creates a minimal account object
*
* This will set up a ssl error handler
*
* @return A new Account object
*/
static Account* create(const QUrl &url);
2013-10-21 23:42:52 +04:00
/**
* @brief Checks the Account instance is different from \param other
*
* @returns true, if credentials or url have changed, false otherwise
*/
bool changed(Account *other, bool ignoreUrlProtocol) const;
2013-10-21 23:42:52 +04:00
/** Holds the accounts credentials */
AbstractCredentials* credentials() const;
void setCredentials(AbstractCredentials *cred);
/** Server url of the account */
void setUrl(const QUrl &url);
2013-10-23 16:48:44 +04:00
QUrl url() const { return _url; }
2013-10-21 23:42:52 +04:00
/** Returns webdav entry URL, based on url() */
QUrl davUrl() const;
QList<QNetworkCookie> lastAuthCookies() const;
QNetworkReply* headRequest(const QString &relPath);
QNetworkReply* headRequest(const QUrl &url);
2013-10-21 23:42:52 +04:00
QNetworkReply* getRequest(const QString &relPath);
QNetworkReply* getRequest(const QUrl &url);
2013-10-23 16:48:44 +04:00
QNetworkReply* davRequest(const QByteArray &verb, const QString &relPath, QNetworkRequest req, QIODevice *data = 0);
QNetworkReply* davRequest(const QByteArray &verb, const QUrl &url, QNetworkRequest req, QIODevice *data = 0);
2013-10-21 23:42:52 +04:00
/** The certificates of the account */
2013-10-24 02:29:08 +04:00
QList<QSslCertificate> certificateChain() const { return _certificateChain; }
void setCertificateChain(const QList<QSslCertificate> &certs);
2013-10-23 16:48:44 +04:00
/** The certificates of the account */
2013-10-24 02:29:08 +04:00
QList<QSslCertificate> approvedCerts() const { return _approvedCerts; }
void setApprovedCerts(const QList<QSslCertificate> certs);
2013-10-21 23:42:52 +04:00
// pluggable handler
2013-10-24 02:29:08 +04:00
void setSslErrorHandler(AbstractSslErrorHandler *handler);
2013-10-23 16:48:44 +04:00
// static helper function
2013-10-23 16:48:44 +04:00
static QUrl concatUrlPath(const QUrl &url, const QString &concatPath);
static QSettings* settingsWithGroup(const QString &group);
// to be called by credentials only
QVariant credentialSetting(const QString& key) const;
void setCredentialSetting(const QString& key, const QVariant &value);
2013-11-05 21:15:47 +04:00
protected Q_SLOTS:
2013-10-24 02:29:08 +04:00
void slotHandleErrors(QNetworkReply*,QList<QSslError>);
2013-10-21 23:42:52 +04:00
private:
QMap<QString, QVariant> _settingsMap;
2013-10-23 16:48:44 +04:00
QNetworkAccessManager *_am;
2013-10-24 02:29:08 +04:00
QList<QSslCertificate> _caCerts;
2013-10-21 23:42:52 +04:00
QUrl _url;
AbstractCredentials* _credentials;
2013-10-24 02:29:08 +04:00
QList<QSslCertificate> _approvedCerts;
2013-10-23 16:48:44 +04:00
QList<QSslCertificate> _certificateChain;
2013-10-24 02:29:08 +04:00
bool _treatSslErrorsAsFailure;
QScopedPointer<AbstractSslErrorHandler> _sslErrorHandler;
2013-10-21 23:42:52 +04:00
};
}
#endif //SERVERCONNECTION_H