2013-08-01 18:22:54 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Krzesimir Nowak <krzesimir@endocode.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 MIRALL_ACCESS_MANAGER_H
|
|
|
|
#define MIRALL_ACCESS_MANAGER_H
|
|
|
|
|
2014-04-29 17:30:19 +04:00
|
|
|
#include "owncloudlib.h"
|
2013-08-01 18:22:54 +04:00
|
|
|
#include <QNetworkAccessManager>
|
|
|
|
|
|
|
|
namespace Mirall
|
|
|
|
{
|
|
|
|
|
2014-11-10 00:30:29 +03:00
|
|
|
class OWNCLOUDSYNC_EXPORT AccessManager : public QNetworkAccessManager
|
2013-08-01 18:22:54 +04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2014-11-10 00:30:29 +03:00
|
|
|
AccessManager(QObject* parent = 0);
|
2013-08-01 18:22:54 +04:00
|
|
|
|
|
|
|
protected:
|
2014-07-10 01:22:28 +04:00
|
|
|
QNetworkReply* createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest& request, QIODevice* outgoingData = 0) Q_DECL_OVERRIDE;
|
2014-03-06 20:45:02 +04:00
|
|
|
protected slots:
|
|
|
|
void slotProxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator);
|
2014-08-12 21:24:41 +04:00
|
|
|
void slotAuthenticationRequired(QNetworkReply *reply, QAuthenticator *authenticator);
|
|
|
|
|
2013-08-01 18:22:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // ns Mirall
|
|
|
|
|
|
|
|
#endif
|