Skip to content

Commit 068ca97

Browse files
authored
Merge pull request #857 from AtlasOfLivingAustralia/bie-blacklist-def
Correct empty bie blacklist when blacklist_source is not defined
2 parents 41ec3d9 + 6ae0488 commit 068ca97

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,27 @@
11
{
22
"metadata": {
33
"title": "Blacklist for external websites",
4-
"description": "A list sources that should not have articles fetched from an external site. This is usually because the article is subject to controversy or is not correct for Australia.",
4+
"description": "A list sources that should not have articles fetched from an external site. This is usually because the article is subject to controversy or is not correct for {{ orgCountry | default('Australia') }}.",
55
"version": "1.0",
66
"created": "{{ ansible_date_time.date }}"
77
},
88
"blacklist": [
9-
{% if blacklist_source is not none %}
9+
{% if blacklist_source is defined and blacklist_source | length > 0 %}
1010
{% for pattern in blacklist_source.split('|') %}
1111
{% set elements = pattern.split('$') %}
1212
{
1313
{% if elements[0] is defined and elements[0] | length %}
1414
"source": "{{ elements[0] }}"{% if elements | length > 1 %},{% endif %}
15-
1615
{% endif %}
1716
{% if elements[1] is defined and elements[1] | length %}
1817
"title": "{{ elements[1] }}"{% if elements | length > 2 %},{% endif %}
19-
2018
{% endif %}
2119
{% if elements[2] is defined and elements[2] | length %}
2220
"name": "{{ elements[2] }}"
2321
{% endif %}
2422
}{% if not loop.last %},{% endif %}
25-
2623
{% endfor %}
27-
{% endif %}
24+
{% else %}
2825
]
26+
{% endif %}
2927
}

0 commit comments

Comments
 (0)