2019-05-17 21:36:54 +00:00
---
- name : Fail if Shared Secret Auth secret not set
2022-07-18 07:39:08 +00:00
ansible.builtin.fail :
2019-05-17 21:36:54 +00:00
msg : "Shared Secret Auth is enabled, but no secret has been set in matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret"
when : "matrix_synapse_ext_password_provider_shared_secret_auth_shared_secret == ''"
2021-11-03 15:25:01 +00:00
- name : Fail if no Shared Secret Auth login types enabled
2022-07-18 07:39:08 +00:00
ansible.builtin.fail :
2021-11-03 15:25:01 +00:00
msg : "Shared Secret Auth is enabled, but none of the login types are"
when : "not (matrix_synapse_ext_password_provider_shared_secret_auth_m_login_password_support_enabled or matrix_synapse_ext_password_provider_shared_secret_auth_com_devture_shared_secret_auth_support_enabled)"
2019-05-17 21:36:54 +00:00
- name : Download matrix-synapse-shared-secret-auth
2022-07-18 07:39:08 +00:00
ansible.builtin.get_url :
2019-05-17 21:36:54 +00:00
url : "{{ matrix_synapse_ext_password_provider_shared_secret_auth_download_url }}"
dest : "{{ matrix_synapse_ext_path }}/shared_secret_authenticator.py"
force : true
mode : 0440
owner : "{{ matrix_user_username }}"
2020-05-01 17:59:32 +00:00
group : "{{ matrix_user_groupname }}"
2022-04-19 19:01:14 +00:00
register : result
retries : "{{ matrix_geturl_retries_count }}"
delay : "{{ matrix_geturl_retries_delay }}"
until : result is not failed
2019-05-17 21:36:54 +00:00
2022-07-18 07:39:08 +00:00
- ansible.builtin.set_fact :
2021-11-03 15:25:01 +00:00
matrix_synapse_modules : |
{{
2022-07-18 08:22:05 +00:00
matrix_synapse_modules | default([])
2021-11-03 15:25:01 +00:00
+
[
{
"module": "shared_secret_authenticator.SharedSecretAuthProvider" ,
"config": matrix_synapse_ext_password_provider_shared_secret_config
}
]
}}
2019-05-17 21:36:54 +00:00
2019-05-29 06:59:50 +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 }}/shared_secret_authenticator.py,dst={{ matrix_synapse_in_container_python_packages_path }}/shared_secret_authenticator.py,ro" ]
}}
2019-05-17 21:36:54 +00:00
matrix_synapse_additional_loggers : >
2022-05-18 12:43:39 +00:00
{{
matrix_synapse_additional_loggers
+
[ {'name': 'shared_secret_authenticator', 'level' : 'INFO' }]
}}