17 #ifndef NURIA_HTTPNODE_HPP
18 #define NURIA_HTTPNODE_HPP
20 #include "network_global.hpp"
21 #include "httpclient.hpp"
22 #include <nuria/callback.hpp>
23 #include <QSharedData>
29 class HttpNodePrivate;
30 class SlotInfoPrivate;
54 bool isValid ()
const;
69 bool streamPostBody ()
const;
72 void setStreamPostBody (
bool value);
78 HttpClient::HttpVerbs allowedVerbs ()
const;
81 void setAllowedVerbs (HttpClient::HttpVerbs verbs);
87 qint64 maxBodyLength ()
const;
90 void setMaxBodyLength (qint64 length);
97 bool forceEncrypted ()
const;
100 void setForceEncrypted (
bool force);
106 QSharedDataPointer< SlotInfoPrivate > d;
111 typedef QList< HttpNode * > HttpNodeList;
176 class NURIA_NETWORK_EXPORT
HttpNode :
public QObject {
187 NoStaticResources = 0,
194 UseStaticResources = 1,
200 UseNestedStaticResources = 2
222 bool isChild ()
const;
268 SlotInfo connectSlot (
const QString &name, QObject *receiver,
const char *slot);
274 bool disconnectSlot (
const QString &name);
288 const QString &resourceName ()
const;
293 const QDir &staticResourceDir ()
const;
298 StaticResourcesMode staticResourceMode ()
const;
305 bool setResourceName (
const QString &name);
316 void setStaticResourceDir (QDir path);
322 void setStaticResourceMode (StaticResourcesMode mode);
327 bool hasNode (
const QString &name);
332 bool hasSlot (
const QString &name);
338 HttpNode *findNode (
const QString &name)
const;
376 virtual bool invokePath (
const QString &path,
const QStringList &parts,
404 virtual bool allowAccessToClient (
const QString &path,
const QStringList &parts,
415 virtual bool callSlotByName (
const QString &name,
HttpClient *client);
425 bool sendStaticResource (
const QString &name,
HttpClient *client);
428 bool sendStaticResource (
const QStringList &path,
int indexInPath,
442 HttpNodePrivate *d_ptr;
447 #endif // NURIA_HTTPNODE_HPP
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
Definition: abstractsessionmanager.hpp:24
Definition: httpnode.hpp:38
Server for the HyperText Transfer Protocol.
Definition: httpserver.hpp:71
Virtual directory for HttpServer.
Definition: httpnode.hpp:176
The HttpClient class represents a connection to a client.
Definition: httpclient.hpp:118
StaticResourcesMode
Definition: httpnode.hpp:184