Better extensions API for age restriction

Added:
- TALER_extensions_age_restriction_is_enabled()
- TALER_extensions_age_restriction_is_configure()
This commit is contained in:
Özgür Kesim 2022-02-08 11:10:36 +01:00
parent c1a5a93298
commit cdc5bc8ff6
Signed by: oec
GPG Key ID: 3D76A56D79EDD9D7
3 changed files with 29 additions and 4 deletions

View File

@ -230,8 +230,13 @@ age_restriction_load_taler_config (
_config.mask.mask = mask.mask; _config.mask.mask = mask.mask;
_config.num_groups = __builtin_popcount (mask.mask) - 1; /* no underflow, first bit always set */ _config.num_groups = __builtin_popcount (mask.mask) - 1; /* no underflow, first bit always set */
this->config = &_config; this->config = &_config;
/* Note: we do now have _config set, however this->config_json is NOT set,
* i.e. the extension is not yet active! For age restriction to become
* active, load_json_config must have been called. */
} }
GNUNET_free (groups); GNUNET_free (groups);
return ret; return ret;
} }
@ -351,7 +356,7 @@ struct TALER_Extension _extension_age_restriction = {
}; };
bool bool
TALER_extensions_age_restriction_enabled () TALER_extensions_age_restriction_is_configured ()
{ {
return (0 != _config.mask.mask); return (0 != _config.mask.mask);
} }

View File

@ -334,4 +334,16 @@ TALER_extensions_load_json_config (
} }
bool
TALER_extensions_age_restriction_is_enabled ()
{
const struct TALER_Extension *age =
TALER_extensions_get_by_type (TALER_Extension_AgeRestriction);
return (NULL != age &&
NULL != age->config_json &&
TALER_extensions_age_restriction_is_configured ());
}
/* end of extensions.c */ /* end of extensions.c */

View File

@ -233,13 +233,21 @@ TALER_age_mask_to_string (
const struct TALER_AgeMask *mask); const struct TALER_AgeMask *mask);
/** /**
* Returns true when age restriction is enabled * Returns true when age restriction is configured and enabled.
*/ */
bool bool
TALER_extensions_age_restriction_enabled (); TALER_extensions_age_restriction_is_enabled ();
/** /**
* Returns the currently set age mask * Returns true when age restriction is configured (might not be _enabled_,
* though).
*/
bool
TALER_extensions_age_restriction_is_configured ();
/**
* Returns the currently set age mask. Note that even if age restriction is
* not enabled, the age mask might be have a non-zero value.
*/ */
struct TALER_AgeMask struct TALER_AgeMask
TALER_extensions_age_restriction_ageMask (); TALER_extensions_age_restriction_ageMask ();