NuriaProject Framework  0.1
The NuriaProject Framework
httpnode.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_HTTPNODE_HPP
18 #define NURIA_HTTPNODE_HPP
19 
20 #include "network_global.hpp"
21 #include "httpclient.hpp"
22 #include <nuria/callback.hpp>
23 #include <QSharedData>
24 #include <QObject>
25 #include <QDir>
26 
27 namespace Nuria {
28 
29 class HttpNodePrivate;
30 class SlotInfoPrivate;
31 class HttpServer;
32 class HttpNode;
33 
38 class NURIA_NETWORK_EXPORT SlotInfo {
39 public:
40 
42  SlotInfo (const Callback &callback = Callback ());
43 
45  SlotInfo (const SlotInfo &other);
46 
48  SlotInfo &operator= (const SlotInfo &other);
49 
51  ~SlotInfo ();
52 
54  bool isValid () const;
55 
57  Callback callback () const;
58 
69  bool streamPostBody () const;
70 
72  void setStreamPostBody (bool value);
73 
78  HttpClient::HttpVerbs allowedVerbs () const;
79 
81  void setAllowedVerbs (HttpClient::HttpVerbs verbs);
82 
87  qint64 maxBodyLength () const;
88 
90  void setMaxBodyLength (qint64 length);
91 
97  bool forceEncrypted () const;
98 
100  void setForceEncrypted (bool force);
101 
102 private:
103  friend class HttpNode;
104 
105  //
106  QSharedDataPointer< SlotInfoPrivate > d;
107 
108 };
109 
111 typedef QList< HttpNode * > HttpNodeList;
112 
176 class NURIA_NETWORK_EXPORT HttpNode : public QObject {
177  Q_OBJECT
178 public:
179 
185 
187  NoStaticResources = 0,
188 
194  UseStaticResources = 1,
195 
200  UseNestedStaticResources = 2
201 
202  };
203 
209  HttpNode (const QString &resourceName, HttpNode *parent = 0);
210 
214  HttpNode (QObject *parent = 0);
215 
217  ~HttpNode ();
218 
222  bool isChild () const;
223 
228  HttpNode *parentNode () const;
229 
248  SlotInfo connectSlot (const QString &name, const Callback &callback);
249 
268  SlotInfo connectSlot (const QString &name, QObject *receiver, const char *slot);
269 
274  bool disconnectSlot (const QString &name);
275 
283  bool addNode (HttpNode *node);
284 
288  const QString &resourceName () const;
289 
293  const QDir &staticResourceDir () const;
294 
298  StaticResourcesMode staticResourceMode () const;
299 
305  bool setResourceName (const QString &name);
306 
316  void setStaticResourceDir (QDir path);
317 
322  void setStaticResourceMode (StaticResourcesMode mode);
323 
327  bool hasNode (const QString &name);
328 
332  bool hasSlot (const QString &name);
333 
338  HttpNode *findNode (const QString &name) const;
339 
340 protected:
341 
376  virtual bool invokePath (const QString &path, const QStringList &parts,
377  int index, HttpClient *client);
378 
404  virtual bool allowAccessToClient (const QString &path, const QStringList &parts,
405  int index, HttpClient *client);
406 
415  virtual bool callSlotByName (const QString &name, HttpClient *client);
416 
425  bool sendStaticResource (const QString &name, HttpClient *client);
426 
428  bool sendStaticResource (const QStringList &path, int indexInPath,
429  HttpClient *client);
430 
431 private:
432  friend class HttpServer;
433  friend class HttpClient;
434 
439  static bool callSlot (const SlotInfo &info, HttpClient *client);
440 
441  //
442  HttpNodePrivate *d_ptr;
443 
444 };
445 }
446 
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