diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-07-18 17:51:33 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-07-29 12:18:46 +0200 |
commit | e926b0aa861fd00274d26202d7e8807efe997df5 (patch) | |
tree | d904dc2792a66429b549db416e5e3b05e0d56ec2 | |
parent | bcba49da00a3f2255125e8a04cd1f0a562b8abb7 (diff) |
add logic to parse measures from configuration
-rw-r--r-- | src/kyclogic/kyclogic_api.c | 120 |
1 files changed, 119 insertions, 1 deletions
diff --git a/src/kyclogic/kyclogic_api.c b/src/kyclogic/kyclogic_api.c index 07beb556f..340a3566b 100644 --- a/src/kyclogic/kyclogic_api.c +++ b/src/kyclogic/kyclogic_api.c @@ -1617,7 +1617,7 @@ add_program (const struct GNUNET_CONFIGURATION_Handle *cfg, struct TALER_KYCLOGIC_AmlProgram *ap; ap = GNUNET_new (struct TALER_KYCLOGIC_AmlProgram); - ap->program_name = GNUNET_strdup (§ion[strlen ("kyc-check-")]); + ap->program_name = GNUNET_strdup (§ion[strlen ("aml-program-")]); ap->command = command; ap->description = description; ap->fallback = fallback; @@ -1672,6 +1672,121 @@ handle_program_section (void *cls, /** + * Parse configuration @a cfg in section @a section for + * the specification of a KYC measure. + * + * @param cfg configuration to parse + * @param section configuration section to parse + * @return #GNUNET_OK on success + */ +static enum GNUNET_GenericReturnValue +add_measure (const struct GNUNET_CONFIGURATION_Handle *cfg, + const char *section) +{ + char *check_name = NULL; + char *context_str = NULL; + char *program = NULL; + json_t *context; + json_error_t err; + + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "Parsing KYC measure %s\n", + section); + if (GNUNET_OK != + GNUNET_CONFIGURATION_get_value_string (cfg, + section, + "CHECK_NAME", + &check_name)) + { + GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR, + section, + "CHECK_NAME", + "check name required"); + goto fail; + } + if (GNUNET_OK != + GNUNET_CONFIGURATION_get_value_string (cfg, + section, + "PROGRAM", + &program)) + { + GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR, + section, + "PROGRAM", + "program name required"); + goto fail; + } + if (GNUNET_OK != + GNUNET_CONFIGURATION_get_value_string (cfg, + section, + "CONTEXT", + &context_str)) + { + GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR, + section, + "CONTEXT", + "context required"); + goto fail; + } + context = json_loads (context_str, + JSON_REJECT_DUPLICATES, + &err); + GNUNET_free (context_str); + if (NULL == context) + { + GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR, + section, + "COMMAND", + err.text); + goto fail; + } + + { + struct TALER_KYCLOGIC_Measure m; + + m.measure_name = GNUNET_strdup (§ion[strlen ("kyc-measure-")]); + m.check_name = check_name; + m.prog_name = program; + m.context = context; + GNUNET_array_append (default_rules.custom_measures, + default_rules.num_custom_measures, + m); + } + return GNUNET_OK; +fail: + GNUNET_free (check_name); + GNUNET_free (program); + GNUNET_free (context_str); + return GNUNET_SYSERR; +} + + +/** + * Function to iterate over configuration sections. + * + * @param cls a `struct SectionContext *` + * @param section name of the section + */ +static void +handle_measure_section (void *cls, + const char *section) +{ + struct SectionContext *sc = cls; + + if (0 == strncasecmp (section, + "kyc-measure-", + strlen ("kyc-measure-"))) + { + if (GNUNET_OK != + add_measure (sc->cfg, + section)) + sc->result = false; + return; + } +} + + +/** * Comparator for qsort. Compares two rules * by timeframe to sort rules by time. * @@ -1720,6 +1835,9 @@ TALER_KYCLOGIC_kyc_init (const struct GNUNET_CONFIGURATION_Handle *cfg) GNUNET_CONFIGURATION_iterate_sections (cfg, &handle_program_section, &sc); + GNUNET_CONFIGURATION_iterate_sections (cfg, + &handle_measure_section, + &sc); if (! sc.result) { TALER_KYCLOGIC_kyc_done (); |