0a13ce851d
Very low risk of anything bad here since we use a random port and the chance of a CSRF attack is tiny, but this is a best practie to do when using OAuth.
24 lines
350 B
C++
24 lines
350 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QtNetwork/QTcpServer>
|
|
|
|
class AuthListener : public QObject {
|
|
Q_OBJECT
|
|
|
|
QTcpServer *server;
|
|
QString state;
|
|
|
|
signals:
|
|
void ok(const QString &code);
|
|
void fail();
|
|
|
|
protected:
|
|
void NewConnection();
|
|
|
|
public:
|
|
explicit AuthListener(QObject *parent = 0);
|
|
quint16 GetPort();
|
|
void SetState(QString state);
|
|
};
|