Don't return the uuid
[src/app-framework-binder.git] / src / afb-context.c
1 /*
2  * Copyright (C) 2015-2019 "IoT.bzh"
3  * Author "Fulup Ar Foll"
4  * Author José Bollo <jose.bollo@iot.bzh>
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *   http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #define _GNU_SOURCE
20
21 #include <assert.h>
22 #include <stdlib.h>
23 #include <stdint.h>
24 #include <errno.h>
25
26 #include "afb-session.h"
27 #include "afb-context.h"
28
29 static void init_context(struct afb_context *context, struct afb_session *session, const char *token)
30 {
31         assert(session != NULL);
32
33         /* reset the context for the session */
34         context->session = session;
35         context->flags = 0;
36         context->super = NULL;
37         context->api_key = NULL;
38
39         /* check the token */
40         if (token != NULL) {
41                 if (afb_session_check_token(session, token))
42                         context->validated = 1;
43                 else
44                         context->invalidated = 1;
45         }
46 }
47
48 void afb_context_init(struct afb_context *context, struct afb_session *session, const char *token)
49 {
50         init_context(context, afb_session_addref(session), token);
51 }
52
53 void afb_context_init_validated(struct afb_context *context, struct afb_session *session)
54 {
55         afb_context_init(context, session, NULL);
56         context->validated = 1;
57 }
58
59 void afb_context_subinit(struct afb_context *context, struct afb_context *super)
60 {
61         context->session = super->session;
62         context->flags = 0;
63         context->super = super;
64         context->api_key = NULL;
65         context->token = NULL;
66         context->validated = super->validated;
67 }
68
69 int afb_context_connect(struct afb_context *context, const char *uuid, const char *token)
70 {
71         int created;
72         struct afb_session *session;
73
74         session = afb_session_get (uuid, AFB_SESSION_TIMEOUT_DEFAULT, &created);
75         if (session == NULL)
76                 return -1;
77         init_context(context, session, token);
78         if (created) {
79                 context->created = 1;
80         }
81         return 0;
82 }
83
84 int afb_context_connect_validated(struct afb_context *context, const char *uuid)
85 {
86         int rc = afb_context_connect(context, uuid, NULL);
87         if (!rc)
88                 context->validated = 1;
89         return rc;
90 }
91
92 void afb_context_disconnect(struct afb_context *context)
93 {
94         if (context->session && !context->super) {
95                 if (context->closing && !context->closed) {
96                         afb_context_change_loa(context, 0);
97                         afb_context_set(context, NULL, NULL);
98                         context->closed = 1;
99                 }
100                 afb_session_unref(context->session);
101                 context->session = NULL;
102         }
103 }
104
105 const char *afb_context_uuid(struct afb_context *context)
106 {
107         return context->session ? afb_session_uuid(context->session) : "";
108 }
109
110 void *afb_context_make(struct afb_context *context, int replace, void *(*make_value)(void *closure), void (*free_value)(void *item), void *closure)
111 {
112         assert(context->session != NULL);
113         return afb_session_cookie(context->session, context->api_key, make_value, free_value, closure, replace);
114 }
115
116 void *afb_context_get(struct afb_context *context)
117 {
118         assert(context->session != NULL);
119         return afb_session_get_cookie(context->session, context->api_key);
120 }
121
122 int afb_context_set(struct afb_context *context, void *value, void (*free_value)(void*))
123 {
124         assert(context->session != NULL);
125         return afb_session_set_cookie(context->session, context->api_key, value, free_value);
126 }
127
128 void afb_context_close(struct afb_context *context)
129 {
130         context->closing = 1;
131 }
132
133 int afb_context_check(struct afb_context *context)
134 {
135         if (context->super)
136                 return afb_context_check(context);
137         return context->validated;
138 }
139
140 int afb_context_check_loa(struct afb_context *context, unsigned loa)
141 {
142         return afb_context_get_loa(context) >= loa;
143 }
144
145 static inline const void *loa_key(struct afb_context *context)
146 {
147         return (const void*)(1+(intptr_t)(context->api_key));
148 }
149
150 static inline void *loa2ptr(unsigned loa)
151 {
152         return (void*)(intptr_t)loa;
153 }
154
155 static inline unsigned ptr2loa(void *ptr)
156 {
157         return (unsigned)(intptr_t)ptr;
158 }
159
160 int afb_context_change_loa(struct afb_context *context, unsigned loa)
161 {
162         if (!context->validated || loa > 7) {
163                 errno = EINVAL;
164                 return -1;
165         }
166
167         return afb_session_set_cookie(context->session, loa_key(context), loa2ptr(loa), NULL);
168 }
169
170 unsigned afb_context_get_loa(struct afb_context *context)
171 {
172         assert(context->session != NULL);
173         return ptr2loa(afb_session_get_cookie(context->session, loa_key(context)));
174 }