compact formatting of json
[src/app-framework-binder.git] / src / afb-hreq.c
index b1f300d..ab174e2 100644 (file)
 
 static char empty_string[] = "";
 
-static const char key_for_uuid[] = "x-afb-uuid";
-static const char old_key_for_uuid[] = "uuid";
+static const char long_key_for_uuid[] = "x-afb-uuid";
+static const char short_key_for_uuid[] = "uuid";
 
-static const char key_for_token[] = "x-afb-token";
-static const char old_key_for_token[] = "token";
+static const char long_key_for_token[] = "x-afb-token";
+static const char short_key_for_token[] = "token";
+
+static const char long_key_for_reqid[] = "x-afb-reqid";
+static const char short_key_for_reqid[] = "reqid";
 
 static char *cookie_name = NULL;
 static char *cookie_setter = NULL;
@@ -82,7 +85,9 @@ static const struct afb_req_itf afb_hreq_itf = {
        .context_get = (void*)afb_context_get,
        .context_set = (void*)afb_context_set,
        .addref = (void*)afb_hreq_addref,
-       .unref = (void*)afb_hreq_unref
+       .unref = (void*)afb_hreq_unref,
+       .session_close = (void*)afb_context_close,
+       .session_set_LOA = (void*)afb_context_change_loa
 };
 
 static struct hreq_data *get_data(struct afb_hreq *hreq, const char *key, int create)
@@ -606,6 +611,7 @@ struct afb_req afb_hreq_to_req(struct afb_hreq *hreq)
 
 static struct afb_arg req_get(struct afb_hreq *hreq, const char *name)
 {
+       const char *value;
        struct hreq_data *hdat = get_data(hreq, name, 0);
        if (hdat)
                return (struct afb_arg){
@@ -613,10 +619,11 @@ static struct afb_arg req_get(struct afb_hreq *hreq, const char *name)
                        .value = hdat->value,
                        .path = hdat->path
                };
-               
+
+       value = MHD_lookup_connection_value(hreq->connection, MHD_GET_ARGUMENT_KIND, name);
        return (struct afb_arg){
-               .name = name,
-               .value = MHD_lookup_connection_value(hreq->connection, MHD_GET_ARGUMENT_KIND, name),
+               .name = value == NULL ? NULL : name,
+               .value = value,
                .path = NULL
        };
 }
@@ -670,21 +677,28 @@ static void req_send(struct afb_hreq *hreq, const char *buffer, size_t size)
 
 static ssize_t send_json_cb(json_object *obj, uint64_t pos, char *buf, size_t max)
 {
-       ssize_t len = stpncpy(buf, json_object_to_json_string(obj)+pos, max) - buf;
+       ssize_t len = stpncpy(buf, json_object_to_json_string_ext(obj, JSON_C_TO_STRING_PLAIN)+pos, max) - buf;
        return len ? : (ssize_t)MHD_CONTENT_READER_END_OF_STREAM;
 }
 
 static void req_reply(struct afb_hreq *hreq, unsigned retcode, const char *status, const char *info, json_object *resp)
 {
-       struct json_object *reply;
-       const char *token, *uuid;
+       struct json_object *reply, *request;
+       const char *token, *uuid, *reqid;
        struct MHD_Response *response;
 
        token = afb_context_sent_token(&hreq->context);
        uuid = afb_context_sent_uuid(&hreq->context);
 
        reply = afb_msg_json_reply(status, info, resp, token, uuid);
-       response = MHD_create_response_from_callback((uint64_t)strlen(json_object_to_json_string(reply)), SIZE_RESPONSE_BUFFER, (void*)send_json_cb, reply, (void*)json_object_put);
+
+       reqid = afb_hreq_get_argument(hreq, long_key_for_reqid);
+       if (reqid == NULL)
+               reqid = afb_hreq_get_argument(hreq, short_key_for_reqid);
+       if (reqid != NULL && json_object_object_get_ex(reply, "request", &request))
+               json_object_object_add (request, short_key_for_reqid, json_object_new_string(reqid));
+
+       response = MHD_create_response_from_callback((uint64_t)strlen(json_object_to_json_string_ext(reply, JSON_C_TO_STRING_PLAIN)), SIZE_RESPONSE_BUFFER, (void*)send_json_cb, reply, (void*)json_object_put);
        afb_hreq_reply(hreq, retcode, response, NULL);
 }
 
@@ -706,19 +720,19 @@ int afb_hreq_init_context(struct afb_hreq *hreq)
        if (hreq->context.session != NULL)
                return 0;
 
-       uuid = afb_hreq_get_header(hreq, key_for_uuid);
+       uuid = afb_hreq_get_header(hreq, long_key_for_uuid);
        if (uuid == NULL)
-               uuid = afb_hreq_get_argument(hreq, key_for_uuid);
+               uuid = afb_hreq_get_argument(hreq, long_key_for_uuid);
        if (uuid == NULL)
                uuid = afb_hreq_get_cookie(hreq, cookie_name);
        if (uuid == NULL)
-               uuid = afb_hreq_get_argument(hreq, old_key_for_uuid);
+               uuid = afb_hreq_get_argument(hreq, short_key_for_uuid);
 
-       token = afb_hreq_get_header(hreq, key_for_token);
+       token = afb_hreq_get_header(hreq, long_key_for_token);
        if (token == NULL)
-               token = afb_hreq_get_argument(hreq, key_for_token);
+               token = afb_hreq_get_argument(hreq, long_key_for_token);
        if (token == NULL)
-               token = afb_hreq_get_argument(hreq, old_key_for_token);
+               token = afb_hreq_get_argument(hreq, short_key_for_token);
 
        return afb_context_connect(&hreq->context, uuid, token);
 }
@@ -733,7 +747,7 @@ int afb_hreq_init_cookie(int port, const char *path, int maxage)
        cookie_setter = NULL;
 
        path = path ? : "/";
-       rc = asprintf(&cookie_name, "%s-%d", key_for_uuid, port);
+       rc = asprintf(&cookie_name, "%s-%d", long_key_for_uuid, port);
        if (rc < 0)
                return 0;
        rc = asprintf(&cookie_setter, "%s=%%s; Path=%s; Max-Age=%d; HttpOnly",