QtRestClient
3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
|
1 #ifndef QTRESTCLIENT_QMLRESTCLASS_H
2 #define QTRESTCLIENT_QMLRESTCLASS_H
5 #include <QtCore/QObject>
6 #include <QtQml/QQmlParserStatus>
7 #include <QtQml/QQmlListProperty>
8 #include <QtQml/QJSValue>
10 #include <QtRestClient/RestClass>
12 #include "qmlrestreply.h"
65 Q_CLASSINFO(
"DefaultProperty",
"classes")
79 void classBegin() override;
81 void componentComplete() override;
125 Q_INVOKABLE QtRestClient::QmlRestReply *
get(
QJSValue optPath = {},
145 Q_INVOKABLE QtRestClient::QmlRestReply *
post(
QJSValue optPath = {},
166 Q_INVOKABLE QtRestClient::QmlRestReply *
put(
QJSValue optPathOrBody,
206 Q_INVOKABLE QtRestClient::QmlRestReply *
patch(
QJSValue optPathOrBody,
226 Q_INVOKABLE QtRestClient::QmlRestReply *
head(
QJSValue optPath = {},
241 void revaluateClass();
244 RestClass *_class =
nullptr;
250 template <
typename... TValues>
254 template <
typename... TValues>
255 std::optional<std::variant<QString, QUrl>> getPath(
QJSValue &optPath, TValues&... values)
const;
256 template <
typename... TValues>
257 std::optional<std::variant<QCborValue, QJsonValue>> getBody(
QJSValue &optBody, TValues&... values)
const;
258 template <
typename... TValues>
259 std::optional<QVariantHash> getParams(
QJSValue &optParams, TValues&... values)
const;
260 template <
typename... TValues>
261 bool getAsPost(
bool hasBody,
QJSValue &optParams, TValues&... values)
const;
262 std::optional<HeaderHash> getHeaders(
QJSValue &optHeaders)
const;
264 QmlRestReply *makeQmlReply(RestReply *reply);
265 QmlRestReply *callImpl(
const QByteArray &verb,
266 const std::optional<std::variant<QString, QUrl>> &optPath,
267 const std::optional<std::variant<QCborValue, QJsonValue>> &optBody,
268 const std::optional<QVariantHash> &optParams,
270 const std::optional<HeaderHash> &optHeaders);
275 #endif // QTRESTCLIENT_QMLRESTCLASS_H
Q_INVOKABLE QtRestClient::QmlRestReply * post(QJSValue optPath={}, QJSValue optBodyParams={}, QJSValue optParams={}, QJSValue optHeaders={})
Perform a HTTP-POST-Request on this class.
The Namespace containing all classes of the QtRestClient module.
QmlRestClass(QObject *parent=nullptr)
Default constructor with object parent.
Q_INVOKABLE QtRestClient::QmlRestReply * deleteResource(QJSValue optPath={}, QJSValue optParams={}, QJSValue optHeaders={})
Perform a HTTP-DELETE-Request on this class.
Q_INVOKABLE QtRestClient::QmlRestReply * head(QJSValue optPath={}, QJSValue optParams={}, QJSValue optHeaders={})
Perform a HTTP-HEAD-Request on this class.
void pathChanged(QString path)
NOTIFY accessor for RestClass::path.
The QML import for the QtRestClient QML module.
void restClassChanged(QtRestClient::RestClass *restClass)
NOTIFY accessor for RestClass::restClass.
The QML version of QtRestClient::RestClass.
A class to perform requests to an API.
Q_INVOKABLE QtRestClient::QmlRestReply * get(QJSValue optPath={}, QJSValue optParams={}, QJSValue optHeaders={})
Perform a HTTP-GET-Request on this class.
Q_INVOKABLE QtRestClient::QmlRestReply * put(QJSValue optPathOrBody, QJSValue body={}, QJSValue optParams={}, QJSValue optHeaders={})
Perform a HTTP-PUT-Request on this class.
Q_INVOKABLE QtRestClient::QmlRestReply * patch(QJSValue optPathOrBody, QJSValue body={}, QJSValue optParams={}, QJSValue optHeaders={})
Perform a HTTP-PATCH-Request on this class.
Q_INVOKABLE QtRestClient::QmlRestReply * call(const QString &verb, QJSValue optPath={}, QJSValue optBody={}, QJSValue optParams={}, QJSValue optAsPost={}, QJSValue optHeaders={})
Perform a HTTP-Request call on this class.