nheko/src/SSOHandler.h

30 lines
490 B
C
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-05 00:35:15 +01:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
2020-05-09 23:31:00 +02:00
#include "httplib.h"
#include <QObject>
#include <string>
class SSOHandler : public QObject
{
2021-09-18 00:22:33 +02:00
Q_OBJECT
2020-05-09 23:31:00 +02:00
public:
2021-09-18 00:22:33 +02:00
SSOHandler(QObject *parent = nullptr);
2020-05-09 23:31:00 +02:00
2021-09-18 00:22:33 +02:00
~SSOHandler();
2020-05-09 23:31:00 +02:00
2021-09-18 00:22:33 +02:00
std::string url() const;
2020-05-09 23:31:00 +02:00
signals:
2021-09-18 00:22:33 +02:00
void ssoSuccess(std::string token);
void ssoFailed();
2020-05-09 23:31:00 +02:00
private:
2021-09-18 00:22:33 +02:00
httplib::Server svr;
int port = 0;
2020-05-09 23:31:00 +02:00
};