2013-05-04 18:01:45 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Klaas Freitag <freitag@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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QtCore>
|
2013-10-21 23:42:52 +04:00
|
|
|
#include <QNetworkReply>
|
2015-03-24 23:30:42 +03:00
|
|
|
#include <QNetworkProxyFactory>
|
2013-05-04 18:01:45 +04:00
|
|
|
|
2014-07-11 02:31:24 +04:00
|
|
|
#include "connectionvalidator.h"
|
|
|
|
#include "theme.h"
|
|
|
|
#include "account.h"
|
|
|
|
#include "networkjobs.h"
|
2015-03-24 23:30:42 +03:00
|
|
|
#include "clientproxy.h"
|
2014-03-03 20:55:15 +04:00
|
|
|
#include <creds/abstractcredentials.h>
|
2013-05-04 18:01:45 +04:00
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC {
|
2013-05-04 18:01:45 +04:00
|
|
|
|
2014-12-18 14:09:48 +03:00
|
|
|
ConnectionValidator::ConnectionValidator(AccountPtr account, QObject *parent)
|
2013-07-30 16:37:46 +04:00
|
|
|
: QObject(parent),
|
2015-02-05 17:18:38 +03:00
|
|
|
_account(account),
|
|
|
|
_isCheckingServerAndAuth(false)
|
2013-05-04 18:01:45 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-12-11 15:55:59 +03:00
|
|
|
QString ConnectionValidator::statusString( Status stat )
|
2013-05-04 18:01:45 +04:00
|
|
|
{
|
2013-07-05 15:14:48 +04:00
|
|
|
switch( stat ) {
|
|
|
|
case Undefined:
|
2014-12-11 17:43:48 +03:00
|
|
|
return QLatin1String("Undefined");
|
2013-07-05 15:14:48 +04:00
|
|
|
case Connected:
|
2014-12-11 17:43:48 +03:00
|
|
|
return QLatin1String("Connected");
|
2013-07-05 15:14:48 +04:00
|
|
|
case NotConfigured:
|
2014-12-11 17:43:48 +03:00
|
|
|
return QLatin1String("NotConfigured");
|
2013-07-05 15:14:48 +04:00
|
|
|
case ServerVersionMismatch:
|
2014-12-11 17:43:48 +03:00
|
|
|
return QLatin1String("Server Version Mismatch");
|
2013-07-05 15:14:48 +04:00
|
|
|
case CredentialsWrong:
|
2014-12-11 17:43:48 +03:00
|
|
|
return QLatin1String("Credentials Wrong");
|
2013-07-05 15:14:48 +04:00
|
|
|
case StatusNotFound:
|
2014-12-11 17:43:48 +03:00
|
|
|
return QLatin1String("Status not found");
|
2015-01-21 17:30:25 +03:00
|
|
|
case UserCanceledCredentials:
|
|
|
|
return QLatin1String("User canceled credentials");
|
2015-02-25 11:49:39 +03:00
|
|
|
case ServerMaintenance:
|
|
|
|
return QLatin1String("Server in maintenance mode");
|
2014-12-11 17:43:48 +03:00
|
|
|
case Timeout:
|
|
|
|
return QLatin1String("Timeout");
|
2013-07-05 15:14:48 +04:00
|
|
|
}
|
2014-12-11 17:43:48 +03:00
|
|
|
return QLatin1String("status undeclared.");
|
2013-05-04 18:01:45 +04:00
|
|
|
}
|
|
|
|
|
2014-12-17 16:09:57 +03:00
|
|
|
void ConnectionValidator::checkServerAndAuth()
|
2013-05-04 18:01:45 +04:00
|
|
|
{
|
2014-12-03 15:10:49 +03:00
|
|
|
if( !_account ) {
|
|
|
|
_errors << tr("No ownCloud account configured");
|
2014-12-11 15:55:59 +03:00
|
|
|
reportResult( NotConfigured );
|
2014-12-03 15:10:49 +03:00
|
|
|
return;
|
|
|
|
}
|
2015-02-05 17:18:38 +03:00
|
|
|
_isCheckingServerAndAuth = true;
|
2014-12-03 15:10:49 +03:00
|
|
|
|
2015-03-24 23:30:42 +03:00
|
|
|
// Lookup system proxy in a thread https://github.com/owncloud/client/issues/2993
|
|
|
|
if (ClientProxy::isUsingSystemDefault()) {
|
|
|
|
qDebug() << "Trying to look up system proxy";
|
|
|
|
ClientProxy::lookupSystemProxyAsync(_account->url(),
|
|
|
|
this, SLOT(systemProxyLookupDone(QNetworkProxy)));
|
|
|
|
} else {
|
|
|
|
// use a queued invocation so we're as asynchronous as with the other code path
|
|
|
|
QMetaObject::invokeMethod(this, "slotCheckServerAndAuth", Qt::QueuedConnection);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConnectionValidator::systemProxyLookupDone(const QNetworkProxy &proxy) {
|
|
|
|
if (!_account) {
|
|
|
|
qDebug() << "Bailing out, Account had been deleted";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (proxy.type() != QNetworkProxy::DefaultProxy) {
|
|
|
|
qDebug() << Q_FUNC_INFO << "Setting QNAM proxy to be system proxy" << proxy;
|
|
|
|
_account->networkAccessManager()->setProxy(proxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
slotCheckServerAndAuth();
|
|
|
|
}
|
|
|
|
|
|
|
|
// The actual check
|
|
|
|
void ConnectionValidator::slotCheckServerAndAuth()
|
|
|
|
{
|
2014-12-17 16:09:57 +03:00
|
|
|
CheckServerJob *checkJob = new CheckServerJob(_account, this);
|
|
|
|
checkJob->setIgnoreCredentialFailure(true);
|
|
|
|
connect(checkJob, SIGNAL(instanceFound(QUrl,QVariantMap)), SLOT(slotStatusFound(QUrl,QVariantMap)));
|
|
|
|
connect(checkJob, SIGNAL(networkError(QNetworkReply*)), SLOT(slotNoStatusFound(QNetworkReply*)));
|
|
|
|
connect(checkJob, SIGNAL(timeout(QUrl)), SLOT(slotJobTimeout(QUrl)));
|
|
|
|
checkJob->start();
|
2013-05-04 18:01:45 +04:00
|
|
|
}
|
|
|
|
|
2013-10-28 23:01:59 +04:00
|
|
|
void ConnectionValidator::slotStatusFound(const QUrl&url, const QVariantMap &info)
|
2013-05-04 18:01:45 +04:00
|
|
|
{
|
|
|
|
// status.php was found.
|
2013-10-23 16:48:44 +04:00
|
|
|
qDebug() << "** Application: ownCloud found: "
|
2013-10-28 23:01:59 +04:00
|
|
|
<< url << " with version "
|
2013-10-23 16:48:44 +04:00
|
|
|
<< CheckServerJob::versionString(info)
|
|
|
|
<< "(" << CheckServerJob::version(info) << ")";
|
2013-05-04 18:01:45 +04:00
|
|
|
|
2015-02-12 14:59:00 +03:00
|
|
|
QString version = CheckServerJob::version(info);
|
|
|
|
_account->setServerVersion(version);
|
|
|
|
|
|
|
|
if (version.contains('.') && version.split('.')[0].toInt() < 5) {
|
2013-09-11 12:24:31 +04:00
|
|
|
_errors.append( tr("The configured server for this client is too old") );
|
|
|
|
_errors.append( tr("Please update to the latest server and restart the client.") );
|
2014-12-11 15:55:59 +03:00
|
|
|
reportResult( ServerVersionMismatch );
|
2013-05-04 18:01:45 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-12-03 15:10:49 +03:00
|
|
|
// now check the authentication
|
2014-03-03 20:55:15 +04:00
|
|
|
AbstractCredentials *creds = _account->credentials();
|
|
|
|
if (creds->ready()) {
|
2014-12-17 16:09:57 +03:00
|
|
|
QTimer::singleShot( 0, this, SLOT( checkAuthentication() ));
|
2014-03-03 20:55:15 +04:00
|
|
|
} else {
|
2015-02-12 17:23:48 +03:00
|
|
|
// We can't proceed with the auth check because we don't have credentials.
|
|
|
|
// Fetch them now! Once fetched, a new connectivity check will be
|
|
|
|
// initiated anyway.
|
2015-01-16 17:18:01 +03:00
|
|
|
creds->fetch();
|
2014-03-03 20:55:15 +04:00
|
|
|
}
|
2013-05-04 18:01:45 +04:00
|
|
|
}
|
|
|
|
|
2015-02-11 11:23:04 +03:00
|
|
|
// status.php could not be loaded (network or server issue!).
|
2013-10-28 23:01:59 +04:00
|
|
|
void ConnectionValidator::slotNoStatusFound(QNetworkReply *reply)
|
2013-05-04 18:01:45 +04:00
|
|
|
{
|
2015-03-10 14:14:14 +03:00
|
|
|
if( reply && ! _account->credentials()->stillValid(reply)) {
|
|
|
|
_errors.append(tr("Authentication error: Either username or password are wrong."));
|
|
|
|
} else {
|
|
|
|
_errors.append(tr("Unable to connect to %1").arg(_account->url().toString()));
|
|
|
|
_errors.append( reply->errorString() );
|
|
|
|
}
|
2014-12-11 15:55:59 +03:00
|
|
|
reportResult( StatusNotFound );
|
2014-09-12 19:58:01 +04:00
|
|
|
}
|
|
|
|
|
2014-12-11 15:55:59 +03:00
|
|
|
void ConnectionValidator::slotJobTimeout(const QUrl &url)
|
2014-09-12 19:58:01 +04:00
|
|
|
{
|
|
|
|
_errors.append(tr("Unable to connect to %1").arg(url.toString()));
|
|
|
|
_errors.append(tr("timeout"));
|
2014-12-11 17:43:48 +03:00
|
|
|
reportResult( Timeout );
|
2013-05-04 18:01:45 +04:00
|
|
|
}
|
|
|
|
|
2014-09-12 19:58:01 +04:00
|
|
|
|
2014-12-17 16:09:57 +03:00
|
|
|
void ConnectionValidator::checkAuthentication()
|
2013-05-04 18:01:45 +04:00
|
|
|
{
|
2014-03-03 20:55:15 +04:00
|
|
|
AbstractCredentials *creds = _account->credentials();
|
2014-12-03 15:10:49 +03:00
|
|
|
|
2015-01-21 17:30:25 +03:00
|
|
|
if (!creds->ready()) { // The user canceled
|
|
|
|
reportResult(UserCanceledCredentials);
|
|
|
|
}
|
|
|
|
|
2013-05-04 18:01:45 +04:00
|
|
|
// simply GET the webdav root, will fail if credentials are wrong.
|
|
|
|
// continue in slotAuthCheck here :-)
|
2014-12-03 15:10:49 +03:00
|
|
|
qDebug() << "# Check whether authenticated propfind works.";
|
2013-11-22 17:01:11 +04:00
|
|
|
PropfindJob *job = new PropfindJob(_account, "/", this);
|
|
|
|
job->setProperties(QList<QByteArray>() << "getlastmodified");
|
|
|
|
connect(job, SIGNAL(result(QVariantMap)), SLOT(slotAuthSuccess()));
|
|
|
|
connect(job, SIGNAL(networkError(QNetworkReply*)), SLOT(slotAuthFailed(QNetworkReply*)));
|
|
|
|
job->start();
|
2013-05-04 18:01:45 +04:00
|
|
|
}
|
|
|
|
|
2013-10-28 23:01:59 +04:00
|
|
|
void ConnectionValidator::slotAuthFailed(QNetworkReply *reply)
|
2013-05-04 18:01:45 +04:00
|
|
|
{
|
2014-12-11 17:43:48 +03:00
|
|
|
Status stat = Timeout;
|
2013-05-04 18:01:45 +04:00
|
|
|
|
2013-10-28 23:01:59 +04:00
|
|
|
if( reply->error() == QNetworkReply::AuthenticationRequiredError ||
|
2015-03-03 10:33:59 +03:00
|
|
|
!_account->credentials()->stillValid(reply)) {
|
2013-11-23 03:14:02 +04:00
|
|
|
qDebug() << reply->error() << reply->errorString();
|
2013-05-04 18:01:45 +04:00
|
|
|
qDebug() << "******** Password is wrong!";
|
2013-09-11 12:24:31 +04:00
|
|
|
_errors << tr("The provided credentials are not correct");
|
2013-05-04 18:01:45 +04:00
|
|
|
stat = CredentialsWrong;
|
2013-11-25 18:33:35 +04:00
|
|
|
|
2013-10-28 23:01:59 +04:00
|
|
|
} else if( reply->error() != QNetworkReply::NoError ) {
|
|
|
|
_errors << reply->errorString();
|
2015-02-25 11:49:39 +03:00
|
|
|
|
|
|
|
const int httpStatus =
|
|
|
|
reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
if ( httpStatus == 503 ) {
|
|
|
|
// Is this a maintenance mode reply from the server
|
|
|
|
// or a regular 503 from somewhere else?
|
|
|
|
QByteArray body = reply->readAll();
|
|
|
|
if ( body.contains("Sabre\\DAV\\Exception\\ServiceUnavailable") ) {
|
|
|
|
_errors.clear();
|
|
|
|
stat = ServerMaintenance;
|
|
|
|
}
|
|
|
|
}
|
2013-05-04 18:01:45 +04:00
|
|
|
}
|
|
|
|
|
2014-12-11 15:55:59 +03:00
|
|
|
reportResult( stat );
|
2013-05-04 18:01:45 +04:00
|
|
|
}
|
|
|
|
|
2013-10-23 16:48:44 +04:00
|
|
|
void ConnectionValidator::slotAuthSuccess()
|
|
|
|
{
|
2014-12-11 15:55:59 +03:00
|
|
|
_errors.clear();
|
2015-02-05 17:18:38 +03:00
|
|
|
if (!_isCheckingServerAndAuth) {
|
|
|
|
reportResult(Connected);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
checkServerCapabilities();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConnectionValidator::checkServerCapabilities()
|
|
|
|
{
|
|
|
|
JsonApiJob *job = new JsonApiJob(_account, QLatin1String("ocs/v1.php/cloud/capabilities"), this);
|
|
|
|
QObject::connect(job, SIGNAL(jsonRecieved(QVariantMap)), this, SLOT(slotCapabilitiesRecieved(QVariantMap)));
|
|
|
|
job->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConnectionValidator::slotCapabilitiesRecieved(const QVariantMap &json)
|
|
|
|
{
|
|
|
|
auto caps = json.value("ocs").toMap().value("data").toMap().value("capabilities");
|
|
|
|
qDebug() << "Server capabilities" << caps;
|
|
|
|
_account->setCapabilities(caps.toMap());
|
2014-12-11 15:55:59 +03:00
|
|
|
reportResult(Connected);
|
2015-02-05 17:18:38 +03:00
|
|
|
return;
|
2014-12-11 15:55:59 +03:00
|
|
|
}
|
|
|
|
|
2015-02-05 17:18:38 +03:00
|
|
|
|
2014-12-11 15:55:59 +03:00
|
|
|
void ConnectionValidator::reportResult(Status status)
|
|
|
|
{
|
|
|
|
emit connectionResult(status, _errors);
|
|
|
|
deleteLater();
|
2013-05-04 18:01:45 +04:00
|
|
|
}
|
2013-10-23 16:48:44 +04:00
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
} // namespace OCC
|