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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
|
/*
This file is part of anastasis-gtk.
Copyright (C) 2020, 2021 Anastasis SARL
Anastasis is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 3, or (at your
option) any later version.
Anastasis 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with Anastasis; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
/**
* @file src/anastasis/anastasis-gtk_handle-main-window-forward-clicked.c
* @brief
* @author Christian Grothoff
* @author Dennis Neufeld
*/
#include "anastasis_gtk_config.h"
#define HAVE_USED_CONFIG_H 1
#include <gnunet/platform.h>
#include <gnunet/gnunet_util_lib.h>
#include "anastasis-gtk_action.h"
#include "anastasis-gtk_attributes.h"
#include "anastasis-gtk_dispatch.h"
#include "anastasis-gtk_helper.h"
#include <jansson.h>
/**
* The user selected the 'forward' button. Move on with the
* country selection.
*/
static void
forward_country_selecting (void)
{
GtkTreeIter iter;
GtkTreeView *tv;
GtkTreeModel *model;
GtkTreeSelection *sel;
gchar *country_name;
gchar *country_code;
json_t *arguments;
tv = GTK_TREE_VIEW (GCG_get_main_window_object (
"anastasis_gtk_country_treeview"));
sel = gtk_tree_view_get_selection (tv);
if (! gtk_tree_selection_get_selected (sel,
&model,
&iter))
{
GNUNET_break (0);
return;
}
gtk_tree_model_get (model,
&iter,
AG_CCMC_COUNTRY_NAME, &country_name,
AG_CCMC_COUNTRY_CODE, &country_code,
-1);
arguments = GNUNET_JSON_PACK (
GNUNET_JSON_pack_string ("country",
country_name),
GNUNET_JSON_pack_string ("country_code",
country_code));
g_free (country_name);
g_free (country_code);
AG_freeze ();
AG_ra = ANASTASIS_redux_action (AG_redux_state,
"select_country",
arguments,
&AG_action_cb,
NULL);
json_decref (arguments);
}
/**
* The user has entered their personal attributes and
* confirmed they are correct. Move to the next state.
* Note that #AG_freeze() was already called.
*/
static void
confirm_attributes (void)
{
json_t *args;
args = AG_collect_attributes (false);
GNUNET_assert (NULL != args);
AG_ra = ANASTASIS_redux_action (AG_redux_state,
"enter_user_attributes",
args,
&AG_action_cb,
NULL);
json_decref (args);
}
/**
* Function called with the result of asking the user
* if they are sure about the personal details they
* entered.
*
* @param the dialog
* @param response_id must be GTK_RESPONSE_OK to proceed
* @param user_data the builder
*/
void
anastasis_gtk_user_sure_dialog_response_cb (
GtkDialog *dialog,
gint response_id,
gpointer user_data)
{
GtkBuilder *builder = user_data;
gtk_widget_destroy (GTK_WIDGET (dialog));
g_object_unref (G_OBJECT (builder));
if (GTK_RESPONSE_OK != response_id)
{
AG_thaw ();
return;
}
confirm_attributes ();
}
/**
* Launch dialog to question certainty of user providing
* personal details during backup.
*/
static void
question_certainty (void)
{
GtkBuilder *builder;
GtkDialog *ad;
builder = GNUNET_GTK_get_new_builder (
"anastasis_gtk_user_sure.glade",
NULL);
if (NULL == builder)
{
GNUNET_break (0);
return;
}
ad = GTK_DIALOG (gtk_builder_get_object (builder,
"anastasis_gtk_user_sure_dialog"));
if (NULL == ad)
{
GNUNET_break (0);
g_object_unref (G_OBJECT (builder));
return;
}
/* show dialog */
{
GtkWidget *toplevel;
GtkWidget *widget;
#if ! HAVE_HPDF_H
gtk_widget_hide (
GTK_WIDGET (
gtk_builder_get_object (
builder,
"anastasis_gtk_print_details_button")));
#endif
widget = GTK_WIDGET (GCG_get_main_window_object (
"anastasis_gtk_auth_button_grid"));
toplevel = gtk_widget_get_toplevel (widget);
gtk_window_set_transient_for (GTK_WINDOW (ad),
GTK_WINDOW (toplevel));
gtk_window_present (GTK_WINDOW (ad));
}
}
/**
* The user clicked the 'next' button in the dialog where they enter
* their personal attributes. If we are in the backup process, make
* them first confirm that the attributes are correct and well-known
* to them. Otherwise, simply directly proceed.
*/
void
AG_forward_user_attributes_collecting (void)
{
bool in_backup;
AG_freeze ();
in_backup = (NULL != json_object_get (AG_redux_state,
"backup_state"));
if (in_backup)
question_certainty ();
else
confirm_attributes ();
}
/**
* Function called with the result of questioning the user
* if they really want to proceed with less than three
* authentication factors.
*
* @param the dialog
* @param response_id must be GTK_RESPONSE_OK to proceed
* @param user_data the builder
*/
void
anastasis_gtk_confirm_multifactor_dialog_response_cb (
GtkDialog *dialog,
gint response_id,
gpointer user_data)
{
GtkBuilder *builder = user_data;
gtk_widget_destroy (GTK_WIDGET (dialog));
g_object_unref (G_OBJECT (builder));
if (GTK_RESPONSE_OK != response_id)
{
AG_thaw ();
return;
}
AG_ra = ANASTASIS_redux_action (AG_redux_state,
"next",
NULL,
&AG_action_cb,
NULL);
}
/**
* Function called with the result of telling the
* user that they cannot use 1-FA.
*
* @param the dialog
* @param response_id must be GTK_RESPONSE_OK to proceed
* @param user_data the builder
*/
void
anastasis_gtk_deny_singlefactor_dialog_response_cb (
GtkDialog *dialog,
gint response_id,
gpointer user_data)
{
GtkBuilder *builder = user_data;
gtk_widget_destroy (GTK_WIDGET (dialog));
g_object_unref (G_OBJECT (builder));
AG_thaw ();
}
/**
* Launch dialog to question sanity of user providing
* too few authentication methods.
*/
static void
question_sanity (void)
{
GtkBuilder *builder;
GtkDialog *ad;
builder = GNUNET_GTK_get_new_builder (
"anastasis_gtk_warn_multifactor.glade",
NULL);
if (NULL == builder)
{
GNUNET_break (0);
return;
}
ad = GTK_DIALOG (gtk_builder_get_object (builder,
"anastasis_gtk_confirm_multifactor_dialog"));
if (NULL == ad)
{
GNUNET_break (0);
g_object_unref (G_OBJECT (builder));
return;
}
/* show dialog */
{
GtkWidget *toplevel;
GtkWidget *widget;
widget = GTK_WIDGET (GCG_get_main_window_object (
"anastasis_gtk_auth_button_grid"));
toplevel = gtk_widget_get_toplevel (widget);
gtk_window_set_transient_for (GTK_WINDOW (ad),
GTK_WINDOW (toplevel));
gtk_window_present (GTK_WINDOW (ad));
}
}
/**
* Launch dialog to deny 1-FA setups.
*/
static void
refuse_insanity (void)
{
GtkBuilder *builder;
GtkDialog *ad;
builder = GNUNET_GTK_get_new_builder (
"anastasis_gtk_deny_singlefactor.glade",
NULL);
if (NULL == builder)
{
GNUNET_break (0);
return;
}
ad = GTK_DIALOG (gtk_builder_get_object (builder,
"anastasis_gtk_deny_singlefactor_dialog"));
if (NULL == ad)
{
GNUNET_break (0);
g_object_unref (G_OBJECT (builder));
return;
}
/* show dialog */
{
GtkWidget *toplevel;
GtkWidget *widget;
widget = GTK_WIDGET (GCG_get_main_window_object (
"anastasis_gtk_auth_button_grid"));
toplevel = gtk_widget_get_toplevel (widget);
gtk_window_set_transient_for (GTK_WINDOW (ad),
GTK_WINDOW (toplevel));
gtk_window_present (GTK_WINDOW (ad));
}
}
/**
* The user has clicked 'next' in the 'authentications_editing' state.
* Check if the number of authentication methods configured is above
* a threshold. If no, warn before allowing to proceed.
*/
static void
forward_authentications_editing (void)
{
json_t *methods;
AG_freeze ();
methods = json_object_get (AG_redux_state,
"authentication_methods");
if (json_array_size (methods) < 2)
{
refuse_insanity ();
return;
}
if (json_array_size (methods) < 3)
{
question_sanity ();
return;
}
AG_ra = ANASTASIS_redux_action (AG_redux_state,
"next",
NULL,
&AG_action_cb,
NULL);
}
/**
* The user has pressed 'next' in POLICIES_EDITING state.
* Proceed to secret editing.
*/
static void
forward_policies_reviewing (void)
{
AG_freeze ();
AG_ra = ANASTASIS_redux_action (AG_redux_state,
"next",
NULL,
&AG_action_cb,
NULL);
}
static void
forward_secret_editing (void)
{
AG_freeze ();
AG_ra = ANASTASIS_redux_action (AG_redux_state,
"next",
NULL,
&AG_action_cb,
NULL);
}
/**
* The user has pressed 'next' after selecting a secret to recover.
*/
static void
forward_secret_selecting (void)
{
GtkTreeSelection *selection;
GtkTreeModel *model;
GtkTreeIter iter;
json_t *args;
gchar *provider_url;
gchar *secret_name;
gint version;
gint mask;
const json_t *providers;
AG_freeze ();
AG_stop_long_action ();
selection = GTK_TREE_SELECTION (
GCG_get_main_window_object (
"anastasis_gtk_secret_selection_treeselection"));
if (! gtk_tree_selection_get_selected (selection,
&model,
&iter))
{
GNUNET_break (0);
AG_insensitive ("anastasis_gtk_main_window_forward_button");
return;
}
gtk_tree_model_get (model,
&iter,
AG_SSMC_PROVIDER_URL, &provider_url,
AG_SSMC_POLICY_VERSION, &version,
AG_SSMC_ATTRIBUTE_MASK, &mask,
AG_SSMC_SECRET_NAME, &secret_name,
AG_SSMC_POLICY_PROVIDER_JSON, &providers,
-1);
args = GNUNET_JSON_PACK (
GNUNET_JSON_pack_array_incref ("providers",
(json_t *) providers),
GNUNET_JSON_pack_uint64 ("attribute_mask",
mask),
GNUNET_JSON_pack_string ("secret_name",
secret_name));
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"Proceeding with policy version %u at provider %s\n",
(unsigned int) version,
provider_url);
g_free (provider_url);
g_free (secret_name);
if (NULL != AG_pd)
{
ANASTASIS_policy_discovery_stop (AG_pd);
AG_pd = NULL;
}
AG_ra = ANASTASIS_redux_action (AG_redux_state,
"select_version",
args,
&AG_action_cb,
NULL);
json_decref (args);
}
/**
* Callback invoked if the the "forward"-button is clicked.
*
* @param object
* @param user_data unused
*/
void
anastasis_gtk_main_window_forward_clicked (GObject *object,
gpointer user_data)
{
struct DispatchItem actions[] = {
{ .state = "COUNTRY_SELECTING",
.action = &forward_country_selecting },
{ .state = "USER_ATTRIBUTES_COLLECTING",
.action = &AG_forward_user_attributes_collecting },
{ .state = "AUTHENTICATIONS_EDITING",
.action = &forward_authentications_editing },
{ .state = "POLICIES_REVIEWING",
.action = &forward_policies_reviewing },
{ .state = "SECRET_EDITING",
.action = &forward_secret_editing },
{ .state = "SECRET_SELECTING",
.action = &forward_secret_selecting },
{ .state = NULL,
.action = NULL }
};
AG_dispatch (actions);
}
|