2019-09-09 05:13:06 +00:00
---
- name : Fail if Synapse Simple Antispam blocked homeservers is not set
2022-07-18 07:39:08 +00:00
ansible.builtin.fail :
2019-09-09 05:13:06 +00:00
msg : "Synapse Simple Antispam is enabled, but no blocked homeservers have been set in matrix_synapse_ext_spam_checker_synapse_simple_antispam_config_blocked_homeservers"
2022-09-18 09:21:09 +00:00
when : "matrix_synapse_ext_spam_checker_synapse_simple_antispam_config_blocked_homeservers | length == 0"
2019-09-09 05:13:06 +00:00
2022-11-05 10:09:32 +00:00
- name : Ensure git installed
ansible.builtin.package :
name : git
2019-09-09 05:13:06 +00:00
state : present
2020-03-28 10:39:15 +00:00
2019-09-09 05:13:06 +00:00
- name : Clone synapse-simple-antispam git repository
2022-07-18 07:39:08 +00:00
ansible.builtin.git :
2019-09-09 05:13:06 +00:00
repo : "{{ matrix_synapse_ext_spam_checker_synapse_simple_antispam_git_repository_url }}"
version : "{{ matrix_synapse_ext_spam_checker_synapse_simple_antispam_git_version }}"
dest : "{{ matrix_synapse_ext_path }}/synapse-simple-antispam"
become : true
become_user : "{{ matrix_user_username }}"
2022-07-18 07:39:08 +00:00
- ansible.builtin.set_fact :
2022-01-19 14:35:55 +00:00
matrix_synapse_modules : >
2022-05-18 12:43:39 +00:00
{{
matrix_synapse_modules
+
[ {
"module": "synapse_simple_antispam.AntiSpamInvites" ,
"config": {
"blocked_homeservers": matrix_synapse_ext_spam_checker_synapse_simple_antispam_config_blocked_homeservers
}
}]
}}
2019-09-09 05:13:06 +00:00
matrix_synapse_container_extra_arguments : >
2022-05-18 12:43:39 +00:00
{{
2022-07-18 08:22:05 +00:00
matrix_synapse_container_extra_arguments | default([])
2022-05-18 12:43:39 +00:00
+
[ "--mount type=bind,src={{ matrix_synapse_ext_path }}/synapse-simple-antispam/synapse_simple_antispam,dst={{ matrix_synapse_in_container_python_packages_path }}/synapse_simple_antispam,ro" ]
}}