17 #ifndef NURIA_RESTFULHTTPNODE_HPP
18 #define NURIA_RESTFULHTTPNODE_HPP
20 #include "httpclient.hpp"
21 #include "httpnode.hpp"
28 #define NURIA_RESTFUL(Path) NURIA_ANNOTATE(org.nuriaproject.network.restful, Path)
35 #define NURIA_RESTFUL_VERBS(Verbs) NURIA_ANNOTATE(org.nuriaproject.network.restful.verbs, int(Verbs))
39 namespace Internal {
struct RestfulHttpNodeSlotData; }
41 class RestfulHttpNodePrivate;
149 void setRestfulHandler (HttpClient::HttpVerbs verbs,
const QString &path,
150 const QStringList &argumentNames,
const Callback &callback,
151 bool waitForRequestPostBody =
true);
158 void setRestfulHandler (
const QString &path,
const QStringList &argumentNames,
159 const Callback &callback,
bool waitForRequestPostBody =
true);
180 virtual QVariant serializeVariant (
const QVariant &variant);
187 virtual QVariant convertArgumentToVariant (
const QString &argumentData,
int targetType);
195 virtual void conversionFailure (
const QVariant &variant,
HttpClient *client);
205 virtual QByteArray generateResultData (
const QVariant &result,
HttpClient *client);
208 bool invokePath (
const QString &path,
const QStringList &parts,
212 friend class RestfulHttpNodePrivate;
214 void registerAnnotatedHandlers ();
216 void registerRestfulHandlerFromMethod (
const QString &path,
MetaMethod &method);
217 void delayedRegisterMetaObject ();
218 QStringList argumentNamesWithoutClient (
MetaMethod &method);
219 QString compilePathRegEx (QString path);
220 bool invokeMatchLater (
Callback callback,
const QVariantList &arguments,
HttpClient *client);
221 bool invokeMatchNow (
Callback callback,
const QVariantList &arguments,
HttpClient *client);
222 bool invokeMatch (Internal::RestfulHttpNodeSlotData &slotData,
223 QRegularExpressionMatch &match,
HttpClient *client);
224 QVariantList argumentValues (
const QStringList &names,
const QList<int> &types,
225 QRegularExpressionMatch &match,
HttpClient *client);
226 bool writeResponse (
const QVariant &response,
HttpClient *client);
227 void addJsonContentTypeHeaderToResponse (
HttpClient *client);
228 QVariantMap deepConvertMap (QVariantMap map);
229 QVariantList deepConvertList (QVariantList list);
230 QVariant serializeUserStructure (
const QVariant &variant);
231 QByteArray sendVariantAsJson (
const QVariant &variant,
HttpClient *client);
233 RestfulHttpNodePrivate *d_ptr;
239 #endif // NURIA_RESTFULHTTPNODE_HPP
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
Definition: abstractsessionmanager.hpp:24
The RestfulHttpNode class makes it easy to write RESTful APIs.
Definition: restfulhttpnode.hpp:114
Virtual directory for HttpServer.
Definition: httpnode.hpp:176
The HttpClient class represents a connection to a client.
Definition: httpclient.hpp:118