summaryrefslogtreecommitdiff
path: root/src/client/libwebidoidc-client.c
blob: 836ff69a7ef948221b4aa202eefd1bf06a797850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// disfluid, implementation of the Solid specification
// Copyright (C) 2020, 2021  Vivien Kraus

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.

// You should have received a copy of the GNU Affero General Public License
// along with this program.  If not, see <https://www.gnu.org/licenses/>.

#include <Disfluid-0.h>
#include <libguile.h>
#include <string.h>

struct DisfluidApi
{
  SCM scm_make_client;
  SCM scm_get_client_id;
  SCM scm_get_key_pair;
  SCM scm_get_redirect_uri;
};

struct user_code
{
  DisfluidUser func;
  void *data;
};

static void *
inner_guile (void *data)
{
  struct user_code *user = data;
  struct DisfluidApi api;
  api.scm_make_client =
    scm_c_public_ref ("webid-oidc client reverse-stubs", "make-client");
  api.scm_get_client_id =
    scm_c_public_ref ("webid-oidc client reverse-stubs", "get-client-id");
  api.scm_get_key_pair =
    scm_c_public_ref ("webid-oidc client reverse-stubs", "get-key-pair");
  api.scm_get_redirect_uri =
    scm_c_public_ref ("webid-oidc client reverse-stubs", "get-redirect-uri");
  return user->func (&api, user->data);
}

void *
disfluid_api_init (DisfluidUser func, void *data)
{
  struct user_code code;
  code.func = func;
  code.data = data;
  return scm_with_guile (inner_guile, &code);
}

struct DisfluidClient
{
  SCM object;
};

void
disfluid_client_make (const struct DisfluidApi *api,
		      struct DisfluidClient **client,
		      const char *client_id,
		      const char *redirect_uri, const char *jwk)
{
  SCM scm_client_id = scm_from_utf8_string (client_id);
  SCM scm_redirect_uri = scm_from_utf8_string (redirect_uri);
  SCM scm_jwk = SCM_BOOL_F;
  if (jwk)
    {
      scm_jwk = scm_from_utf8_string (jwk);
    }
  SCM object =
    scm_call_3 (api->scm_make_client, scm_client_id, scm_redirect_uri,
		scm_jwk);
  scm_dynwind_begin (0);
  *client = scm_malloc (sizeof (struct DisfluidClient));
  scm_dynwind_unwind_handler (free, *client, 0);
  (*client)->object = scm_gc_protect_object (object);
  scm_dynwind_end ();
}

void
disfluid_client_free (struct DisfluidClient *client)
{
  scm_gc_unprotect_object (client->object);
  free (client);
}

static size_t
copy_scm_string (SCM string, size_t start, size_t max, char *dest)
{
  size_t total_length = 0;
  scm_dynwind_begin (0);
  char *all_bytes = scm_to_utf8_stringn (string, &total_length);
  scm_dynwind_free (all_bytes);
  const size_t requested_length = max;
  const size_t available_length = total_length - start;
  size_t copied_length = requested_length;
  if (available_length < copied_length)
    {
      copied_length = available_length;
    }
  memcpy (dest, all_bytes + start, copied_length);
  if (copied_length < max)
    {
      dest[copied_length] = '\0';
    }
  scm_dynwind_end ();
  return total_length;
}

size_t
disfluid_client_get_id (const struct DisfluidClient *client,
			const struct DisfluidApi *api,
			size_t start, size_t max, char *id)
{
  SCM scm_id = scm_call_1 (api->scm_get_client_id, client->object);
  return copy_scm_string (scm_id, start, max, id);
}

size_t
disfluid_client_get_key_pair (const struct DisfluidClient *client,
			      const struct DisfluidApi *api,
			      size_t start, size_t max, char *jwk)
{
  SCM scm_jwk = scm_call_1 (api->scm_get_key_pair, client->object);
  return copy_scm_string (scm_jwk, start, max, jwk);
}

size_t
disfluid_client_get_redirect_uri (const struct DisfluidClient *client,
				  const struct DisfluidApi *api,
				  size_t start, size_t max,
				  char *redirect_uri)
{
  SCM scm_uri = scm_call_1 (api->scm_get_redirect_uri, client->object);
  return copy_scm_string (scm_uri, start, max, redirect_uri);
}