summaryrefslogtreecommitdiffstats
path: root/src/ReCaptcha.cpp
blob: 9a89bb4d8061ae81c22a5e52a3eb6d96c77c408e (plain)
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
// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later

#include "ReCaptcha.h"

#include <QDesktopServices>
#include <QUrl>

#include "MatrixClient.h"

ReCaptcha::ReCaptcha(const QString &session, const QString &context, QObject *parent)
  : QObject{parent}
  , m_session{session}
  , m_context{context}
{
}

void
ReCaptcha::openReCaptcha()
{
    const auto url = QStringLiteral("https://%1:%2/_matrix/client/r0/auth/m.login.recaptcha/"
                                    "fallback/web?session=%3")
                       .arg(QString::fromStdString(http::client()->server()))
                       .arg(http::client()->port())
                       .arg(m_session);

    QDesktopServices::openUrl(url);
}

#include "moc_ReCaptcha.cpp"