summaryrefslogtreecommitdiffstats
path: root/examples/oauth/redditclient/redditwrapper.h
blob: afabed3fc86870dd49f7ae41cbb24a1a91ed04d6 (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
32
33
34
35
36
37
38
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef REDDITWRAPPER_H
#define REDDITWRAPPER_H

#include <QtCore>
#include <QtNetwork>

#include <QOAuth2AuthorizationCodeFlow>

class RedditWrapper : public QObject
{
    Q_OBJECT

public:
    RedditWrapper(QObject *parent = nullptr);
    RedditWrapper(const QString &clientIdentifier, QObject *parent = nullptr);

    QNetworkReply *requestHotThreads();

    bool isPermanent() const;
    void setPermanent(bool value);

public slots:
    void grant();
    void subscribeToLiveUpdates();

signals:
    void authenticated();
    void subscribed(const QUrl &url);

private:
    QOAuth2AuthorizationCodeFlow oauth2;
    bool permanent = false;
};

#endif // REDDITWRAPPER_H