2018-05-25 18:58:53 +00:00
---
2023-10-10 08:10:21 +00:00
- when : matrix_coturn_turn_external_ip_address_auto_detection_enabled | bool
block :
2023-10-11 08:12:28 +00:00
- name : Fail if enabled, but EchoIP service URL unset
when : matrix_coturn_turn_external_ip_address_auto_detection_echoip_service_url == ''
2023-10-10 08:10:21 +00:00
ansible.builtin.fail :
msg : "To use the external IP address auto-detection feature, you need to set matrix_coturn_turn_external_ip_address_auto_detection_echoip_service_url"
# NOTE:
# `ansible.builtin.uri` does not provide a way to configure whether IPv4 or IPv6 is used.
# Luckily, the default instance we use does not define AAAA records for now, so it's always IPv4.
- name : Fetch IP address information from EchoIP service
ansible.builtin.uri :
url : "{{ matrix_coturn_turn_external_ip_address_auto_detection_echoip_service_url }}"
headers :
Content-Type : application/json
follow_redirects : none
validate_certs : "{{ matrix_coturn_turn_external_ip_address_auto_detection_echoip_validate_certs }}"
register : result_matrix_coturn_turn_external_ip_address_auto_detection_echoip_response
ignore_errors : true
check_mode : false
retries : "{{ matrix_coturn_turn_external_ip_address_auto_detection_echoip_service_retries_count }}"
delay : "{{ matrix_coturn_turn_external_ip_address_auto_detection_echoip_service_retries_delay }}"
until : not result_matrix_coturn_turn_external_ip_address_auto_detection_echoip_response.failed
2023-10-11 08:12:28 +00:00
- name : Fail if EchoIP service failed
when : "(result_matrix_coturn_turn_external_ip_address_auto_detection_echoip_response.failed or 'json' not in result_matrix_coturn_turn_external_ip_address_auto_detection_echoip_response)"
2023-10-10 08:10:21 +00:00
ansible.builtin.fail :
msg : "Failed contacting EchoIP service API at `{{ matrix_coturn_turn_external_ip_address_auto_detection_echoip_service_url }}` (controlled by `matrix_coturn_turn_external_ip_address_auto_detection_echoip_service_url`). Full error: {{ result_matrix_coturn_turn_external_ip_address_auto_detection_echoip_response }}"
- ansible.builtin.set_fact :
matrix_coturn_turn_external_ip_address : "{{ result_matrix_coturn_turn_external_ip_address_auto_detection_echoip_response.json.ip }}"
2020-03-07 23:24:00 +00:00
- name : Ensure Matrix Coturn path exists
2022-07-18 07:39:08 +00:00
ansible.builtin.file :
2020-03-18 16:24:03 +00:00
path : "{{ item.path }}"
2020-03-07 23:24:00 +00:00
state : directory
mode : 0750
owner : "{{ matrix_user_username }}"
2020-05-01 17:59:32 +00:00
group : "{{ matrix_user_groupname }}"
2020-03-07 23:24:00 +00:00
with_items :
2022-02-05 20:32:54 +00:00
- {path : "{{ matrix_coturn_docker_src_files_path }}" , when : "{{ matrix_coturn_container_image_self_build }}" }
2022-07-18 08:22:05 +00:00
when : "item.when | bool"
2020-03-07 23:24:00 +00:00
2018-05-25 18:58:53 +00:00
- name : Ensure Coturn image is pulled
2022-10-28 11:20:17 +00:00
community.docker.docker_image :
2018-11-01 06:46:47 +00:00
name : "{{ matrix_coturn_docker_image }}"
2019-05-22 10:43:33 +00:00
source : "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
2019-06-10 11:23:51 +00:00
force_source : "{{ matrix_coturn_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
force : "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_coturn_docker_image_force_pull }}"
2022-07-18 08:22:05 +00:00
when : "not matrix_coturn_container_image_self_build | bool"
2022-03-17 15:37:11 +00:00
register : result
2022-11-04 14:44:29 +00:00
retries : "{{ devture_playbook_help_container_retries_count }}"
delay : "{{ devture_playbook_help_container_retries_delay }}"
2022-03-17 15:37:11 +00:00
until : result is not failed
2020-02-19 21:18:17 +00:00
2022-09-27 08:38:33 +00:00
- when : "matrix_coturn_container_image_self_build | bool"
block :
2021-01-14 21:23:46 +00:00
- name : Ensure Coturn repository is present on self-build
2022-07-18 07:39:08 +00:00
ansible.builtin.git :
2021-01-14 21:23:46 +00:00
repo : "{{ matrix_coturn_container_image_self_build_repo }}"
dest : "{{ matrix_coturn_docker_src_files_path }}"
2021-04-24 17:31:25 +00:00
version : "{{ matrix_coturn_container_image_self_build_repo_version }}"
2021-01-14 21:23:46 +00:00
force : "yes"
2022-04-14 05:52:37 +00:00
become : true
become_user : "{{ matrix_user_username }}"
2021-01-14 21:23:46 +00:00
register : matrix_coturn_git_pull_results
2020-02-19 21:18:17 +00:00
2021-01-14 21:23:46 +00:00
- name : Ensure Coturn Docker image is built
2022-10-28 11:20:17 +00:00
community.docker.docker_image :
2021-01-14 21:23:46 +00:00
name : "{{ matrix_coturn_docker_image }}"
source : build
2021-05-20 05:43:20 +00:00
force_source : "{{ matrix_coturn_git_pull_results.changed if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
force : "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_coturn_git_pull_results.changed }}"
2021-01-14 21:23:46 +00:00
build :
2021-04-24 17:31:25 +00:00
dockerfile : "{{ matrix_coturn_container_image_self_build_repo_dockerfile_path }}"
2021-01-14 21:23:46 +00:00
path : "{{ matrix_coturn_docker_src_files_path }}"
2022-02-05 20:32:54 +00:00
pull : true
2018-05-25 18:58:53 +00:00
- name : Ensure Coturn configuration path exists
2022-07-18 07:39:08 +00:00
ansible.builtin.file :
2018-05-25 18:58:53 +00:00
path : "{{ matrix_coturn_base_path }}"
state : directory
mode : 0750
owner : "{{ matrix_user_username }}"
2020-05-01 17:59:32 +00:00
group : "{{ matrix_user_groupname }}"
2018-05-25 18:58:53 +00:00
- name : Ensure turnserver.conf installed
2022-07-18 07:39:08 +00:00
ansible.builtin.template :
2019-01-12 15:53:00 +00:00
src : "{{ role_path }}/templates/turnserver.conf.j2"
2018-05-25 18:58:53 +00:00
dest : "{{ matrix_coturn_config_path }}"
mode : 0644
2021-01-14 21:23:46 +00:00
owner : "{{ matrix_user_username }}"
group : "{{ matrix_user_groupname }}"
2018-05-25 18:58:53 +00:00
2023-03-07 15:28:10 +00:00
- name : Ensure Coturn network is created in Docker
when : matrix_coturn_docker_network not in ['', 'host']
2022-10-28 11:20:17 +00:00
community.docker.docker_network :
2020-08-02 19:13:45 +00:00
name : "{{ matrix_coturn_docker_network }}"
driver : bridge
2019-03-18 15:36:00 +00:00
2018-05-25 18:58:53 +00:00
- name : Ensure matrix-coturn.service installed
2022-07-18 07:39:08 +00:00
ansible.builtin.template :
2018-05-25 18:58:53 +00:00
src : "{{ role_path }}/templates/systemd/matrix-coturn.service.j2"
2022-11-04 14:38:38 +00:00
dest : "{{ devture_systemd_docker_base_systemd_path }}/matrix-coturn.service"
2018-05-25 18:58:53 +00:00
mode : 0644
2019-03-03 09:55:15 +00:00
2019-03-19 08:24:39 +00:00
# This may be unnecessary when more long-lived certificates are used.
# We optimize for the common use-case though (short-lived Let's Encrypt certificates).
# Reloading doesn't hurt anyway, so there's no need to make this more flexible.
2021-01-14 21:23:46 +00:00
- name : Ensure reloading systemd units installed, if necessary
2022-07-18 07:39:08 +00:00
ansible.builtin.template :
2021-01-14 21:23:46 +00:00
src : "{{ role_path }}/templates/systemd/{{ item }}.j2"
2022-11-04 14:38:38 +00:00
dest : "{{ devture_systemd_docker_base_systemd_path }}/{{ item }}"
2020-09-06 07:49:19 +00:00
mode : 0644
2022-07-18 08:22:05 +00:00
when : "matrix_coturn_tls_enabled | bool"
2021-01-14 21:23:46 +00:00
with_items :
- matrix-coturn-reload.service
- matrix-coturn-reload.timer
2019-01-16 16:05:48 +00:00
2021-01-14 20:11:38 +00:00
# A similar task exists in `setup_uninstall.yml`
2021-01-14 21:23:46 +00:00
- name : Ensure reloading systemd units uninstalled, if unnecessary
2022-07-18 07:39:08 +00:00
ansible.builtin.file :
2021-01-14 21:23:46 +00:00
path : "{{ item }}"
2019-03-19 08:24:39 +00:00
state : absent
2022-07-18 08:22:05 +00:00
when : "not matrix_coturn_tls_enabled | bool"
2021-01-14 21:23:46 +00:00
with_items :
- matrix-coturn-reload.service
- matrix-coturn-reload.timer