blob: 849561a5a3868a76d8e23389e33100712c3a0948 (
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
|
/*
This file is part of TALER
Copyright (C) 2020 Taler Systems SA
TALER 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.
TALER 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
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
/**
* @file yna.c
* @brief Utility functions for yes/no/all filters
* @author Jonathan Buchanan
*/
#include "platform.h"
#include "taler_util.h"
/**
* Convert query argument to @a yna value.
*
* @param connection connection to take query argument from
* @param arg argument to try for
* @param default_val value to assign if the argument is not present
* @param[out] yna value to set
* @return true on success, false if the parameter was malformed
*/
bool
TALER_arg_to_yna (struct MHD_Connection *connection,
const char *arg,
enum TALER_EXCHANGE_YesNoAll default_val,
enum TALER_EXCHANGE_YesNoAll *yna)
{
const char *str;
str = MHD_lookup_connection_value (connection,
MHD_GET_ARGUMENT_KIND,
arg);
if (NULL == str)
{
*yna = default_val;
return true;
}
if (0 == strcasecmp (str, "yes"))
{
*yna = TALER_EXCHANGE_YNA_YES;
return true;
}
if (0 == strcasecmp (str, "no"))
{
*yna = TALER_EXCHANGE_YNA_NO;
return true;
}
if (0 == strcasecmp (str, "all"))
{
*yna = TALER_EXCHANGE_YNA_ALL;
return true;
}
return false;
}
/**
* Convert YNA value to a string.
*
* @param yna value to convert
* @return string representation ("yes"/"no"/"all").
*/
const char *
TALER_yna_to_string (enum TALER_EXCHANGE_YesNoAll yna)
{
switch (yna)
{
case TALER_EXCHANGE_YNA_YES:
return "yes";
case TALER_EXCHANGE_YNA_NO:
return "no";
case TALER_EXCHANGE_YNA_ALL:
return "all";
}
GNUNET_assert (0);
}
|