2019-09-09 07:13:06 +02:00
---
- name : Fail if Synapse Simple Antispam blocked homeservers is not set
2022-07-18 09:39:08 +02:00
ansible.builtin.fail :
2019-09-09 07:13:06 +02: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 11:21:09 +02:00
when : "matrix_synapse_ext_spam_checker_synapse_simple_antispam_config_blocked_homeservers | length == 0"
2019-09-09 07:13:06 +02:00
2022-11-05 11:09:32 +01:00
- name : Ensure git installed
ansible.builtin.package :
name : git
2019-09-09 07:13:06 +02:00
state : present
2020-03-28 11:39:15 +01:00
2019-09-09 07:13:06 +02:00
- name : Clone synapse-simple-antispam git repository
2022-07-18 09:39:08 +02:00
ansible.builtin.git :
2019-09-09 07:13:06 +02: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 09:39:08 +02:00
- ansible.builtin.set_fact :
2022-01-19 15:35:55 +01:00
matrix_synapse_modules : >
2022-05-18 14:43:39 +02: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 07:13:06 +02:00
matrix_synapse_container_extra_arguments : >
2022-05-18 14:43:39 +02:00
{{
2022-07-18 10:22:05 +02:00
matrix_synapse_container_extra_arguments | default([])
2022-05-18 14:43:39 +02: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" ]
}}