-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreply.cpp
141 lines (119 loc) · 3.03 KB
/
reply.cpp
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
SPDX-FileCopyrightText: 2018 Kamil Jakubus
SPDX-FileCopyrightText: 2022 George Florea Bănuș <georgefb899@gmail.com>
SPDX-License-Identifier: MIT
*/
#include "reply.hpp"
#include <QJsonDocument>
#include <QString>
namespace Twitch
{
template<class T>
T *Twitch::Reply::fromData(QObject *parent, const QVariant &data)
{
T *reply = new T;
reply->setParent(parent);
reply->m_data = data;
return reply;
}
Reply::Reply()
: QObject(nullptr)
, m_reply(nullptr)
, m_currentState(ReplyState::Success)
, m_cursor(QString())
{
}
Reply::Reply(QNetworkReply *reply)
: QObject(reply->manager())
, m_reply(reply)
, m_currentState(ReplyState::Pending)
, m_cursor(QString())
{
connect(m_reply, &QNetworkReply::finished, this, &Reply::onFinished, Qt::DirectConnection);
connect(m_reply, &QNetworkReply::downloadProgress, this, &Reply::downloadProgress, Qt::UniqueConnection);
connect(m_reply, &QNetworkReply::errorOccurred, this, [this](QNetworkReply::NetworkError) {
m_currentState = ReplyState::Error;
});
}
Reply::~Reply()
{
}
QVariant &Reply::data()
{
return m_data;
}
const ReplyState &Reply::currentState() const
{
return m_currentState;
}
Reply::operator bool() const
{
return currentState() == ReplyState::Success;
}
const QString &Reply::cursor() const
{
return m_cursor;
}
RawReply::RawReply(QNetworkReply *reply)
: Reply(reply)
{
}
RawReply::~RawReply() = default;
JSONReply::JSONReply(QNetworkReply *reply)
: Reply(reply)
{
}
JSONReply::~JSONReply()
{
}
void ImageReply::parseData(const QByteArray &data)
{
m_data.setValue(QImage::fromData(data));
}
void RawReply::onFinished()
{
if (m_currentState != ReplyState::Error) {
auto data = m_reply->readAll();
// Check errors
if (data.isEmpty() || data.isNull()) {
m_currentState = ReplyState::Error;
} else {
m_currentState = ReplyState::Success;
parseData(data);
}
}
Q_EMIT finished();
m_reply->setParent(nullptr);
m_reply->deleteLater();
}
void JSONReply::onFinished()
{
if (m_currentState != ReplyState::Error) {
auto reply = m_reply->readAll();
m_json = QJsonDocument::fromJson(reply.data()).object();
{
if (m_json.isEmpty()) {
m_currentState = ReplyState::Error;
} else {
m_currentState = ReplyState::Success;
parseData(m_json);
if (m_json.find(u"pagination"_qs) != m_json.end()) {
auto pagination = m_json[u"pagination"_qs].toObject();
if (pagination.find(u"cursor"_qs) != pagination.end()) {
// Save the pagination
m_cursor = pagination[u"cursor"_qs].toString();
}
}
}
}
}
Q_EMIT finished();
m_reply->setParent(nullptr);
m_reply->deleteLater();
}
const QJsonObject &Twitch::JSONReply::json() const
{
return m_json;
}
}
#include "moc_reply.cpp"