mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 21:46:03 +03:00
Do not store the redirected URL in the config file.
Because it may be a temporary URL.
Especially anoying in captive portal
Fix issue #368
This is a revert of the revert 0bc9b6f44e
With small changes
This commit is contained in:
parent
4553fa1d09
commit
8e42721959
9 changed files with 78 additions and 84 deletions
|
@ -321,7 +321,7 @@ void Application::slotCheckAuthentication()
|
||||||
this,SLOT(slotAuthCheck(QString,QNetworkReply*)));
|
this,SLOT(slotAuthCheck(QString,QNetworkReply*)));
|
||||||
|
|
||||||
qDebug() << "# checking for authentication settings.";
|
qDebug() << "# checking for authentication settings.";
|
||||||
ownCloudInfo::instance()->getRequest(QLatin1String("/"), true ); // this call needs to be authenticated.
|
ownCloudInfo::instance()->getWebDAVPath(QLatin1String("/") ); // this call needs to be authenticated.
|
||||||
// simply GET the webdav root, will fail if credentials are wrong.
|
// simply GET the webdav root, will fail if credentials are wrong.
|
||||||
// continue in slotAuthCheck here :-)
|
// continue in slotAuthCheck here :-)
|
||||||
}
|
}
|
||||||
|
|
|
@ -163,7 +163,7 @@ void ConnectionValidator::slotCheckAuthentication()
|
||||||
this, SLOT(slotAuthCheck(QString,QNetworkReply*)));
|
this, SLOT(slotAuthCheck(QString,QNetworkReply*)));
|
||||||
|
|
||||||
qDebug() << "# checking for authentication settings.";
|
qDebug() << "# checking for authentication settings.";
|
||||||
ownCloudInfo::instance()->getRequest(QLatin1String("/"), true ); // this call needs to be authenticated.
|
ownCloudInfo::instance()->getWebDAVPath(QLatin1String("/") ); // this call needs to be authenticated.
|
||||||
// simply GET the webdav root, will fail if credentials are wrong.
|
// simply GET the webdav root, will fail if credentials are wrong.
|
||||||
// continue in slotAuthCheck here :-)
|
// continue in slotAuthCheck here :-)
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
#include "mirall/syncresult.h"
|
#include "mirall/syncresult.h"
|
||||||
#include "mirall/inotify.h"
|
#include "mirall/inotify.h"
|
||||||
#include "mirall/theme.h"
|
#include "mirall/theme.h"
|
||||||
|
#include "owncloudinfo.h"
|
||||||
|
|
||||||
#ifdef Q_OS_MAC
|
#ifdef Q_OS_MAC
|
||||||
#include <CoreServices/CoreServices.h>
|
#include <CoreServices/CoreServices.h>
|
||||||
|
@ -249,10 +250,8 @@ Folder* FolderMan::setupFolderFromConfigFile(const QString &file) {
|
||||||
if (!backend.isEmpty()) {
|
if (!backend.isEmpty()) {
|
||||||
|
|
||||||
if( backend == QLatin1String("owncloud") ) {
|
if( backend == QLatin1String("owncloud") ) {
|
||||||
MirallConfigFile cfgFile;
|
|
||||||
|
|
||||||
// assemble the owncloud url to pass to csync, incl. webdav
|
// assemble the owncloud url to pass to csync, incl. webdav
|
||||||
QString oCUrl = cfgFile.ownCloudUrl( QString::null, true );
|
QString oCUrl = ownCloudInfo::instance()->webdavUrl( );
|
||||||
|
|
||||||
// cut off the leading slash, oCUrl always has a trailing.
|
// cut off the leading slash, oCUrl always has a trailing.
|
||||||
if( targetPath.startsWith(QLatin1Char('/')) ) {
|
if( targetPath.startsWith(QLatin1Char('/')) ) {
|
||||||
|
|
|
@ -228,19 +228,6 @@ bool MirallConfigFile::writePassword( const QString& passwd, const QString& conn
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// set the url, called from redirect handling.
|
|
||||||
void MirallConfigFile::setOwnCloudUrl( const QString& connection, const QString & url )
|
|
||||||
{
|
|
||||||
const QString file = configFile();
|
|
||||||
|
|
||||||
QSettings settings( file, QSettings::IniFormat);
|
|
||||||
settings.setIniCodec( "UTF-8" );
|
|
||||||
settings.beginGroup( connection );
|
|
||||||
settings.setValue( QLatin1String("url"), url );
|
|
||||||
|
|
||||||
settings.sync();
|
|
||||||
}
|
|
||||||
|
|
||||||
QByteArray MirallConfigFile::caCerts( )
|
QByteArray MirallConfigFile::caCerts( )
|
||||||
{
|
{
|
||||||
QSettings settings( configFile(), QSettings::IniFormat );
|
QSettings settings( configFile(), QSettings::IniFormat );
|
||||||
|
@ -282,9 +269,8 @@ void MirallConfigFile::removeConnection( const QString& connection )
|
||||||
* returns the configured owncloud url if its already configured, otherwise an empty
|
* returns the configured owncloud url if its already configured, otherwise an empty
|
||||||
* string.
|
* string.
|
||||||
* The returned url always has a trailing hash.
|
* The returned url always has a trailing hash.
|
||||||
* If webdav is true, the webdav-server url is returned.
|
|
||||||
*/
|
*/
|
||||||
QString MirallConfigFile::ownCloudUrl( const QString& connection, bool webdav ) const
|
QString MirallConfigFile::ownCloudUrl( const QString& connection) const
|
||||||
{
|
{
|
||||||
QString con( connection );
|
QString con( connection );
|
||||||
if( connection.isEmpty() ) con = defaultConnection();
|
if( connection.isEmpty() ) con = defaultConnection();
|
||||||
|
@ -296,7 +282,6 @@ QString MirallConfigFile::ownCloudUrl( const QString& connection, bool webdav )
|
||||||
QString url = settings.value( QLatin1String("url") ).toString();
|
QString url = settings.value( QLatin1String("url") ).toString();
|
||||||
if( ! url.isEmpty() ) {
|
if( ! url.isEmpty() ) {
|
||||||
if( ! url.endsWith(QLatin1Char('/'))) url.append(QLatin1String("/"));
|
if( ! url.endsWith(QLatin1Char('/'))) url.append(QLatin1String("/"));
|
||||||
if( webdav ) url.append( QLatin1String("remote.php/webdav/") );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
qDebug() << "Returning configured owncloud url: " << url;
|
qDebug() << "Returning configured owncloud url: " << url;
|
||||||
|
|
|
@ -56,9 +56,7 @@ public:
|
||||||
void removeConnection( const QString& connection = QString() );
|
void removeConnection( const QString& connection = QString() );
|
||||||
|
|
||||||
QString ownCloudUser( const QString& connection = QString() ) const;
|
QString ownCloudUser( const QString& connection = QString() ) const;
|
||||||
QString ownCloudUrl( const QString& connection = QString(), bool webdav = false ) const;
|
QString ownCloudUrl( const QString& connection = QString() ) const;
|
||||||
|
|
||||||
void setOwnCloudUrl(const QString &connection, const QString& );
|
|
||||||
|
|
||||||
// the certs do not depend on a connection.
|
// the certs do not depend on a connection.
|
||||||
QByteArray caCerts();
|
QByteArray caCerts();
|
||||||
|
|
|
@ -124,17 +124,16 @@ void ownCloudFolder::setProxy()
|
||||||
{
|
{
|
||||||
if( _csync_ctx ) {
|
if( _csync_ctx ) {
|
||||||
/* Store proxy */
|
/* Store proxy */
|
||||||
MirallConfigFile cfgFile;
|
QUrl proxyUrl(ownCloudInfo::instance()->webdavUrl());
|
||||||
QUrl proxyUrl(cfgFile.ownCloudUrl());
|
|
||||||
QList<QNetworkProxy> proxies = QNetworkProxyFactory::proxyForQuery(proxyUrl);
|
QList<QNetworkProxy> proxies = QNetworkProxyFactory::proxyForQuery(proxyUrl);
|
||||||
// We set at least one in Application
|
// We set at least one in Application
|
||||||
Q_ASSERT(proxies.count() > 0);
|
Q_ASSERT(proxies.count() > 0);
|
||||||
QNetworkProxy proxy = proxies.first();
|
QNetworkProxy proxy = proxies.first();
|
||||||
if (proxy.type() == QNetworkProxy::NoProxy) {
|
if (proxy.type() == QNetworkProxy::NoProxy) {
|
||||||
qDebug() << "Passing NO proxy to csync for" << cfgFile.ownCloudUrl();
|
qDebug() << "Passing NO proxy to csync for" << proxyUrl;
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "Passing" << proxy.hostName() << "of proxy type " << proxy.type()
|
qDebug() << "Passing" << proxy.hostName() << "of proxy type " << proxy.type()
|
||||||
<< " to csync for" << cfgFile.ownCloudUrl();
|
<< " to csync for" << proxyUrl;
|
||||||
}
|
}
|
||||||
int proxyPort = proxy.port();
|
int proxyPort = proxy.port();
|
||||||
|
|
||||||
|
@ -241,8 +240,7 @@ bool ownCloudFolder::isBusy() const
|
||||||
QString ownCloudFolder::secondPath() const
|
QString ownCloudFolder::secondPath() const
|
||||||
{
|
{
|
||||||
QString re(Folder::secondPath());
|
QString re(Folder::secondPath());
|
||||||
MirallConfigFile cfg;
|
QString ocUrl = ownCloudInfo::instance()->webdavUrl();
|
||||||
QString ocUrl = cfg.ownCloudUrl(QString::null, true);
|
|
||||||
if (ocUrl.endsWith(QLatin1Char('/')))
|
if (ocUrl.endsWith(QLatin1Char('/')))
|
||||||
ocUrl.chop(1);
|
ocUrl.chop(1);
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DEFAULT_CONNECTION QLatin1String("default");
|
#define DEFAULT_CONNECTION QLatin1String("default");
|
||||||
|
static const char WEBDAV_PATH[] = "remote.php/webdav/";
|
||||||
|
|
||||||
namespace Mirall
|
namespace Mirall
|
||||||
{
|
{
|
||||||
|
@ -116,28 +117,32 @@ bool ownCloudInfo::isConfigured()
|
||||||
|
|
||||||
QNetworkReply *ownCloudInfo::checkInstallation()
|
QNetworkReply *ownCloudInfo::checkInstallation()
|
||||||
{
|
{
|
||||||
|
_redirectCount = 0;
|
||||||
|
MirallConfigFile cfgFile( _configHandle );
|
||||||
|
QUrl url ( cfgFile.ownCloudUrl( _connection ) + QLatin1String("status.php") );
|
||||||
/* No authentication required for this. */
|
/* No authentication required for this. */
|
||||||
return getRequest( QLatin1String("status.php"), false );
|
return getRequest(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
QNetworkReply* ownCloudInfo::getWebDAVPath( const QString& path )
|
QNetworkReply* ownCloudInfo::getWebDAVPath( const QString& path )
|
||||||
{
|
{
|
||||||
return getRequest( path, true );
|
_redirectCount = 0;
|
||||||
|
QUrl url ( webdavUrl( _connection ) + path );
|
||||||
|
QNetworkReply *reply = getRequest(url);
|
||||||
|
_directories[reply] = path;
|
||||||
|
return reply;
|
||||||
}
|
}
|
||||||
|
|
||||||
QNetworkReply* ownCloudInfo::getRequest( const QString& path, bool webdav )
|
QNetworkReply* ownCloudInfo::getRequest( const QUrl& url )
|
||||||
{
|
{
|
||||||
qDebug() << "Get Request to " << path;
|
qDebug() << "Get Request to " << url;
|
||||||
|
|
||||||
MirallConfigFile cfgFile( _configHandle );
|
|
||||||
QString url = cfgFile.ownCloudUrl( _connection, webdav ) + path;
|
|
||||||
QNetworkRequest request;
|
QNetworkRequest request;
|
||||||
request.setUrl( QUrl( url ) );
|
request.setUrl( url );
|
||||||
setupHeaders( request, 0 );
|
setupHeaders( request, 0 );
|
||||||
|
|
||||||
QNetworkReply *reply = _manager->get( request );
|
QNetworkReply *reply = _manager->get( request );
|
||||||
connect( reply, SIGNAL(finished()), SLOT(slotReplyFinished()));
|
connect( reply, SIGNAL(finished()), SLOT(slotReplyFinished()));
|
||||||
_directories[reply] = path;
|
|
||||||
|
|
||||||
if( !_configHandle.isEmpty() ) {
|
if( !_configHandle.isEmpty() ) {
|
||||||
qDebug() << "Setting config handle " << _configHandle;
|
qDebug() << "Setting config handle " << _configHandle;
|
||||||
|
@ -155,7 +160,7 @@ QNetworkReply* ownCloudInfo::mkdirRequest( const QString& dir )
|
||||||
qDebug() << "OCInfo Making dir " << dir;
|
qDebug() << "OCInfo Making dir " << dir;
|
||||||
|
|
||||||
MirallConfigFile cfgFile( _configHandle );
|
MirallConfigFile cfgFile( _configHandle );
|
||||||
QUrl url = QUrl( cfgFile.ownCloudUrl( _connection, true ) + dir );
|
QUrl url = QUrl( webdavUrl(_connection) + dir );
|
||||||
QHttp::ConnectionMode conMode = QHttp::ConnectionModeHttp;
|
QHttp::ConnectionMode conMode = QHttp::ConnectionModeHttp;
|
||||||
if (url.scheme() == "https")
|
if (url.scheme() == "https")
|
||||||
conMode = QHttp::ConnectionModeHttps;
|
conMode = QHttp::ConnectionModeHttps;
|
||||||
|
@ -226,9 +231,8 @@ QNetworkReply* ownCloudInfo::mkdirRequest( const QString& dir )
|
||||||
{
|
{
|
||||||
qDebug() << "OCInfo Making dir " << dir;
|
qDebug() << "OCInfo Making dir " << dir;
|
||||||
_authAttempts = 0;
|
_authAttempts = 0;
|
||||||
MirallConfigFile cfgFile( _configHandle );
|
|
||||||
QNetworkRequest req;
|
QNetworkRequest req;
|
||||||
req.setUrl( QUrl( cfgFile.ownCloudUrl( _connection, true ) + dir ) );
|
req.setUrl( QUrl( webdavUrl(_connection) + dir ) );
|
||||||
QNetworkReply *reply = davRequest(QLatin1String("MKCOL"), req, 0);
|
QNetworkReply *reply = davRequest(QLatin1String("MKCOL"), req, 0);
|
||||||
|
|
||||||
// remember the confighandle used for this request
|
// remember the confighandle used for this request
|
||||||
|
@ -320,20 +324,6 @@ QList<QSslCertificate> ownCloudInfo::certificateChain() const
|
||||||
return _certificateChain;
|
return _certificateChain;
|
||||||
}
|
}
|
||||||
|
|
||||||
QUrl ownCloudInfo::redirectUrl(const QUrl& possibleRedirectUrl,
|
|
||||||
const QUrl& oldRedirectUrl) const {
|
|
||||||
QUrl redirectUrl;
|
|
||||||
/*
|
|
||||||
* Check if the URL is empty and
|
|
||||||
* that we aren't being fooled into a infinite redirect loop.
|
|
||||||
*/
|
|
||||||
if(!possibleRedirectUrl.isEmpty() &&
|
|
||||||
possibleRedirectUrl != oldRedirectUrl) {
|
|
||||||
redirectUrl = possibleRedirectUrl;
|
|
||||||
}
|
|
||||||
return redirectUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// There have been problems with the finish-signal coming from the networkmanager.
|
// There have been problems with the finish-signal coming from the networkmanager.
|
||||||
// To avoid that, the reply-signals were connected and the data is taken from the
|
// To avoid that, the reply-signals were connected and the data is taken from the
|
||||||
|
@ -354,12 +344,17 @@ void ownCloudInfo::slotReplyFinished()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Detect redirect url
|
// Detect redirect url
|
||||||
QVariant possibleRedirUrl = reply->attribute(QNetworkRequest::RedirectionTargetAttribute);
|
QUrl possibleRedirUrl = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl();
|
||||||
/* We'll deduct if the redirection is valid in the redirectUrl function */
|
/* We'll deduct if the redirection is valid in the redirectUrl function */
|
||||||
_urlRedirectedTo = redirectUrl( possibleRedirUrl.toUrl(),
|
|
||||||
_urlRedirectedTo );
|
|
||||||
|
|
||||||
if(!_urlRedirectedTo.isEmpty()) {
|
|
||||||
|
if (!possibleRedirUrl.isEmpty() && _redirectCount++ > 10) {
|
||||||
|
// Are we in a redirect loop
|
||||||
|
qDebug() << "Redirect loop while redirecting to" << possibleRedirUrl;
|
||||||
|
possibleRedirUrl.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!possibleRedirUrl.isEmpty()) {
|
||||||
QString configHandle;
|
QString configHandle;
|
||||||
|
|
||||||
qDebug() << "Redirected to " << possibleRedirUrl;
|
qDebug() << "Redirected to " << possibleRedirUrl;
|
||||||
|
@ -372,24 +367,28 @@ void ownCloudInfo::slotReplyFinished()
|
||||||
}
|
}
|
||||||
|
|
||||||
QString path = _directories[reply];
|
QString path = _directories[reply];
|
||||||
|
if (path.isEmpty()) {
|
||||||
|
path = QLatin1String("status.php");
|
||||||
|
} else {
|
||||||
|
path.prepend( QLatin1String(WEBDAV_PATH) );
|
||||||
|
}
|
||||||
qDebug() << "This path was redirected: " << path;
|
qDebug() << "This path was redirected: " << path;
|
||||||
|
|
||||||
MirallConfigFile cfgFile( configHandle );
|
QString newUrl = possibleRedirUrl.toString();
|
||||||
QString newUrl = _urlRedirectedTo.toString();
|
if( !path.isEmpty() && newUrl.endsWith( path )) {
|
||||||
if( newUrl.endsWith( path )) {
|
|
||||||
// cut off the trailing path
|
// cut off the trailing path
|
||||||
newUrl.chop( path.length() );
|
newUrl.chop( path.length() );
|
||||||
cfgFile.setOwnCloudUrl( _connection, newUrl );
|
_urlRedirectedTo = newUrl;
|
||||||
|
qDebug() << "Updated url to" << newUrl;
|
||||||
qDebug() << "Update the config file url to " << newUrl;
|
getRequest( possibleRedirUrl );
|
||||||
getRequest( path, false ); // FIXME: Redirect for webdav!
|
|
||||||
reply->deleteLater();
|
|
||||||
return;
|
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "WRN: Path is not part of the redirect URL. NO redirect.";
|
qDebug() << "WRN: Path is not part of the redirect URL. NO redirect.";
|
||||||
}
|
}
|
||||||
|
reply->deleteLater();
|
||||||
|
_directories.remove(reply);
|
||||||
|
_configHandleMap.remove(reply);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
_urlRedirectedTo.clear();
|
|
||||||
|
|
||||||
// TODO: check if this is always the correct encoding
|
// TODO: check if this is always the correct encoding
|
||||||
const QString version = QString::fromUtf8( reply->readAll() );
|
const QString version = QString::fromUtf8( reply->readAll() );
|
||||||
|
@ -455,15 +454,13 @@ void ownCloudInfo::slotReplyFinished()
|
||||||
QString dir(QLatin1String("unknown"));
|
QString dir(QLatin1String("unknown"));
|
||||||
if( _directories.contains(reply) ) {
|
if( _directories.contains(reply) ) {
|
||||||
dir = _directories[reply];
|
dir = _directories[reply];
|
||||||
_directories.remove(reply);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
emit ownCloudDirExists( dir, reply );
|
emit ownCloudDirExists( dir, reply );
|
||||||
}
|
}
|
||||||
if( _configHandleMap.contains(reply)) {
|
|
||||||
_configHandleMap.remove(reply);
|
|
||||||
}
|
|
||||||
reply->deleteLater();
|
reply->deleteLater();
|
||||||
|
_directories.remove(reply);
|
||||||
|
_configHandleMap.remove(reply);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ownCloudInfo::resetSSLUntrust()
|
void ownCloudInfo::resetSSLUntrust()
|
||||||
|
@ -539,9 +536,7 @@ void ownCloudInfo::setCredentials( const QString& user, const QString& passwd,
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
void ownCloudInfo::setupHeaders( QNetworkRequest & req, quint64 size )
|
void ownCloudInfo::setupHeaders( QNetworkRequest & req, quint64 size )
|
||||||
{
|
{
|
||||||
MirallConfigFile cfgFile(_configHandle );
|
QUrl url( req.url() );
|
||||||
|
|
||||||
QUrl url( cfgFile.ownCloudUrl( QString::null, false ) );
|
|
||||||
qDebug() << "Setting up host header: " << url.host();
|
qDebug() << "Setting up host header: " << url.host();
|
||||||
req.setRawHeader( QByteArray("Host"), url.host().toUtf8() );
|
req.setRawHeader( QByteArray("Host"), url.host().toUtf8() );
|
||||||
req.setRawHeader( QByteArray("User-Agent"), Utility::userAgentString());
|
req.setRawHeader( QByteArray("User-Agent"), Utility::userAgentString());
|
||||||
|
@ -575,5 +570,19 @@ QNetworkReply* ownCloudInfo::davRequest(const QString& reqVerb, QNetworkRequest
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
QString ownCloudInfo::webdavUrl(const QString &connection)
|
||||||
|
{
|
||||||
|
QString url;
|
||||||
|
|
||||||
|
if (!_urlRedirectedTo.isEmpty()) {
|
||||||
|
url = _urlRedirectedTo.toString();
|
||||||
|
} else {
|
||||||
|
MirallConfigFile cfgFile(_configHandle );
|
||||||
|
url = cfgFile.ownCloudUrl( connection );
|
||||||
|
}
|
||||||
|
url.append( QLatin1String( WEBDAV_PATH ) );
|
||||||
|
return url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -47,12 +47,6 @@ public:
|
||||||
*/
|
*/
|
||||||
QNetworkReply* checkInstallation();
|
QNetworkReply* checkInstallation();
|
||||||
|
|
||||||
/**
|
|
||||||
* a general GET request to the ownCloud. If the second bool parameter is
|
|
||||||
* true, the WebDAV server is queried.
|
|
||||||
*/
|
|
||||||
QNetworkReply* getRequest( const QString&, bool );
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* convenience: GET request to the WebDAV server.
|
* convenience: GET request to the WebDAV server.
|
||||||
*/
|
*/
|
||||||
|
@ -110,6 +104,12 @@ public:
|
||||||
void setCredentials( const QString&, const QString&,
|
void setCredentials( const QString&, const QString&,
|
||||||
const QString& configHandle = QString::null );
|
const QString& configHandle = QString::null );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the owncloud webdav url.
|
||||||
|
* It may be different from the one in the config if there was a HTTP redirection
|
||||||
|
*/
|
||||||
|
QString webdavUrl(const QString& connection = QString());
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
// result signal with url- and version string.
|
// result signal with url- and version string.
|
||||||
void ownCloudInfoFound( const QString&, const QString&, const QString&, const QString& );
|
void ownCloudInfoFound( const QString&, const QString&, const QString&, const QString& );
|
||||||
|
@ -138,7 +138,11 @@ protected slots:
|
||||||
private:
|
private:
|
||||||
explicit ownCloudInfo();
|
explicit ownCloudInfo();
|
||||||
|
|
||||||
QUrl redirectUrl(const QUrl&, const QUrl& ) const;
|
/**
|
||||||
|
* a general GET request to the ownCloud WebDAV.
|
||||||
|
*/
|
||||||
|
QNetworkReply* getRequest( const QUrl &url);
|
||||||
|
|
||||||
|
|
||||||
~ownCloudInfo();
|
~ownCloudInfo();
|
||||||
|
|
||||||
|
@ -161,6 +165,7 @@ private:
|
||||||
int _authAttempts;
|
int _authAttempts;
|
||||||
QMap<QString, oCICredentials> _credentials;
|
QMap<QString, oCICredentials> _credentials;
|
||||||
QMutex _certChainMutex;
|
QMutex _certChainMutex;
|
||||||
|
int _redirectCount;
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -329,7 +329,7 @@ void OwncloudSetupWizard::checkRemoteFolder()
|
||||||
|
|
||||||
qDebug() << "# checking for authentication settings.";
|
qDebug() << "# checking for authentication settings.";
|
||||||
ownCloudInfo::instance()->setCustomConfigHandle(_configHandle);
|
ownCloudInfo::instance()->setCustomConfigHandle(_configHandle);
|
||||||
_checkRemoteFolderRequest = ownCloudInfo::instance()->getRequest(_remoteFolder, true ); // this call needs to be authenticated.
|
_checkRemoteFolderRequest = ownCloudInfo::instance()->getWebDAVPath(_remoteFolder ); // this call needs to be authenticated.
|
||||||
// continue in slotAuthCheckReply
|
// continue in slotAuthCheckReply
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue