mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
31 lines
796 B
C++
31 lines
796 B
C++
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "FallbackAuth.h"
|
|
|
|
#include <QDesktopServices>
|
|
#include <QUrl>
|
|
|
|
#include "MatrixClient.h"
|
|
|
|
FallbackAuth::FallbackAuth(const QString &session, const QString &authType, QObject *parent)
|
|
: QObject{parent}
|
|
, m_session{session}
|
|
, m_authType{authType}
|
|
{
|
|
}
|
|
|
|
void
|
|
FallbackAuth::openFallbackAuth()
|
|
{
|
|
const auto url = QStringLiteral("https://%1:%2/_matrix/client/r0/auth/%4/"
|
|
"fallback/web?session=%3")
|
|
.arg(QString::fromStdString(http::client()->server()))
|
|
.arg(http::client()->port())
|
|
.arg(m_session, m_authType);
|
|
|
|
QDesktopServices::openUrl(url);
|
|
}
|
|
|
|
#include "moc_FallbackAuth.cpp"
|