mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-21 05:13:04 +03:00
9adc30ab9f
Otherwise the user is asked twice for autentication on first sync. Fixes https://github.com/owncloud/enterprise/issues/193
99 lines
2.8 KiB
C++
99 lines
2.8 KiB
C++
/*
|
|
* 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_CREDS_SHIBBOLETH_CREDENTIALS_H
|
|
#define MIRALL_CREDS_SHIBBOLETH_CREDENTIALS_H
|
|
|
|
#include <QList>
|
|
#include <QMap>
|
|
#include <QNetworkCookie>
|
|
#include <QUrl>
|
|
#include <QPointer>
|
|
|
|
#include "creds/abstractcredentials.h"
|
|
|
|
namespace QKeychain {
|
|
class Job;
|
|
}
|
|
|
|
class QAuthenticator;
|
|
|
|
namespace Mirall
|
|
{
|
|
|
|
class ShibbolethWebView;
|
|
|
|
class OWNCLOUDSYNC_EXPORT ShibbolethCredentials : public AbstractCredentials
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ShibbolethCredentials();
|
|
|
|
/* create a credidentials for an already connected account */
|
|
ShibbolethCredentials(const QNetworkCookie &cookie, Account *acc);
|
|
|
|
void syncContextPreInit(CSYNC* ctx);
|
|
void syncContextPreStart(CSYNC* ctx);
|
|
bool changed(AbstractCredentials* credentials) const;
|
|
QString authType() const;
|
|
QString user() const;
|
|
QNetworkAccessManager* getQNAM() const;
|
|
bool ready() const;
|
|
void fetch(Account *account);
|
|
bool stillValid(QNetworkReply *reply);
|
|
void persist(Account *account);
|
|
void invalidateToken(Account *account);
|
|
|
|
void showLoginWindow(Account*);
|
|
|
|
static QList<QNetworkCookie> accountCookies(Account*);
|
|
static QNetworkCookie findShibCookie(Account*, QList<QNetworkCookie> cookies = QList<QNetworkCookie>());
|
|
static QByteArray shibCookieName();
|
|
|
|
public Q_SLOTS:
|
|
void invalidateAndFetch(Account *account);
|
|
void slotHandleAuthentication(QNetworkReply*,QAuthenticator*);
|
|
|
|
private Q_SLOTS:
|
|
void onShibbolethCookieReceived(const QNetworkCookie&, Account*);
|
|
void slotBrowserRejected();
|
|
void onFetched();
|
|
void slotReadJobDone(QKeychain::Job*);
|
|
void slotInvalidateAndFetchInvalidateDone(QKeychain::Job*);
|
|
void slotReplyFinished(QNetworkReply*);
|
|
void slotUserFetched(const QString& user);
|
|
void slotFetchUser();
|
|
|
|
Q_SIGNALS:
|
|
void newCookie(const QNetworkCookie& cookie);
|
|
void invalidatedAndFetched(const QByteArray& cookieData);
|
|
|
|
private:
|
|
void storeShibCookie(const QNetworkCookie &cookie, Account *account);
|
|
void removeShibCookie(Account *account);
|
|
void addToCookieJar(const QNetworkCookie &cookie);
|
|
QUrl _url;
|
|
QByteArray prepareCookieData() const;
|
|
|
|
bool _ready;
|
|
bool _stillValid;
|
|
bool _fetchJobInProgress;
|
|
QPointer<ShibbolethWebView> _browser;
|
|
QNetworkCookie _shibCookie;
|
|
QString _user;
|
|
};
|
|
|
|
} // ns Mirall
|
|
|
|
#endif
|