summaryrefslogtreecommitdiff
path: root/src/backend/merchant.c
blob: 47ccdc481c89cb3616e9ea5f1364c8b079ca49cf (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
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
/*
  This file is part of TALER
  (C) 2014 Christian Grothoff (and other contributing authors)

  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, If not, see <http://www.gnu.org/licenses/>
*/

/**
 * @file merchant/merchant.c
 * @brief Common utility functions for merchant
 * @author Sree Harsha Totakura <sreeharsha@totakura.in>
 */

#include "platform.h"
#include <gnunet/gnunet_util_lib.h>
#include "merchant.h"


#define EXITIF(cond)                                              \
  do {                                                            \
    if (cond) { GNUNET_break (0); goto EXITIF_exit; }             \
  } while (0)


/**
 * Parses mints from the configuration.
 *
 * @param cfg the configuration
 * @param mints the array of mints upon successful parsing.  Will be NULL upon
 *          error.
 * @return the number of mints in the above array; GNUNET_SYSERR upon error in
 *          parsing.
 */
int
TALER_MERCHANT_parse_mints (const struct GNUNET_CONFIGURATION_Handle *cfg,
                            struct MERCHANT_MintInfo **mints)
{
  char *mints_str;
  char *token_nf;               /* do no free (nf) */
  char *mint_section;
  char *mint_hostname;
  char *mint_country;
  char *mint_city;
  char *mint_state;
  char *mint_region;
  char *mint_province;
  char *mint_pubkey_enc;
  char *mint_street;
  struct MERCHANT_MintInfo *r_mints;
  struct MERCHANT_MintInfo mint;
  unsigned long long mint_port;
  unsigned long long mint_zip_code;
  unsigned long long mint_street_no;
  unsigned int cnt;
  int OK;

  OK = 0;
  mints_str = NULL;
  token_nf = NULL;
  mint_section = NULL;
  mint_hostname = NULL;
  mint_port = 0;
  mint_country = NULL;
  mint_city = NULL;
  mint_state = NULL;
  mint_region = NULL;
  mint_province = NULL;
  mint_zip_code = 0;
  mint_street = NULL;
  mint_street_no = 0;
  mint_pubkey_enc = NULL;
  r_mints = NULL;
  cnt = 0;
  EXITIF (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg,
                                                              "merchant",
                                                              "TRUSTED_MINTS",
                                                              &mints_str));
  for (token_nf = strtok (mints_str, " ");
       NULL != token_nf;
       token_nf = strtok (NULL, " "))
  {
    GNUNET_assert (0 < GNUNET_asprintf (&mint_section,
                                        "mint-%s", token_nf));
    memset (&mint, 0, sizeof (mint));

    EXITIF (GNUNET_OK !=
            GNUNET_CONFIGURATION_get_value_string (cfg,
                                                   mint_section,
                                                   "HOSTNAME",
                                                   &mint_hostname));
    EXITIF (GNUNET_OK !=
            GNUNET_CONFIGURATION_get_value_number (cfg,
                                                   mint_section,
                                                   "PORT",
                                                   &mint_port));
    EXITIF (GNUNET_OK !=
            GNUNET_CONFIGURATION_get_value_string (cfg,
                                                   mint_section,
                                                   "PUBKEY",
                                                   &mint_pubkey_enc));
    EXITIF (GNUNET_OK !=
            GNUNET_CRYPTO_eddsa_public_key_from_string (mint_pubkey_enc,
                                                        strlen (mint_pubkey_enc),
                                                        &mint.pubkey));
    EXITIF (GNUNET_OK !=
            GNUNET_CONFIGURATION_get_value_string (cfg,
                                                   mint_section,
                                                   "COUNTRY",
                                                   &mint_country));
    EXITIF (GNUNET_OK !=
            GNUNET_CONFIGURATION_get_value_string (cfg,
                                                   mint_section,
                                                   "CITY",
                                                   &mint_city));
    if (GNUNET_OK ==
        GNUNET_CONFIGURATION_get_value_string (cfg,
                                               mint_section,
                                               "STATE",
                                               &mint_state))
      mint.state = mint_state;
    if (GNUNET_OK ==
        GNUNET_CONFIGURATION_get_value_string (cfg,
                                               mint_section,
                                               "REGION",
                                               &mint_region))
      mint.region = mint_region;
    if (GNUNET_OK ==
        GNUNET_CONFIGURATION_get_value_string (cfg,
                                               mint_section,
                                               "PROVINCE",
                                               &mint_province))
      mint.province = mint_province;


    EXITIF (GNUNET_OK !=
            GNUNET_CONFIGURATION_get_value_number (cfg,
                                                   mint_section,
                                                   "ZIP_CODE",
                                                   &mint_zip_code));

    EXITIF (GNUNET_OK !=
            GNUNET_CONFIGURATION_get_value_string (cfg,
                                                   mint_section,
                                                   "STREET",
                                                   &mint_street));

    EXITIF (GNUNET_OK !=
            GNUNET_CONFIGURATION_get_value_number (cfg,
                                                   mint_section,
                                                   "STREET_NUMBER",
                                                   &mint_street_no));
    mint.hostname = mint_hostname;
    mint.port = (uint16_t) mint_port;
    mint.country = mint_country;
    mint.city = mint_city;
    mint.zip_code = (uint16_t) mint_zip_code;
    mint.street = mint_street;
    mint.street_no = (uint16_t) mint_street_no;
    GNUNET_array_append (r_mints, cnt, mint);
    GNUNET_free (mint_hostname);
    mint_hostname = NULL;
    GNUNET_free (mint_country);
    mint_country = NULL;
    GNUNET_free (mint_city);
    mint_city = NULL;
    GNUNET_free_non_null (mint_state);
    mint_state = NULL;
    GNUNET_free_non_null (mint_region);
    mint_region = NULL;
    GNUNET_free_non_null (mint_province);
    mint_province = NULL;
    GNUNET_free_non_null (mint_pubkey_enc);
    mint_pubkey_enc = NULL;
    GNUNET_free_non_null (mint_section);
    mint_section = NULL;

  }
  OK = 1;

 EXITIF_exit:
  GNUNET_free_non_null (mints_str);
  GNUNET_free_non_null (mint_section);
  GNUNET_free_non_null (mint_hostname);
  GNUNET_free_non_null (mint_pubkey_enc);
  if (!OK)
  {
    GNUNET_free_non_null (r_mints);
    return GNUNET_SYSERR;
  }

  *mints = r_mints;
  return cnt;
}


/**
 * Parse the SEPA information from the configuration.  If any of the required
 * fileds is missing return NULL.
 *
 * @param cfg the configuration
 * @return Sepa details as a structure; NULL upon error
 */
struct MERCHANT_WIREFORMAT_Sepa *
TALER_MERCHANT_parse_wireformat_sepa (const struct GNUNET_CONFIGURATION_Handle *cfg)
{
  struct MERCHANT_WIREFORMAT_Sepa *wf;

  wf = GNUNET_new (struct MERCHANT_WIREFORMAT_Sepa);
  EXITIF (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg,
                                                              "wire-sepa",
                                                              "IBAN",
                                                              &wf->iban));
  EXITIF (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg,
                                                              "wire-sepa",
                                                              "NAME",
                                                              &wf->name));
  EXITIF (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg,
                                                              "wire-sepa",
                                                              "BIC",
                                                              &wf->bic));
  return wf;

 EXITIF_exit:
  GNUNET_free_non_null (wf->iban);
  GNUNET_free_non_null (wf->name);
  GNUNET_free_non_null (wf->bic);
  GNUNET_free (wf);
  return NULL;

}


/**
 * Destroy and free resouces occupied by the wireformat structure
 *
 * @param wf the wireformat structure
 */
void
TALER_MERCHANT_destroy_wireformat_sepa (struct MERCHANT_WIREFORMAT_Sepa *wf)
{
  GNUNET_free_non_null (wf->iban);
  GNUNET_free_non_null (wf->name);
  GNUNET_free_non_null (wf->bic);
  GNUNET_free (wf);
}

/* end of merchant.c */