aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2018-06-22 18:20:35 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2018-06-22 18:20:35 +0200
commit8ca7b69f3e3145f4c08bdbd278f200f6f8868d74 (patch)
tree3ecafd36db444c2141dd1329e0922336a5843caf
parentb28c89df26160c56b9a99139c3153953868d36fc (diff)
afb-api-v3: Refactor verb description
Change-Id: Iaa1719ee2891d470f8229c6f1b98dd34265593a6 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r--src/afb-api-v3.c51
1 files changed, 34 insertions, 17 deletions
diff --git a/src/afb-api-v3.c b/src/afb-api-v3.c
index 39f627a9..5134c96f 100644
--- a/src/afb-api-v3.c
+++ b/src/afb-api-v3.c
@@ -120,11 +120,34 @@ void afb_api_v3_process_call(struct afb_api_v3 *api, struct afb_xreq *xreq)
afb_xreq_reply_unknown_verb(xreq);
}
+static struct json_object *describe_verb_v3(const struct afb_verb_v3 *verb)
+{
+ struct json_object *f, *a, *g;
+
+ f = json_object_new_object();
+
+ g = json_object_new_object();
+ json_object_object_add(f, "get", g);
+
+ a = afb_auth_json_v2(verb->auth, verb->session);
+ if (a)
+ json_object_object_add(g, "x-permissions", a);
+
+ a = json_object_new_object();
+ json_object_object_add(g, "responses", a);
+ f = json_object_new_object();
+ json_object_object_add(a, "200", f);
+ json_object_object_add(f, "description", json_object_new_string(verb->info?:verb->verb));
+
+ return f;
+}
+
struct json_object *afb_api_v3_make_description_openAPIv3(struct afb_api_v3 *api, const char *apiname)
{
char buffer[256];
- struct afb_verb_v3 **iter, **end, *verb;
- struct json_object *r, *f, *a, *i, *p, *g;
+ struct afb_verb_v3 **iter, **end;
+ const struct afb_verb_v3 *verb;
+ struct json_object *r, *i, *p;
r = json_object_new_object();
json_object_object_add(r, "openapi", json_object_new_string("3.0.0"));
@@ -143,22 +166,16 @@ struct json_object *afb_api_v3_make_description_openAPIv3(struct afb_api_v3 *api
verb = *iter++;
buffer[0] = '/';
strncpy(buffer + 1, verb->verb, sizeof buffer - 1);
- buffer[sizeof buffer - 1] = 0;
- f = json_object_new_object();
- json_object_object_add(p, buffer, f);
- g = json_object_new_object();
- json_object_object_add(f, "get", g);
-
- a = afb_auth_json_v2(verb->auth, verb->session);
- if (a)
- json_object_object_add(g, "x-permissions", a);
-
- a = json_object_new_object();
- json_object_object_add(g, "responses", a);
- f = json_object_new_object();
- json_object_object_add(a, "200", f);
- json_object_object_add(f, "description", json_object_new_string(verb->info?:verb->verb));
+ json_object_object_add(p, buffer, describe_verb_v3(verb));
}
+ verb = api->verbsv3;
+ if (verb)
+ while(verb->verb) {
+ buffer[0] = '/';
+ strncpy(buffer + 1, verb->verb, sizeof buffer - 1);
+ json_object_object_add(p, buffer, describe_verb_v3(verb));
+ verb++;
+ }
return r;
}