Skip to content
Snippets Groups Projects
Verified Commit eea37939 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

datamodel: /local-data: refactor policy_get_tagset macro

parent 84cb31da
No related branches found
No related tags found
1 merge request!1446/local-data/subtrees/ improvements
......@@ -44,9 +44,7 @@ assert(hints.add_hosts('{{ file }}').result == true)
{% macro local_data_records(input_str, is_rpz, ttl, nodata, tags=none, id='rrs') -%}
{{ id }} = ffi.new('struct kr_rule_zonefile_config')
{{ id }}.ttl = {{ local_data_ttl(ttl) }}
{% if tags %}
{{ id }}.tags = {{ policy_get_tagset(tags) }}
{% endif %}
{{ id }}.nodata = {{ boolean(nodata) }}
{{ id }}.is_rpz = {{ boolean(is_rpz) }}
{% if is_rpz -%}
......@@ -60,11 +58,6 @@ assert(C.kr_rule_zonefile({{ id }})==0)
{%- endmacro %}
{% macro local_data_subtree_root(root, type, ttl, tags) -%}
{%- if tags -%}
{%- set get_tags = policy_get_tagset(tags) -%}
{%- else -%}
{%- set get_tags = '0' -%}
{%- endif -%}
assert(C.kr_rule_local_subtree(todname('{{ root }}'),
C.KR_RULE_SUB_{{ type.upper() }}, {{ local_data_ttl(ttl) }}, {{ get_tags }}) == 0)
C.KR_RULE_SUB_{{ type.upper() }}, {{ local_data_ttl(ttl) }}, {{ policy_get_tagset(tags) }}) == 0)
{%- endmacro %}
......@@ -49,7 +49,11 @@ policy.TAGS_ASSIGN({{ string_table(tags) }})
{%- endmacro %}
{% macro policy_get_tagset(tags) -%}
{%- if tags -%}
policy.get_tagset({{ string_table(tags) }})
{%- else -%}
0
{%- endif -%}
{%- endmacro %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment