NuriaProject Framework  0.1
The NuriaProject Framework
restfulhttpnode.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_RESTFULHTTPNODE_HPP
18 #define NURIA_RESTFULHTTPNODE_HPP
19 
20 #include "httpclient.hpp"
21 #include "httpnode.hpp"
22 
28 #define NURIA_RESTFUL(Path) NURIA_ANNOTATE(org.nuriaproject.network.restful, Path)
29 
35 #define NURIA_RESTFUL_VERBS(Verbs) NURIA_ANNOTATE(org.nuriaproject.network.restful.verbs, int(Verbs))
36 
37 namespace Nuria {
38 
39 namespace Internal { struct RestfulHttpNodeSlotData; }
40 
41 class RestfulHttpNodePrivate;
42 class MetaMethod;
43 class MetaObject;
44 
114 class NURIA_NETWORK_EXPORT RestfulHttpNode : public HttpNode {
115  Q_OBJECT
116 public:
117 
126  explicit RestfulHttpNode (void *object, MetaObject *metaObject, const QString &resourceName,
127  HttpNode *parent = 0);
128 
130  explicit RestfulHttpNode (const QString &resourceName = QString (), HttpNode *parent = 0);
131 
133  ~RestfulHttpNode ();
134 
149  void setRestfulHandler (HttpClient::HttpVerbs verbs, const QString &path,
150  const QStringList &argumentNames, const Callback &callback,
151  bool waitForRequestPostBody = true);
152 
158  void setRestfulHandler (const QString &path, const QStringList &argumentNames,
159  const Callback &callback, bool waitForRequestPostBody = true);
160 
161 protected:
162 
180  virtual QVariant serializeVariant (const QVariant &variant);
181 
187  virtual QVariant convertArgumentToVariant (const QString &argumentData, int targetType);
188 
195  virtual void conversionFailure (const QVariant &variant, HttpClient *client);
196 
205  virtual QByteArray generateResultData (const QVariant &result, HttpClient *client);
206 
208  bool invokePath (const QString &path, const QStringList &parts,
209  int index, HttpClient *client) override;
210 
211 private:
212  friend class RestfulHttpNodePrivate;
213 
214  void registerAnnotatedHandlers ();
215  void registerMetaMethod (MetaMethod &method);
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);
232 
233  RestfulHttpNodePrivate *d_ptr;
234 
235 };
236 
237 }
238 
239 #endif // NURIA_RESTFULHTTPNODE_HPP
The MetaObject class provides access to meta-data of types at run-time.
Definition: metaobject.hpp:560
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 MetaMethod class lets you access methods from registered types.
Definition: metaobject.hpp:136
The HttpClient class represents a connection to a client.
Definition: httpclient.hpp:118