Remove refreshing token
[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_sent_token(struct afb_context *context)
106 {
107         if (context->session == NULL || context->closing || context->super)
108                 return NULL;
109         return afb_session_token(context->session);
110 }
111
112 const char *afb_context_uuid(struct afb_context *context)
113 {
114         return context->session ? afb_session_uuid(context->session) : "";
115 }
116
117 const char *afb_context_sent_uuid(struct afb_context *context)
118 {
119         if (context->session == NULL || context->closing || context->super)
120                 return NULL;
121         if (!context->created)
122                 return NULL;
123         return afb_session_uuid(context->session);
124 }
125
126 void *afb_context_make(struct afb_context *context, int replace, void *(*make_value)(void *closure), void (*free_value)(void *item), void *closure)
127 {
128         assert(context->session != NULL);
129         return afb_session_cookie(context->session, context->api_key, make_value, free_value, closure, replace);
130 }
131
132 void *afb_context_get(struct afb_context *context)
133 {
134         assert(context->session != NULL);
135         return afb_session_get_cookie(context->session, context->api_key);
136 }
137
138 int afb_context_set(struct afb_context *context, void *value, void (*free_value)(void*))
139 {
140         assert(context->session != NULL);
141         return afb_session_set_cookie(context->session, context->api_key, value, free_value);
142 }
143
144 void afb_context_close(struct afb_context *context)
145 {
146         context->closing = 1;
147 }
148
149 int afb_context_check(struct afb_context *context)
150 {
151         if (context->super)
152                 return afb_context_check(context);
153         return context->validated;
154 }
155
156 int afb_context_check_loa(struct afb_context *context, unsigned loa)
157 {
158         return afb_context_get_loa(context) >= loa;
159 }
160
161 static inline const void *loa_key(struct afb_context *context)
162 {
163         return (const void*)(1+(intptr_t)(context->api_key));
164 }
165
166 static inline void *loa2ptr(unsigned loa)
167 {
168         return (void*)(intptr_t)loa;
169 }
170
171 static inline unsigned ptr2loa(void *ptr)
172 {
173         return (unsigned)(intptr_t)ptr;
174 }
175
176 int afb_context_change_loa(struct afb_context *context, unsigned loa)
177 {
178         if (!context->validated || loa > 7) {
179                 errno = EINVAL;
180                 return -1;
181         }
182
183         return afb_session_set_cookie(context->session, loa_key(context), loa2ptr(loa), NULL);
184 }
185
186 unsigned afb_context_get_loa(struct afb_context *context)
187 {
188         assert(context->session != NULL);
189         return ptr2loa(afb_session_get_cookie(context->session, loa_key(context)));
190 }