From 11d36a9f7e16aa9992835f8ce06f0e1e5297b131 Mon Sep 17 00:00:00 2001 From: José Bollo Date: Mon, 4 Apr 2016 17:48:50 +0200 Subject: work in progress, session handling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I0393346280825e24a34e8db386160d857723b841 Signed-off-by: José Bollo --- include/afb-plugin.h | 17 ++++++++++++++++- include/afb-req-itf.h | 26 +++++++++++++++++++++++++- 2 files changed, 41 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/afb-plugin.h b/include/afb-plugin.h index 8ca72704..f2f4d6ec 100644 --- a/include/afb-plugin.h +++ b/include/afb-plugin.h @@ -54,12 +54,27 @@ struct AFB_plugin void (*freeCtxCB)(void*); // callback to free application context [null for standard free] }; +/* config mode */ +enum AFB_Mode { + AFB_MODE_LOCAL = 0, + AFB_MODE_REMOTE, + AFB_MODE_GLOBAL +}; + +/* typedef enum AFB_pluginE AFB_pluginE; typedef enum AFB_sessionE AFB_sessionE; typedef void (*AFB_apiCB)(struct afb_req); typedef void (*AFB_freeCtxCB)(void*); typedef struct AFB_restapi AFB_restapi; typedef struct AFB_plugin AFB_plugin; +*/ + +struct AFB_interface +{ + int verbose; + enum AFB_Mode mode; +}; -extern const struct AFB_plugin *pluginRegister (); +extern const struct AFB_plugin *pluginRegister (const struct AFB_interface *interface); diff --git a/include/afb-req-itf.h b/include/afb-req-itf.h index c593440b..a9b768db 100644 --- a/include/afb-req-itf.h +++ b/include/afb-req-itf.h @@ -29,12 +29,15 @@ struct afb_req_itf { void (*iterate)(void *data, int (*iterator)(void *closure, struct afb_arg arg), void *closure); void (*fail)(void *data, const char *status, const char *info); void (*success)(void *data, struct json_object *obj, const char *info); + int (*session_create)(void *data); + int (*session_check)(void *data, int refresh); + void (*session_close)(void *data); }; struct afb_req { const struct afb_req_itf *itf; void *data; - void **context; + void *context; }; static inline struct afb_arg afb_req_get(struct afb_req req, const char *name) @@ -67,6 +70,27 @@ static inline void afb_req_success(struct afb_req req, struct json_object *obj, req.itf->success(req.data, obj, info); } +static inline int afb_req_session_create(struct afb_req req) +{ + int result = req.itf->session_create(req.data); + if (!result) + afb_req_fail(req, "fail", "Can't create the session"); + return result; +} + +static inline int afb_req_session_check(struct afb_req req, int refresh) +{ + int result = req.itf->session_check(req.data, refresh); + if (!result) + afb_req_fail(req, "fail", "Token chek failed for the session"); + return result; +} + +static inline void afb_req_session_close(struct afb_req req) +{ + req.itf->session_close(req.data); +} + #if !defined(_GNU_SOURCE) # error "_GNU_SOURCE must be defined for using vasprintf" #endif -- cgit 1.2.3-korg