2 This file is part of GNUnet.
3 Copyright (C) 2012-2015 GNUnet e.V.
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.
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.
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.
21 * @author Martin Schanzenbach
22 * @file namestore/plugin_rest_namestore.c
23 * @brief GNUnet Namestore REST plugin
28 #include "gnunet_rest_plugin.h"
29 #include "gnunet_namestore_service.h"
30 #include "gnunet_identity_service.h"
31 #include "gnunet_rest_lib.h"
32 #include "gnunet_jsonapi_lib.h"
33 #include "gnunet_jsonapi_util.h"
34 #include "microhttpd.h"
37 #define GNUNET_REST_API_NS_NAMESTORE "/names"
39 #define GNUNET_REST_API_NS_NAMESTORE_ZKEY "/names/zkey"
41 #define GNUNET_REST_JSONAPI_NAMESTORE_TYPEINFO "record"
43 #define GNUNET_REST_JSONAPI_NAMESTORE_NAME "name"
45 #define GNUNET_REST_JSONAPI_NAMESTORE_REVINFO "revinfo"
47 #define GNUNET_REST_JSONAPI_NAMESTORE_RECORD GNUNET_REST_JSONAPI_NAMESTORE_TYPEINFO
49 #define GNUNET_REST_JSONAPI_NAMESTORE_RECORD_TYPE "record_type"
51 #define GNUNET_REST_JSONAPI_NAMESTORE_VALUE "value"
53 #define GNUNET_REST_JSONAPI_NAMESTORE_PUBLIC "public"
55 #define GNUNET_REST_JSONAPI_NAMESTORE_SHADOW "shadow"
57 #define GNUNET_REST_JSONAPI_NAMESTORE_PKEY "pkey"
59 #define GNUNET_REST_JSONAPI_NAMESTORE_ZKEY "zkey"
61 #define GNUNET_REST_JSONAPI_NAMESTORE_EXPIRATION "expiration"
63 #define GNUNET_REST_JSONAPI_NAMESTORE_EGO "ego"
66 * @brief struct returned by the initialization function of the plugin
70 const struct GNUNET_CONFIGURATION_Handle *cfg;
75 * HTTP methods allows for this plugin
77 static char* allow_methods;
79 const struct GNUNET_CONFIGURATION_Handle *cfg;
86 struct RecordEntry *next;
91 struct RecordEntry *prev;
100 struct RecordEntry *record_head;
105 struct record_entry *record_tail;
108 * JSON response object
110 struct GNUNET_JSONAPI_Document *resp_object;
115 struct GNUNET_REST_RequestHandle *rest_handle;
118 * Handle to GNS service.
120 struct GNUNET_IDENTITY_Handle *identity_handle;
123 * Handle to NAMESTORE
125 struct GNUNET_NAMESTORE_Handle *ns_handle;
128 * Handle to NAMESTORE it
130 struct GNUNET_NAMESTORE_ZoneIterator *list_it;
133 * Private key for the zone
135 struct GNUNET_CRYPTO_EcdsaPrivateKey zone_pkey;
138 * Handle to identity lookup
140 struct GNUNET_IDENTITY_EgoLookup *ego_lookup;
143 * Default Ego operation
145 struct GNUNET_IDENTITY_Operation *get_default;
163 * Name of the record to modify
168 * Value of the record
175 const char* zkey_str;
185 struct GNUNET_GNSRECORD_Data *rd;
190 unsigned int rd_count;
193 * NAMESTORE Operation
195 struct GNUNET_NAMESTORE_QueueEntry *add_qe;
198 * NAMESTORE Operation
200 struct GNUNET_NAMESTORE_QueueEntry *reverse_qe;
203 * Desired timeout for the lookup (default is no timeout).
205 struct GNUNET_TIME_Relative timeout;
208 * ID of a task associated with the resolution process.
210 struct GNUNET_SCHEDULER_Task * timeout_task;
213 * The plugin result processor
215 GNUNET_REST_ResultProcessor proc;
218 * The closure of the result processor
230 const struct GNUNET_CONFIGURATION_Handle *cfg;
241 * Cleanup lookup handle
243 * @param handle Handle to clean up
246 cleanup_handle (struct RequestHandle *handle)
248 struct RecordEntry *record_entry;
249 struct RecordEntry *record_tmp;
252 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
254 if (NULL != handle->resp_object)
255 GNUNET_JSONAPI_document_delete (handle->resp_object);
256 if (NULL != handle->name)
257 GNUNET_free (handle->name);
258 if (NULL != handle->timeout_task)
259 GNUNET_SCHEDULER_cancel (handle->timeout_task);
260 if (NULL != handle->ego_lookup)
261 GNUNET_IDENTITY_ego_lookup_cancel (handle->ego_lookup);
262 if (NULL != handle->get_default)
263 GNUNET_IDENTITY_cancel (handle->get_default);
264 if (NULL != handle->list_it)
265 GNUNET_NAMESTORE_zone_iteration_stop (handle->list_it);
266 if (NULL != handle->add_qe)
267 GNUNET_NAMESTORE_cancel (handle->add_qe);
268 if (NULL != handle->identity_handle)
269 GNUNET_IDENTITY_disconnect (handle->identity_handle);
270 if (NULL != handle->ns_handle)
271 GNUNET_NAMESTORE_disconnect (handle->ns_handle);
272 if (NULL != handle->url)
273 GNUNET_free (handle->url);
274 if (NULL != handle->value)
275 GNUNET_free (handle->value);
276 if (NULL != handle->rd)
278 for (i = 0; i < handle->rd_count; i++)
280 if (NULL != handle->rd[i].data)
281 GNUNET_free ((void*)handle->rd[i].data);
283 GNUNET_free (handle->rd);
285 if (NULL != handle->ego_name)
286 GNUNET_free (handle->ego_name);
287 for (record_entry = handle->record_head;
288 NULL != record_entry;)
290 record_tmp = record_entry;
291 record_entry = record_entry->next;
292 GNUNET_free (record_tmp);
294 GNUNET_free (handle);
299 * Create json representation of a GNSRECORD
301 * @param rd the GNSRECORD_Data
304 gnsrecord_to_json (const struct GNUNET_GNSRECORD_Data *rd)
306 const char *typename;
311 typename = GNUNET_GNSRECORD_number_to_typename (rd->record_type);
312 string_val = GNUNET_GNSRECORD_value_to_string (rd->record_type,
316 if (NULL == string_val)
318 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
319 "Record of type %d malformed, skipping\n",
320 (int) rd->record_type);
323 record_obj = json_object();
324 json_object_set_new (record_obj,
325 GNUNET_REST_JSONAPI_NAMESTORE_RECORD_TYPE,
326 json_string (typename));
327 json_object_set_new (record_obj,
328 GNUNET_REST_JSONAPI_NAMESTORE_VALUE,
329 json_string (string_val));
330 GNUNET_free (string_val);
332 if (GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION & rd->flags)
334 struct GNUNET_TIME_Relative time_rel;
335 time_rel.rel_value_us = rd->expiration_time;
336 exp_str = GNUNET_STRINGS_relative_time_to_string (time_rel, 1);
340 struct GNUNET_TIME_Absolute time_abs;
341 time_abs.abs_value_us = rd->expiration_time;
342 exp_str = GNUNET_STRINGS_absolute_time_to_string (time_abs);
344 json_object_set_new (record_obj, GNUNET_REST_JSONAPI_NAMESTORE_EXPIRATION, json_string (exp_str));
346 json_object_set_new (record_obj, "expired",
347 json_boolean (GNUNET_YES == GNUNET_GNSRECORD_is_expired (rd)));
353 * Task run on error. Generates error response and cleans up.
355 * @param cls the request to generate an error response for
360 struct RequestHandle *handle = cls;
361 struct MHD_Response *resp = GNUNET_REST_create_response (NULL);
363 handle->proc (handle->proc_cls, resp, handle->response_code);
364 cleanup_handle (handle);
369 * Task run on timeout.
371 * @param cls the request to time out
374 do_timeout (void *cls)
376 struct RequestHandle *handle = cls;
378 handle->timeout_task = NULL;
384 cleanup_handle_delayed (void *cls)
386 cleanup_handle (cls);
391 * Iteration over all results finished, build final
394 * @param cls the `struct RequestHandle`
397 namestore_list_finished (void *cls)
399 struct RequestHandle *handle = cls;
401 struct MHD_Response *resp;
403 handle->list_it = NULL;
405 GNUNET_JSONAPI_document_serialize (handle->resp_object,
411 resp = GNUNET_REST_create_response (result);
412 handle->proc (handle->proc_cls,
415 GNUNET_free_non_null (result);
416 GNUNET_SCHEDULER_add_now (&cleanup_handle_delayed,
423 * Create a response with requested records
425 * @param handle the RequestHandle
428 namestore_list_response (void *cls,
429 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
432 const struct GNUNET_GNSRECORD_Data *rd)
434 struct RequestHandle *handle = cls;
435 struct GNUNET_JSONAPI_Resource *json_resource;
436 json_t *result_array;
440 if (NULL == handle->resp_object)
441 handle->resp_object = GNUNET_JSONAPI_document_new ();
443 if ( (NULL != handle->name) &&
444 (0 != strcmp (handle->name, rname)) )
446 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
447 "%s does not match %s\n", rname, handle->name);
448 GNUNET_NAMESTORE_zone_iterator_next (handle->list_it);
452 result_array = json_array ();
453 for (i=0; i<rd_len; i++)
455 if ( (GNUNET_GNSRECORD_TYPE_NICK == rd[i].record_type) &&
456 (0 != strcmp (rname, "+")) )
459 if ( (rd[i].record_type != handle->type) &&
460 (GNUNET_GNSRECORD_TYPE_ANY != handle->type) )
462 record_obj = gnsrecord_to_json (&(rd[i]));
463 json_array_append (result_array, record_obj);
464 json_decref (record_obj);
467 if (0 < json_array_size(result_array))
469 json_resource = GNUNET_JSONAPI_resource_new (GNUNET_REST_JSONAPI_NAMESTORE_TYPEINFO,
471 GNUNET_JSONAPI_resource_add_attr (json_resource,
472 GNUNET_REST_JSONAPI_NAMESTORE_RECORD,
474 GNUNET_JSONAPI_document_resource_add (handle->resp_object, json_resource);
477 json_decref (result_array);
478 GNUNET_NAMESTORE_zone_iterator_next (handle->list_it);
483 create_finished (void *cls, int32_t success, const char *emsg)
485 struct RequestHandle *handle = cls;
486 struct MHD_Response *resp;
488 handle->add_qe = NULL;
489 if (GNUNET_YES != success)
491 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
492 "Error storing records%s%s\n",
493 (NULL == emsg) ? "" : ": ",
494 (NULL == emsg) ? "" : emsg);
495 GNUNET_SCHEDULER_add_now (&cleanup_handle_delayed, handle);
498 resp = GNUNET_REST_create_response (NULL);
499 handle->proc (handle->proc_cls, resp, MHD_HTTP_NO_CONTENT);
500 GNUNET_SCHEDULER_add_now (&cleanup_handle_delayed, handle);
505 * We're storing a new record; this requires
506 * that no record already exists
508 * @param cls closure, unused
509 * @param zone_key private key of the zone
510 * @param rec_name name that is being mapped (at most 255 characters long)
511 * @param rd_count number of entries in @a rd array
512 * @param rd array of records with data to store
515 create_new_record_cont (void *cls,
516 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
517 const char *rec_name,
518 unsigned int rd_count,
519 const struct GNUNET_GNSRECORD_Data *rd)
521 struct RequestHandle *handle = cls;
523 handle->add_qe = NULL;
524 if (0 != strcmp (rec_name, handle->name))
533 handle->proc (handle->proc_cls,
534 GNUNET_REST_create_response (NULL),
536 GNUNET_SCHEDULER_add_now (&cleanup_handle_delayed, handle);
540 GNUNET_assert (NULL != handle->name);
541 handle->add_qe = GNUNET_NAMESTORE_records_store (handle->ns_handle,
552 del_finished (void *cls,
556 struct RequestHandle *handle = cls;
558 handle->add_qe = NULL;
559 if (GNUNET_NO == success)
561 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
562 _("Deleting record failed, record does not exist%s%s\n"),
563 (NULL != emsg) ? ": " : "",
564 (NULL != emsg) ? emsg : "");
565 GNUNET_SCHEDULER_add_now (&do_error, handle); //do_not_found TODO
568 if (GNUNET_SYSERR == success)
570 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
571 _("Deleting record failed%s%s\n"),
572 (NULL != emsg) ? ": " : "",
573 (NULL != emsg) ? emsg : "");
574 GNUNET_SCHEDULER_add_now (&do_error, handle);
577 handle->proc (handle->proc_cls,
578 GNUNET_REST_create_response (NULL),
579 MHD_HTTP_NO_CONTENT);
580 GNUNET_SCHEDULER_add_now (&cleanup_handle_delayed, handle);
586 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
588 unsigned int rd_count,
589 const struct GNUNET_GNSRECORD_Data *rd)
591 struct RequestHandle *handle = cls;
593 handle->add_qe = NULL;
596 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
597 _("There are no records under label `%s' that could be deleted.\n"),
603 handle->add_qe = GNUNET_NAMESTORE_records_store (handle->ns_handle,
613 namestore_delete_cont (struct GNUNET_REST_RequestHandle *con,
617 struct RequestHandle *handle = cls;
619 if (NULL == handle->name)
621 GNUNET_SCHEDULER_add_now (&do_error, handle);
625 handle->add_qe = GNUNET_NAMESTORE_records_lookup (handle->ns_handle,
636 json_to_gnsrecord (const json_t *records_json,
637 struct GNUNET_GNSRECORD_Data **rd,
638 unsigned int *rd_count)
640 struct GNUNET_TIME_Relative etime_rel;
641 struct GNUNET_TIME_Absolute etime_abs;
645 const char *typestring;
646 const char *expirationstring;
653 *rd_count = json_array_size (records_json);
654 *rd = GNUNET_malloc (sizeof (struct GNUNET_GNSRECORD_Data) * *rd_count);
655 for (i = 0; i < *rd_count; i++)
657 memset (&((*rd)[i]), 0, sizeof (struct GNUNET_GNSRECORD_Data));
658 record_json = json_array_get (records_json, i);
659 type_json = json_object_get (record_json,
660 GNUNET_REST_JSONAPI_NAMESTORE_RECORD_TYPE);
661 if (!json_is_string (type_json))
663 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
664 "Type property is no string\n");
665 return GNUNET_SYSERR;
667 typestring = json_string_value (type_json);
668 (*rd)[i].record_type = GNUNET_GNSRECORD_typename_to_number (typestring);
669 if (UINT32_MAX == (*rd)[i].record_type)
671 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Unsupported type `%s'\n"),
672 json_string_value (type_json));
673 return GNUNET_SYSERR;
675 value_json = json_object_get (record_json,
676 GNUNET_REST_JSONAPI_NAMESTORE_VALUE);
677 if (!json_is_string (value_json))
679 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
680 "Value property is no string\n");
681 return GNUNET_SYSERR;
683 value = GNUNET_strdup (json_string_value (value_json));
684 if (GNUNET_OK != GNUNET_GNSRECORD_string_to_value ((*rd)[i].record_type,
689 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Value `%s' invalid for record type `%s'\n"),
691 return GNUNET_SYSERR;
693 (*rd)[i].data = rdata;
694 (*rd)[i].data_size = rdata_size;
696 * if (1 == handle->is_shadow)
697 rde->flags |= GNUNET_GNSRECORD_RF_SHADOW_RECORD;
698 if (1 != handle->is_public)
699 rde->flags |= GNUNET_GNSRECORD_RF_PRIVATE;
701 exp_json = json_object_get (record_json,
702 GNUNET_REST_JSONAPI_NAMESTORE_EXPIRATION);
703 if (!json_is_string (exp_json))
705 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
706 "Expiration property is no string\n");
707 return GNUNET_SYSERR;
709 expirationstring = json_string_value (exp_json);
710 if (0 == strcmp (expirationstring, "never"))
712 (*rd)[i].expiration_time = GNUNET_TIME_UNIT_FOREVER_ABS.abs_value_us;
714 else if (GNUNET_OK ==
715 GNUNET_STRINGS_fancy_time_to_relative (expirationstring,
718 (*rd)[i].expiration_time = etime_rel.rel_value_us;
719 (*rd)[i].flags |= GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION;
721 else if (GNUNET_OK ==
722 GNUNET_STRINGS_fancy_time_to_absolute (expirationstring,
725 (*rd)[i].expiration_time = etime_abs.abs_value_us;
729 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Value `%s' invalid for record type `%s'\n"),
731 return GNUNET_SYSERR;
739 namestore_create_cont (struct GNUNET_REST_RequestHandle *con,
743 struct RequestHandle *handle = cls;
744 struct MHD_Response *resp;
745 struct GNUNET_JSONAPI_Document *json_obj;
746 struct GNUNET_JSONAPI_Resource *json_res;
747 json_t *records_json;
750 char term_data[handle->rest_handle->data_size+1];
751 struct GNUNET_JSON_Specification docspec[] = {
752 GNUNET_JSON_spec_jsonapi_document (&json_obj),
753 GNUNET_JSON_spec_end()
756 if (strlen (GNUNET_REST_API_NS_NAMESTORE) != strlen (handle->url))
758 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
759 "Cannot create under %s\n", handle->url);
760 GNUNET_SCHEDULER_add_now (&do_error, handle);
763 if (0 >= handle->rest_handle->data_size)
765 GNUNET_SCHEDULER_add_now (&do_error, handle);
768 term_data[handle->rest_handle->data_size] = '\0';
769 GNUNET_memcpy (term_data,
770 handle->rest_handle->data,
771 handle->rest_handle->data_size);
772 data_js = json_loads (term_data,
775 GNUNET_assert (GNUNET_OK ==
776 GNUNET_JSON_parse (data_js, docspec,
778 json_decref (data_js);
779 if (NULL == json_obj)
781 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
782 "Unable to parse JSONAPI Object from %s\n",
784 GNUNET_SCHEDULER_add_now (&do_error, handle);
787 if (1 != GNUNET_JSONAPI_document_resource_count (json_obj))
789 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
790 "Cannot create more than 1 resource! (Got %d)\n",
791 GNUNET_JSONAPI_document_resource_count (json_obj));
792 GNUNET_JSONAPI_document_delete (json_obj);
793 GNUNET_SCHEDULER_add_now (&do_error, handle);
796 json_res = GNUNET_JSONAPI_document_get_resource (json_obj, 0);
797 if (GNUNET_NO == GNUNET_JSONAPI_resource_check_type (json_res,
798 GNUNET_REST_JSONAPI_NAMESTORE_RECORD))
800 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
801 "Unsupported JSON data type\n");
802 GNUNET_JSONAPI_document_delete (json_obj);
803 resp = GNUNET_REST_create_response (NULL);
804 handle->proc (handle->proc_cls, resp, MHD_HTTP_CONFLICT);
805 cleanup_handle (handle);
808 handle->name = GNUNET_strdup (GNUNET_JSONAPI_resource_get_id (json_res));
809 records_json = GNUNET_JSONAPI_resource_read_attr (json_res,
810 GNUNET_REST_JSONAPI_NAMESTORE_RECORD);
811 if (NULL == records_json)
813 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
814 "No records given\n");
815 GNUNET_JSONAPI_document_delete (json_obj);
816 GNUNET_SCHEDULER_add_now (&do_error, handle);
819 if (GNUNET_SYSERR == json_to_gnsrecord (records_json, &handle->rd, &handle->rd_count))
821 GNUNET_JSONAPI_document_delete (json_obj);
822 GNUNET_SCHEDULER_add_now (&do_error, handle);
825 GNUNET_JSONAPI_document_delete (json_obj);
827 handle->add_qe = GNUNET_NAMESTORE_records_lookup (handle->ns_handle,
832 &create_new_record_cont,
838 namestore_zkey_response (void *cls,
839 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
841 unsigned int rd_count,
842 const struct GNUNET_GNSRECORD_Data *rd)
844 struct RequestHandle *handle = cls;
845 struct MHD_Response *resp;
846 struct GNUNET_JSONAPI_Document *json_obj;
847 struct GNUNET_JSONAPI_Resource *json_res;
851 handle->reverse_qe = NULL;
852 json_obj = GNUNET_JSONAPI_document_new ();
855 name_json = json_string (label);
856 json_res = GNUNET_JSONAPI_resource_new (GNUNET_REST_JSONAPI_NAMESTORE_REVINFO,
858 GNUNET_JSONAPI_resource_add_attr (json_res,
859 GNUNET_REST_JSONAPI_NAMESTORE_NAME,
861 GNUNET_JSONAPI_document_resource_add (json_obj, json_res);
862 json_decref (name_json);
865 if (GNUNET_SYSERR == GNUNET_JSONAPI_document_serialize (json_obj, &result))
867 GNUNET_JSONAPI_document_delete (json_obj);
868 GNUNET_SCHEDULER_add_now (&do_error, handle);
871 resp = GNUNET_REST_create_response (result);
872 handle->proc (handle->proc_cls, resp, MHD_HTTP_OK);
873 GNUNET_JSONAPI_document_delete (json_obj);
874 GNUNET_free (result);
875 GNUNET_SCHEDULER_add_now (&cleanup_handle_delayed, handle);
880 namestore_zkey_cont (struct GNUNET_REST_RequestHandle *con,
884 struct RequestHandle *handle = cls;
885 struct GNUNET_HashCode key;
886 struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
888 GNUNET_CRYPTO_hash (GNUNET_REST_JSONAPI_NAMESTORE_ZKEY,
889 strlen (GNUNET_REST_JSONAPI_NAMESTORE_ZKEY),
892 GNUNET_CONTAINER_multihashmap_contains (handle->rest_handle->url_param_map,
895 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
896 "No zkey given %s\n", handle->url);
897 GNUNET_SCHEDULER_add_now (&do_error, handle);
900 handle->zkey_str = GNUNET_CONTAINER_multihashmap_get (handle->rest_handle->url_param_map,
903 GNUNET_CRYPTO_ecdsa_public_key_from_string (handle->zkey_str,
904 strlen (handle->zkey_str),
907 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
908 "Zkey invalid %s\n", handle->zkey_str);
909 GNUNET_SCHEDULER_add_now (&do_error, handle);
912 handle->reverse_qe = GNUNET_NAMESTORE_zone_to_name (handle->ns_handle,
917 &namestore_zkey_response,
923 namestore_info_cont (struct GNUNET_REST_RequestHandle *con,
927 struct RequestHandle *handle = cls;
929 handle->list_it = GNUNET_NAMESTORE_zone_iteration_start (handle->ns_handle,
933 &namestore_list_response,
935 &namestore_list_finished,
941 get_name_from_url (const char* url)
943 if (strlen (url) <= strlen (GNUNET_REST_API_NS_NAMESTORE))
945 return (char*)url + strlen (GNUNET_REST_API_NS_NAMESTORE) + 1;
949 * Respond to OPTIONS request
951 * @param con_handle the connection handle
953 * @param cls the RequestHandle
956 options_cont (struct GNUNET_REST_RequestHandle *con_handle,
960 struct MHD_Response *resp;
961 struct RequestHandle *handle = cls;
963 //For now, independent of path return all options
964 resp = GNUNET_REST_create_response (NULL);
965 MHD_add_response_header (resp,
966 "Access-Control-Allow-Methods",
968 handle->proc (handle->proc_cls, resp, MHD_HTTP_OK);
969 cleanup_handle (handle);
974 * Callback invoked from identity service with ego information.
975 * An @a ego of NULL means the ego was not found.
977 * @param cls closure with the configuration
978 * @param ego an ego known to identity service, or NULL
981 identity_cb (void *cls,
982 const struct GNUNET_IDENTITY_Ego *ego)
984 struct RequestHandle *handle = cls;
985 struct MHD_Response *resp;
986 struct GNUNET_REST_RequestHandlerError err;
987 static const struct GNUNET_REST_RequestHandler handlers[] = {
988 {MHD_HTTP_METHOD_GET, GNUNET_REST_API_NS_NAMESTORE_ZKEY, &namestore_zkey_cont}, //reverse
989 {MHD_HTTP_METHOD_GET, GNUNET_REST_API_NS_NAMESTORE, &namestore_info_cont}, //list
990 {MHD_HTTP_METHOD_POST, GNUNET_REST_API_NS_NAMESTORE, &namestore_create_cont}, //create
991 // {MHD_HTTP_METHOD_PUT, GNUNET_REST_API_NS_NAMESTORE, &namestore_edit_cont}, //update. TODO this shoul be PATCH
992 {MHD_HTTP_METHOD_DELETE, GNUNET_REST_API_NS_NAMESTORE, &namestore_delete_cont}, //delete
993 {MHD_HTTP_METHOD_OPTIONS, GNUNET_REST_API_NS_NAMESTORE, &options_cont},
994 GNUNET_REST_HANDLER_END
997 handle->ego_lookup = NULL;
1000 if (NULL != handle->ego_name)
1002 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1003 _("Ego `%s' not known to identity service\n"),
1006 resp = GNUNET_REST_create_response (NULL);
1007 handle->proc (handle->proc_cls, resp, MHD_HTTP_NOT_FOUND);
1008 cleanup_handle (handle);
1011 handle->zone_pkey = *GNUNET_IDENTITY_ego_get_private_key (ego);
1012 handle->ns_handle = GNUNET_NAMESTORE_connect (cfg);
1013 if (NULL == handle->ns_handle)
1015 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1016 _("Failed to connect to namestore\n"));
1017 GNUNET_SCHEDULER_add_now (&do_error, handle);
1022 GNUNET_JSONAPI_handle_request (handle->rest_handle,
1027 handle->response_code = err.error_code;
1028 GNUNET_SCHEDULER_add_now (&do_error,
1035 default_ego_cb (void *cls,
1036 struct GNUNET_IDENTITY_Ego *ego,
1040 struct RequestHandle *handle = cls;
1041 struct MHD_Response *resp;
1042 handle->get_default = NULL;
1045 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1046 _("No default ego configured in identity service\n"));
1047 resp = GNUNET_REST_create_response (NULL);
1048 handle->proc (handle->proc_cls, resp, MHD_HTTP_NOT_FOUND);
1049 cleanup_handle (handle);
1054 identity_cb (cls, ego);
1059 id_connect_cb (void *cls,
1060 struct GNUNET_IDENTITY_Ego *ego,
1064 struct RequestHandle *handle = cls;
1067 handle->get_default = GNUNET_IDENTITY_get (handle->identity_handle,
1069 &default_ego_cb, handle);
1075 * Function processing the REST call
1077 * @param method HTTP method
1078 * @param url URL of the HTTP request
1079 * @param data body of the HTTP request (optional)
1080 * @param data_size length of the body
1081 * @param proc callback function for the result
1082 * @param proc_cls closure for callback function
1083 * @return #GNUNET_OK if request accepted
1086 rest_identity_process_request(struct GNUNET_REST_RequestHandle *rest_handle,
1087 GNUNET_REST_ResultProcessor proc,
1090 struct RequestHandle *handle = GNUNET_new (struct RequestHandle);
1091 struct MHD_Response *resp;
1092 struct GNUNET_HashCode key;
1097 handle->timeout = GNUNET_TIME_UNIT_FOREVER_REL;
1098 handle->proc_cls = proc_cls;
1099 handle->proc = proc;
1100 handle->rest_handle = rest_handle;
1101 handle->url = GNUNET_strdup (rest_handle->url);
1102 if (handle->url[strlen (handle->url)-1] == '/')
1103 handle->url[strlen (handle->url)-1] = '\0';
1104 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1108 GNUNET_CRYPTO_hash (GNUNET_REST_JSONAPI_NAMESTORE_EGO,
1109 strlen (GNUNET_REST_JSONAPI_NAMESTORE_EGO),
1112 GNUNET_CONTAINER_multihashmap_contains (handle->rest_handle->url_param_map,
1115 ego = GNUNET_CONTAINER_multihashmap_get (handle->rest_handle->url_param_map,
1119 handle->type = GNUNET_GNSRECORD_TYPE_ANY;
1120 GNUNET_CRYPTO_hash (GNUNET_REST_JSONAPI_NAMESTORE_RECORD_TYPE,
1121 strlen (GNUNET_REST_JSONAPI_NAMESTORE_RECORD_TYPE),
1124 GNUNET_CONTAINER_multihashmap_contains (handle->rest_handle->url_param_map,
1127 type = GNUNET_CONTAINER_multihashmap_get (handle->rest_handle->url_param_map,
1130 handle->type = GNUNET_GNSRECORD_typename_to_number (type);
1132 name = get_name_from_url (handle->url);
1134 handle->ego_name = GNUNET_strdup (ego);
1136 handle->name = GNUNET_strdup (name);
1137 if (NULL == handle->ego_name)
1139 handle->identity_handle = GNUNET_IDENTITY_connect (handle->cfg, &id_connect_cb, handle);
1140 if (NULL == handle->identity_handle)
1142 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Cannot connect to identity service\n"));
1143 resp = GNUNET_REST_create_response (NULL);
1144 handle->proc (handle->proc_cls, resp, MHD_HTTP_NOT_FOUND);
1145 cleanup_handle (handle);
1149 handle->ego_lookup = GNUNET_IDENTITY_ego_lookup (cfg,
1153 handle->timeout_task = GNUNET_SCHEDULER_add_delayed (handle->timeout,
1159 * Entry point for the plugin.
1161 * @param cls Config info
1162 * @return NULL on error, otherwise the plugin context
1165 libgnunet_plugin_rest_namestore_init (void *cls)
1167 static struct Plugin plugin;
1169 struct GNUNET_REST_Plugin *api;
1171 if (NULL != plugin.cfg)
1172 return NULL; /* can only initialize once! */
1173 memset (&plugin, 0, sizeof (struct Plugin));
1175 api = GNUNET_new (struct GNUNET_REST_Plugin);
1177 api->name = GNUNET_REST_API_NS_NAMESTORE;
1178 api->process_request = &rest_identity_process_request;
1179 GNUNET_asprintf (&allow_methods,
1180 "%s, %s, %s, %s, %s",
1181 MHD_HTTP_METHOD_GET,
1182 MHD_HTTP_METHOD_POST,
1183 MHD_HTTP_METHOD_PUT,
1184 MHD_HTTP_METHOD_DELETE,
1185 MHD_HTTP_METHOD_OPTIONS);
1186 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1187 _("Namestore REST API initialized\n"));
1193 * Exit point from the plugin.
1195 * @param cls the plugin context (as returned by "init")
1196 * @return always NULL
1199 libgnunet_plugin_rest_namestore_done (void *cls)
1201 struct GNUNET_REST_Plugin *api = cls;
1202 struct Plugin *plugin = api->cls;
1206 GNUNET_free_non_null (allow_methods);
1207 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1208 "Namestore REST plugin is finished\n");
1212 /* end of plugin_rest_namestore.c */