2014-03-11 19:55:53 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Klaas Freitag <freitag@kde.org>
|
|
|
|
* Copyright (c) by Markus Goetz <guruz@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; 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 <QMutex>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QNetworkReply>
|
|
|
|
#include <QSettings>
|
|
|
|
|
|
|
|
#include "mirall/account.h"
|
|
|
|
#include "mirall/mirallaccessmanager.h"
|
|
|
|
#include "mirall/utility.h"
|
|
|
|
#include "mirall/theme.h"
|
|
|
|
#include "creds/credentialscommon.h"
|
|
|
|
#include "creds/tokencredentials.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace Mirall
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
int getauth(const char *prompt,
|
|
|
|
char *buf,
|
|
|
|
size_t len,
|
|
|
|
int echo,
|
|
|
|
int verify,
|
|
|
|
void *userdata)
|
|
|
|
{
|
|
|
|
int re = 0;
|
|
|
|
QMutex mutex;
|
|
|
|
// ### safe?
|
|
|
|
TokenCredentials* http_credentials = qobject_cast<TokenCredentials*>(AccountManager::instance()->account()->credentials());
|
|
|
|
|
|
|
|
if (!http_credentials) {
|
|
|
|
qDebug() << "Not a HTTP creds instance!";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString qPrompt = QString::fromLatin1( prompt ).trimmed();
|
|
|
|
QString user = http_credentials->user();
|
|
|
|
QString pwd = http_credentials->password();
|
|
|
|
|
|
|
|
if( qPrompt == QLatin1String("Enter your username:") ) {
|
|
|
|
// qDebug() << "OOO Username requested!";
|
|
|
|
QMutexLocker locker( &mutex );
|
|
|
|
qstrncpy( buf, user.toUtf8().constData(), len );
|
|
|
|
} else if( qPrompt == QLatin1String("Enter your password:") ) {
|
|
|
|
QMutexLocker locker( &mutex );
|
|
|
|
// qDebug() << "OOO Password requested!";
|
|
|
|
qstrncpy( buf, pwd.toUtf8().constData(), len );
|
|
|
|
} else {
|
|
|
|
re = handleNeonSSLProblems(prompt, buf, len, echo, verify, userdata);
|
|
|
|
}
|
|
|
|
return re;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char userC[] = "user";
|
2014-04-22 14:52:13 +04:00
|
|
|
const char authenticationFailedC[] = "owncloud-authentication-failed";
|
2014-03-11 19:55:53 +04:00
|
|
|
|
|
|
|
} // ns
|
|
|
|
|
|
|
|
class TokenCredentialsAccessManager : public MirallAccessManager {
|
|
|
|
public:
|
2014-03-21 20:12:26 +04:00
|
|
|
friend class TokenCredentials;
|
2014-03-11 19:55:53 +04:00
|
|
|
TokenCredentialsAccessManager(const TokenCredentials *cred, QObject* parent = 0)
|
|
|
|
: MirallAccessManager(parent), _cred(cred) {}
|
|
|
|
protected:
|
|
|
|
QNetworkReply *createRequest(Operation op, const QNetworkRequest &request, QIODevice *outgoingData) {
|
2014-06-19 15:34:15 +04:00
|
|
|
if (_cred->user().isEmpty() || _cred->password().isEmpty() || _cred->_token.isEmpty()) {
|
|
|
|
qWarning() << Q_FUNC_INFO << "Empty user/password/token provided!";
|
|
|
|
}
|
|
|
|
|
2014-03-11 19:55:53 +04:00
|
|
|
QNetworkRequest req(request);
|
2014-06-19 15:34:15 +04:00
|
|
|
|
|
|
|
QByteArray credHash = QByteArray(_cred->user().toUtf8()+":"+_cred->password().toUtf8()).toBase64();
|
2014-03-11 19:55:53 +04:00
|
|
|
req.setRawHeader(QByteArray("Authorization"), QByteArray("Basic ") + credHash);
|
2014-06-03 13:50:13 +04:00
|
|
|
|
2014-06-19 15:34:15 +04:00
|
|
|
req.setRawHeader("Cookie", _cred->_token.toUtf8()); // analogous to neon in syncContextPreStart
|
2014-06-03 13:50:13 +04:00
|
|
|
|
2014-03-11 19:55:53 +04:00
|
|
|
return MirallAccessManager::createRequest(op, req, outgoingData);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
const TokenCredentials *_cred;
|
|
|
|
};
|
|
|
|
|
|
|
|
TokenCredentials::TokenCredentials()
|
|
|
|
: _user(),
|
|
|
|
_password(),
|
|
|
|
_ready(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-03-21 20:12:26 +04:00
|
|
|
TokenCredentials::TokenCredentials(const QString& user, const QString& password, const QString &token)
|
2014-03-11 19:55:53 +04:00
|
|
|
: _user(user),
|
|
|
|
_password(password),
|
2014-03-21 20:12:26 +04:00
|
|
|
_token(token),
|
2014-03-11 19:55:53 +04:00
|
|
|
_ready(true)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void TokenCredentials::syncContextPreInit (CSYNC* ctx)
|
|
|
|
{
|
|
|
|
csync_set_auth_callback (ctx, getauth);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TokenCredentials::syncContextPreStart (CSYNC* ctx)
|
|
|
|
{
|
2014-06-03 13:50:13 +04:00
|
|
|
csync_set_module_property(ctx, "session_key", _token.toUtf8().data());
|
2014-03-11 19:55:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TokenCredentials::changed(AbstractCredentials* credentials) const
|
|
|
|
{
|
|
|
|
TokenCredentials* other(dynamic_cast< TokenCredentials* >(credentials));
|
|
|
|
|
|
|
|
if (!other || (other->user() != this->user())) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString TokenCredentials::authType() const
|
|
|
|
{
|
2014-03-21 20:12:26 +04:00
|
|
|
return QString::fromLatin1("token");
|
2014-03-11 19:55:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
QString TokenCredentials::user() const
|
|
|
|
{
|
|
|
|
return _user;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString TokenCredentials::password() const
|
|
|
|
{
|
|
|
|
return _password;
|
|
|
|
}
|
|
|
|
|
|
|
|
QNetworkAccessManager* TokenCredentials::getQNAM() const
|
|
|
|
{
|
|
|
|
MirallAccessManager* qnam = new TokenCredentialsAccessManager(this);
|
|
|
|
|
|
|
|
connect( qnam, SIGNAL(authenticationRequired(QNetworkReply*, QAuthenticator*)),
|
|
|
|
this, SLOT(slotAuthentication(QNetworkReply*,QAuthenticator*)));
|
|
|
|
|
|
|
|
return qnam;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TokenCredentials::ready() const
|
|
|
|
{
|
|
|
|
return _ready;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TokenCredentials::fetch(Account *account)
|
|
|
|
{
|
|
|
|
if( !account ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Q_EMIT fetched();
|
|
|
|
}
|
2014-06-19 15:34:15 +04:00
|
|
|
|
2014-03-11 19:55:53 +04:00
|
|
|
bool TokenCredentials::stillValid(QNetworkReply *reply)
|
|
|
|
{
|
|
|
|
return ((reply->error() != QNetworkReply::AuthenticationRequiredError)
|
2014-06-19 15:34:15 +04:00
|
|
|
// returned if user/password or token are incorrect
|
2014-04-22 14:52:13 +04:00
|
|
|
&& (reply->error() != QNetworkReply::OperationCanceledError
|
|
|
|
|| !reply->property(authenticationFailedC).toBool()));
|
2014-03-11 19:55:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
QString TokenCredentials::queryPassword(bool *ok)
|
|
|
|
{
|
2014-04-06 21:34:56 +04:00
|
|
|
return QString();
|
2014-03-11 19:55:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void TokenCredentials::invalidateToken(Account *account)
|
|
|
|
{
|
2014-06-19 15:34:15 +04:00
|
|
|
qDebug() << Q_FUNC_INFO;
|
2014-03-11 19:55:53 +04:00
|
|
|
_ready = false;
|
|
|
|
account->clearCookieJar();
|
2014-06-19 15:34:15 +04:00
|
|
|
_token = QString();
|
|
|
|
_user = QString();
|
|
|
|
_password = QString();
|
2014-03-11 19:55:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void TokenCredentials::persist(Account *account)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void TokenCredentials::slotAuthentication(QNetworkReply* reply, QAuthenticator* authenticator)
|
|
|
|
{
|
|
|
|
Q_UNUSED(authenticator)
|
|
|
|
// we cannot use QAuthenticator, because it sends username and passwords with latin1
|
|
|
|
// instead of utf8 encoding. Instead, we send it manually. Thus, if we reach this signal,
|
|
|
|
// those credentials were invalid and we terminate.
|
|
|
|
qDebug() << "Stop request: Authentication failed for " << reply->url().toString();
|
2014-04-22 14:52:13 +04:00
|
|
|
reply->setProperty(authenticationFailedC, true);
|
2014-03-11 19:55:53 +04:00
|
|
|
reply->close();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // ns Mirall
|