2021-01-24 06:41:11 +00:00
---
- name : Check Matrix Client API
2022-07-18 07:39:08 +00:00
ansible.builtin.uri :
2021-01-24 06:41:11 +00:00
url : "{{ matrix_dendrite_client_api_url_endpoint_public }}"
follow_redirects : none
validate_certs : "{{ matrix_dendrite_self_check_validate_certificates }}"
register : result_matrix_dendrite_client_api
ignore_errors : true
2022-02-05 20:32:54 +00:00
check_mode : false
2021-01-24 06:41:11 +00:00
- name : Fail if Matrix Client API not working
2022-07-18 07:39:08 +00:00
ansible.builtin.fail :
2021-01-24 06:41:11 +00:00
msg : "Failed checking Matrix Client API is up at `{{ matrix_server_fqn_matrix }}` (checked endpoint: `{{ matrix_dendrite_client_api_url_endpoint_public }}`). Is Dendrite running? Is port 443 open in your firewall? Full error: {{ result_matrix_dendrite_client_api }}"
2021-12-18 08:50:44 +00:00
when : "(result_matrix_dendrite_client_api.failed or 'json' not in result_matrix_dendrite_client_api)"
2021-01-24 06:41:11 +00:00
- name : Report working Matrix Client API
2022-07-18 07:39:08 +00:00
ansible.builtin.debug :
2021-01-24 06:41:11 +00:00
msg : "The Matrix Client API at `{{ matrix_server_fqn_matrix }}` (checked endpoint: `{{ matrix_dendrite_client_api_url_endpoint_public }}`) is working"