1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/*
* SPDX-FileCopyrightText: 2018 Daniel Vrátil <dvratil@kde.org>
*
* SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#include "fakeauthbrowser.h"
#include <QDesktopServices>
#include <QHostAddress>
#include <QObject>
#include <QTcpSocket>
#include <QTimer>
extern Q_DECL_IMPORT uint16_t kgapiTcpAuthServerPort; // defined in authjob.cpp
class FakeAuthBrowserPrivate : public QObject
{
Q_OBJECT
public:
explicit FakeAuthBrowserPrivate()
{
kgapiTcpAuthServerPort = 42413;
}
public Q_SLOTS:
void openUrl(const QUrl &url)
{
Q_UNUSED(url)
// don't do anything, don't even try to load Google auth page. Instead
// pretend the user have already authenticated and we've reached the
// part where Google sends us the auth code
QTimer::singleShot(0, this, []() {
QTcpSocket socket;
socket.connectToHost(QHostAddress::LocalHost, kgapiTcpAuthServerPort);
if (!socket.waitForConnected()) {
qWarning() << "Failed to connect to internal TCP server!";
return;
}
socket.write("GET http://127.0.0.1:42413?code=TheCakeIsALie HTTP/1.1");
socket.waitForBytesWritten();
socket.close();
});
}
};
FakeAuthBrowser::FakeAuthBrowser()
: d(std::make_unique<FakeAuthBrowserPrivate>())
{
QDesktopServices::setUrlHandler(QStringLiteral("https"), d.get(), "openUrl");
}
FakeAuthBrowser::~FakeAuthBrowser()
{
QDesktopServices::unsetUrlHandler(QStringLiteral("https"));
}
#include "fakeauthbrowser.moc"
|