social: put the sock in the right cupboard
[oweals/gnunet.git] / src / rest / rest.c
1 /*
2       This file is part of GNUnet
3       Copyright (C) 2010-2015 GNUnet e.V.
4
5       GNUnet is free software; you can redistribute it and/or modify
6       it under the terms of the GNU General Public License as published
7       by the Free Software Foundation; either version 3, or (at your
8       option) any later version.
9
10       GNUnet is distributed in the hope that it will be useful, but
11       WITHOUT ANY WARRANTY; without even the implied warranty of
12       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13       General Public License for more details.
14
15       You should have received a copy of the GNU General Public License
16       along with GNUnet; see the file COPYING.  If not, write to the
17       Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18       Boston, MA 02110-1301, USA.
19  */
20
21 /**
22  * @file rest/rest.c
23  * @brief helper library to create JSON REST Objects and handle REST
24  * responses/requests.
25  * @author Martin Schanzenbach
26  */
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_rest_lib.h"
30 #include "microhttpd.h"
31 #include <jansson.h>
32
33 /**
34  * REST Utilities
35  */
36
37   /**
38    * Check if namespace is in URL.
39    *
40    * @param url URL to check
41    * @param namespace namespace to check against
42    * @retun GNUNET_YES if namespace matches
43    */
44 int
45 GNUNET_REST_namespace_match (const char *url, const char *namespace)
46 {
47   return 0 == strncmp (namespace, url, strlen (namespace));
48 }
49
50 /**
51  * Create MHD response
52  *
53  * @param data result
54  * @retun MHD response
55  */
56 struct MHD_Response*
57 GNUNET_REST_create_response (const char *data)
58 {
59   struct MHD_Response *resp;
60   size_t len;
61
62   if (NULL == data)
63   {
64     len = 0;
65     data = "";
66   }
67   else
68     len = strlen (data);
69   resp = MHD_create_response_from_buffer (len,
70                                           (void*)data,
71                                           MHD_RESPMEM_MUST_COPY);
72   return resp;
73
74 }
75
76 int
77 GNUNET_REST_handle_request (struct GNUNET_REST_RequestHandle *conn,
78                             const struct GNUNET_REST_RequestHandler *handlers,
79                             struct GNUNET_REST_RequestHandlerError *err,
80                             void *cls)
81 {
82   int count;
83   int i;
84   char *url;
85
86   count = 0;
87   while (NULL != handlers[count].method)
88     count++;
89
90   GNUNET_asprintf (&url, "%s", conn->url);
91   if (url[strlen (url)-1] == '/')
92     url[strlen (url)-1] = '\0';
93   for (i = 0; i < count; i++)
94   {
95     if (0 != strcasecmp (conn->method, handlers[i].method))
96       continue;
97     if (strlen (url) < strlen (handlers[i].namespace))
98       continue;
99     if (GNUNET_NO == GNUNET_REST_namespace_match (url, handlers[i].namespace))
100       continue;
101     //Match
102     handlers[i].proc (conn, (const char*)url, cls);
103     GNUNET_free (url);
104     return GNUNET_YES;
105   }
106   GNUNET_free (url);
107   err->error_code = MHD_HTTP_BAD_REQUEST;
108   return GNUNET_NO;
109 }
110
111 /* end of rest.c */