2019-08-17 03:37:04 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Olivier Goffart <ogoffart@woboq.com>
|
|
|
|
* Copyright (C) by Michael Schuster <michael@nextcloud.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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <QPointer>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QTimer>
|
|
|
|
#include "accountfwd.h"
|
|
|
|
|
|
|
|
namespace OCC {
|
|
|
|
|
|
|
|
/**
|
2019-08-19 02:41:42 +03:00
|
|
|
* Job that does the authorization, grants and fetches the access token via Login Flow v2
|
2019-08-17 03:37:04 +03:00
|
|
|
*
|
2019-08-19 02:41:42 +03:00
|
|
|
* See: https://docs.nextcloud.com/server/latest/developer_manual/client_apis/LoginFlow/index.html#login-flow-v2
|
2019-08-17 03:37:04 +03:00
|
|
|
*/
|
|
|
|
class Flow2Auth : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Flow2Auth(Account *account, QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, _account(account)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
~Flow2Auth();
|
|
|
|
|
|
|
|
enum Result { NotSupported,
|
|
|
|
LoggedIn,
|
|
|
|
Error };
|
|
|
|
Q_ENUM(Result);
|
|
|
|
void start();
|
2019-08-19 02:41:42 +03:00
|
|
|
void openBrowser();
|
2019-08-17 03:37:04 +03:00
|
|
|
QUrl authorisationLink() const;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
/**
|
|
|
|
* The state has changed.
|
2019-08-24 17:21:44 +03:00
|
|
|
* when logged in, appPassword has the value of the app password.
|
2019-08-17 03:37:04 +03:00
|
|
|
*/
|
2019-08-24 17:21:44 +03:00
|
|
|
void result(Flow2Auth::Result result, const QString &user = QString(), const QString &appPassword = QString());
|
2019-08-17 03:37:04 +03:00
|
|
|
|
2019-12-20 06:05:39 +03:00
|
|
|
public slots:
|
|
|
|
void slotPollNow();
|
|
|
|
|
2019-08-17 03:37:04 +03:00
|
|
|
private slots:
|
|
|
|
void slotPollTimerTimeout();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Account *_account;
|
|
|
|
QUrl _loginUrl;
|
|
|
|
QString _pollToken;
|
|
|
|
QString _pollEndpoint;
|
|
|
|
QTimer _pollTimer;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace OCC
|