/* * Copyright (C) by Klaas Freitag * * 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. */ #include "mirall/owncloudinfo.h" #include "mirall/mirallconfigfile.h" #include "mirall/version.h" #include "mirall/sslerrordialog.h" #include #include #include #if QT46_IMPL #include #endif namespace Mirall { QNetworkAccessManager* ownCloudInfo::_manager = 0; SslErrorDialog *ownCloudInfo::_sslErrorDialog = 0; bool ownCloudInfo::_certsUntrusted = false; int ownCloudInfo::_authAttempts = 0; QHash ownCloudInfo::_configHandleMap; ownCloudInfo::ownCloudInfo( const QString& connectionName, QObject *parent ) : QObject(parent) { if( connectionName.isEmpty() ) _connection = QString::fromLocal8Bit( "ownCloud"); else _connection = connectionName; if( ! _manager ) { qDebug() << "Creating static NetworkAccessManager"; _manager = new QNetworkAccessManager; } connect( _manager, SIGNAL( sslErrors(QNetworkReply*, QList)), this, SLOT(slotSSLFailed(QNetworkReply*, QList)) ); connect( _manager, SIGNAL(authenticationRequired(QNetworkReply*, QAuthenticator*)), SLOT(slotAuthentication(QNetworkReply*,QAuthenticator*))); } ownCloudInfo::~ownCloudInfo() { delete _manager; delete _sslErrorDialog; } void ownCloudInfo::setCustomConfigHandle( const QString& handle ) { _configHandle = handle; _authAttempts = 0; // allow a couple of tries again. resetSSLUntrust(); } bool ownCloudInfo::isConfigured() { MirallConfigFile cfgFile( _configHandle ); return cfgFile.connectionExists( _connection ); } void ownCloudInfo::checkInstallation() { getRequest( "status.php", false ); } void ownCloudInfo::getWebDAVPath( const QString& path ) { getRequest( path, true ); } void ownCloudInfo::getRequest( const QString& path, bool webdav ) { qDebug() << "Get Request to " << path; MirallConfigFile cfgFile( _configHandle ); QString url = cfgFile.ownCloudUrl( _connection, webdav ) + path; QNetworkRequest request; request.setUrl( QUrl( url ) ); setupHeaders( request, 0 ); QNetworkReply *reply = _manager->get( request ); connect( reply, SIGNAL(finished()), SLOT(slotReplyFinished())); _directories[reply] = path; if( !_configHandle.isEmpty() ) { qDebug() << "Setting config handle " << _configHandle; _configHandleMap[reply] = _configHandle; } connect( reply, SIGNAL( error(QNetworkReply::NetworkError )), this, SLOT(slotError( QNetworkReply::NetworkError ))); } #if QT46_IMPL void ownCloudInfo::mkdirRequest( const QString& dir ) { qDebug() << "OCInfo Making dir " << dir; MirallConfigFile cfgFile( _configHandle ); QUrl url = QUrl( cfgFile.ownCloudUrl( _connection, true ) + dir ); QHttp::ConnectionMode conMode = QHttp::ConnectionModeHttp; if (url.scheme() == "https") conMode = QHttp::ConnectionModeHttps; QHttp* qhttp = new QHttp(url.host(), conMode, 0, this); qhttp->setUser( cfgFile.ownCloudUser( _connection ), cfgFile.ownCloudPasswd( _connection )); connect(qhttp, SIGNAL(requestStarted(int)), this,SLOT(qhttpRequestStarted(int))); connect(qhttp, SIGNAL(requestFinished(int, bool)), this,SLOT(qhttpRequestFinished(int,bool))); connect(qhttp, SIGNAL(responseHeaderReceived(QHttpResponseHeader)), this, SLOT(qhttpResponseHeaderReceived(QHttpResponseHeader))); //connect(qhttp, SIGNAL(authenticationRequired(QString,quint16,QAuthenticator*)), this, SLOT(qhttpAuthenticationRequired(QString,quint16,QAuthenticator*))); QHttpRequestHeader header("MKCOL", url.path(), 1,1); /* header */ header.setValue("Host", url.host() ); header.setValue("User-Agent", QString("mirall-%1").arg(MIRALL_STRINGIFY(MIRALL_VERSION)).toAscii() ); header.setValue("Accept-Charset", "ISO-8859-1,utf-8;q=0.7,*;q=0.7"); header.setValue("Accept-Language", "it,de-de;q=0.8,it-it;q=0.6,en-us;q=0.4,en;q=0.2"); header.setValue("Connection", "keep-alive"); header.setContentType("application/x-www-form-urlencoded"); //important header.setContentLength(0); header.setValue("Authorization", cfgFile.basicAuthHeader()); int david = qhttp->request(header,0,0); //////////////// connect(davinfo, SIGNAL(dataSendProgress(int,int)), this, SLOT(SendStatus(int, int))); /////////////////connect(davinfo, SIGNAL(done(bool)), this,SLOT(DavWake(bool))); //connect(_http, SIGNAL(requestFinished(int, bool)), this,SLOT(qhttpRequestFinished(int,bool))); ///////////connect(davinfo, SIGNAL(responseHeaderReceived(constQHttpResponseHeader &)), this, SLOT(RegisterBackHeader(constQHttpResponseHeader &))); } void ownCloudInfo::qhttpResponseHeaderReceived(const QHttpResponseHeader& header) { qDebug() << "Resp:" << header.toString(); if (header.statusCode() == 201) emit webdavColCreated( QNetworkReply::NoError ); else qDebug() << "http request failed" << header.toString(); } void ownCloudInfo::qhttpRequestStarted(int id) { qDebug() << "QHttp based request started " << id; } void ownCloudInfo::qhttpRequestFinished(int id, bool success ) { qDebug() << "HIT!"; QHttp* qhttp = qobject_cast(sender()); if( success ) { qDebug() << "QHttp based request successful"; } else { qDebug() << "QHttp based request failed: " << qhttp->errorString(); } } #else void ownCloudInfo::mkdirRequest( const QString& dir ) { qDebug() << "OCInfo Making dir " << dir; _authAttempts = 0; MirallConfigFile cfgFile( _configHandle ); QNetworkRequest req; req.setUrl( QUrl( cfgFile.ownCloudUrl( _connection, true ) + dir ) ); QNetworkReply *reply = davRequest("MKCOL", req, 0); // remember the confighandle used for this request if( ! _configHandle.isEmpty() ) qDebug() << "Setting config handle " << _configHandle; _configHandleMap[reply] = _configHandle; if( reply->error() != QNetworkReply::NoError ) { qDebug() << "mkdir request network error: " << reply->errorString(); } connect( reply, SIGNAL(finished()), SLOT(slotMkdirFinished()) ); connect( reply, SIGNAL( error(QNetworkReply::NetworkError )), this, SLOT(slotError(QNetworkReply::NetworkError ))); } void ownCloudInfo::slotMkdirFinished() { QNetworkReply *reply = qobject_cast(sender()); if( ! reply ) { qDebug() << "ownCloudInfo: Reply empty!"; return; } emit webdavColCreated( reply->error() ); qDebug() << "mkdir slot hit with status: " << reply->error(); if( _configHandleMap.contains( reply ) ) { _configHandleMap.remove( reply ); } reply->deleteLater(); } #endif void ownCloudInfo::slotAuthentication( QNetworkReply *reply, QAuthenticator *auth ) { if( !(auth && reply) ) return; QString configHandle; // an empty config handle is ok for the default config. if( _configHandleMap.contains(reply) ) { configHandle = _configHandleMap[reply]; qDebug() << "Auth: Have a custom config handle: " << configHandle; } qDebug() << "Auth request to me and I am " << this; _authAttempts++; MirallConfigFile cfgFile( configHandle ); qDebug() << "Authenticating request for " << reply->url(); if( reply->url().toString().startsWith( cfgFile.ownCloudUrl( _connection, true )) ) { auth->setUser( cfgFile.ownCloudUser( _connection ) ); auth->setPassword( cfgFile.ownCloudPasswd( _connection )); } else { qDebug() << "WRN: attempt to authenticate to different url - attempt " <<_authAttempts; } if( _authAttempts > 10 ) { qDebug() << "Too many attempts to authenticate. Stop request."; reply->close(); } } void ownCloudInfo::slotSSLFailed( QNetworkReply *reply, QList errors ) { qDebug() << "SSL-Warnings happened for url " << reply->url().toString(); QString configHandle; // an empty config handle is ok for the default config. if( _configHandleMap.contains(reply) ) { configHandle = _configHandleMap[reply]; qDebug() << "SSL: Have a custom config handle: " << configHandle; } if( _certsUntrusted ) { // User decided once to untrust. Honor this decision. return; } if( _sslErrorDialog == 0 ) { _sslErrorDialog = new SslErrorDialog(); } // make the ssl dialog aware of the custom config. It loads known certs. _sslErrorDialog->setCustomConfigHandle( configHandle ); if( _sslErrorDialog->setErrorList( errors ) ) { // all ssl certs are known and accepted. We can ignore the problems right away. qDebug() << "Certs are already known and trusted, Warnings are not valid."; reply->ignoreSslErrors(); } else { if( _sslErrorDialog->exec() == QDialog::Accepted ) { if( _sslErrorDialog->trustConnection() ) { reply->ignoreSslErrors(); } else { // User does not want to trust. _certsUntrusted = true; } } } } // // 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 // sender() method. // void ownCloudInfo::slotReplyFinished() { QNetworkReply *reply = qobject_cast(sender()); if( ! reply ) { qDebug() << "ownCloudInfo: Reply empty!"; return; } const QString version( reply->readAll() ); const QString url = reply->url().toString(); QString plainUrl(url); plainUrl.remove( QLatin1String("/status.php")); QString info( version ); if( url.endsWith( QLatin1String("status.php")) ) { // it was a call to status.php if( reply->error() == QNetworkReply::NoError && info.isEmpty() ) { // This seems to be a bit strange behaviour of QNetworkAccessManager. // It calls the finised slot multiple times but only the first read wins. // That happend when the code connected the finished signal of the manager. // It did not happen when the code connected to the reply finish signal. qDebug() << "WRN: NetworkReply with not content but also no error! " << reply; reply->deleteLater(); return; } qDebug() << "status.php returns: " << info << " " << reply->error() << " Reply: " << reply; if( info.contains("installed") && info.contains("version") && info.contains("versionstring") ) { info.remove(0,1); // remove first char which is a "{" info.remove(-1,1); // remove the last char which is a "}" QStringList li = info.split( QChar(',') ); QString versionStr; QString version; QString edition; foreach ( const QString& infoString, li ) { QStringList touple = infoString.split( QChar(':')); QString key = touple[0]; key.remove(QChar('"')); QString val = touple[1]; val.remove(QChar('"')); if( key == QLatin1String("versionstring") ) { // get the versionstring out. versionStr = val; } else if( key == QLatin1String( "version") ) { // get version out version = val; } else if( key == QLatin1String( "edition") ) { // get version out edition = val; } else { qDebug() << "Unknown info from ownCloud status.php: "<< key << "=" << val; } } emit ownCloudInfoFound( plainUrl, versionStr, version, edition ); } else { qDebug() << "No proper answer on " << url; emit noOwncloudFound( reply ); } } else { // it was a general GET request. QString dir("unknown"); if( _directories.contains(reply) ) { dir = _directories[reply]; _directories.remove(reply); } emit ownCloudDirExists( dir, reply ); } if( _configHandleMap.contains(reply)) { _configHandleMap.remove(reply); } reply->deleteLater(); } void ownCloudInfo::resetSSLUntrust() { _certsUntrusted = false; } void ownCloudInfo::slotError( QNetworkReply::NetworkError err) { qDebug() << "ownCloudInfo Network Error: " << err; } // ============================================================================ void ownCloudInfo::setupHeaders( QNetworkRequest & req, quint64 size ) { MirallConfigFile cfgFile(_configHandle ); QUrl url( cfgFile.ownCloudUrl( QString(), false ) ); qDebug() << "Setting up host header: " << url.host(); req.setRawHeader( QByteArray("Host"), url.host().toUtf8() ); req.setRawHeader( QByteArray("User-Agent"), QString("mirall-%1").arg(MIRALL_STRINGIFY(MIRALL_VERSION)).toAscii()); req.setRawHeader( QByteArray("Authorization"), cfgFile.basicAuthHeader() ); if (size) { req.setHeader( QNetworkRequest::ContentLengthHeader, QVariant(size)); req.setHeader( QNetworkRequest::ContentTypeHeader, QVariant("text/xml; charset=utf-8")); } } #if QT46_IMPL #else QNetworkReply* ownCloudInfo::davRequest(const QString& reqVerb, QNetworkRequest& req, QByteArray *data) { setupHeaders(req, quint64(data ? data->size() : 0)); if( data ) { QBuffer iobuf( data ); return _manager->sendCustomRequest(req, reqVerb.toUtf8(), &iobuf ); } else { return _manager->sendCustomRequest(req, reqVerb.toUtf8(), 0 ); } } #endif }