2019-05-08 14:26:15 +00:00
---
2019-05-15 00:34:31 +00:00
# If the matrix-synapse role is not used, `matrix_synapse_role_executed` won't exist.
# We don't want to fail in such cases.
- name : Fail if matrix-synapse role already executed
fail :
msg : >-
The matrix-bridge-mautrix-facebook role needs to execute before the matrix-synapse role.
when : "matrix_synapse_role_executed|default(False)"
2019-05-08 14:26:15 +00:00
- name : Ensure Mautrix Facebook image is pulled
docker_image :
name : "{{ matrix_mautrix_facebook_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_mautrix_facebook_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_mautrix_facebook_docker_image_force_pull }}"
2020-03-15 08:15:27 +00:00
when : matrix_mautrix_facebook_enabled|bool and not matrix_mautrix_facebook_container_image_self_build
2020-02-21 06:56:28 +00:00
2020-03-07 23:24:00 +00:00
- name : Ensure Mautrix Facebook paths exist
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 :
2020-03-18 16:24:03 +00:00
- { path : "{{ matrix_mautrix_facebook_base_path }}" , when : true }
- { path : "{{ matrix_mautrix_facebook_config_path }}" , when : true }
- { path : "{{ matrix_mautrix_facebook_data_path }}" , when : true }
- { path : "{{ matrix_mautrix_facebook_docker_src_files_path }}" , when : "{{ matrix_mautrix_facebook_container_image_self_build }}" }
when : item.when|bool
2020-03-07 23:24:00 +00:00
- name : Ensure Mautrix Facebook repository is present on self-build
2020-02-21 06:56:28 +00:00
git :
repo : https://github.com/tulir/mautrix-facebook.git
2020-03-07 23:28:14 +00:00
dest : "{{ matrix_mautrix_facebook_docker_src_files_path }}"
2020-02-21 06:56:28 +00:00
# version: "{{ matrix_coturn_docker_image.split(':')[1] }}"
force : "yes"
2020-04-06 16:36:17 +00:00
register : matrix_mautrix_facebook_git_pull_results
2020-03-15 08:15:27 +00:00
when : "matrix_mautrix_facebook_enabled|bool and matrix_mautrix_facebook_container_image_self_build"
2020-02-21 06:56:28 +00:00
2020-03-15 09:34:35 +00:00
- name : Ensure Mautrix Facebook Docker image is built
2020-02-21 06:56:28 +00:00
docker_image :
name : "{{ matrix_mautrix_facebook_docker_image }}"
source : build
2020-04-06 16:36:17 +00:00
force_source : yes
2020-02-21 06:56:28 +00:00
build :
dockerfile : Dockerfile
2020-03-07 23:28:14 +00:00
path : "{{ matrix_mautrix_facebook_docker_src_files_path }}"
2020-02-21 06:56:28 +00:00
pull : yes
2020-04-06 16:36:17 +00:00
when : "matrix_mautrix_facebook_enabled|bool and matrix_mautrix_facebook_container_image_self_build and matrix_mautrix_facebook_git_pull_results.changed"
2019-06-07 11:50:55 +00:00
- name : Check if an old database file already exists
stat :
path : "{{ matrix_mautrix_facebook_base_path }}/mautrix-facebook.db"
register : matrix_mautrix_facebook_stat_database
- name : (Data relocation) Ensure matrix-mautrix-facebook.service is stopped
service :
name : matrix-mautrix-facebook
state : stopped
daemon_reload : yes
failed_when : false
when : "matrix_mautrix_facebook_stat_database.stat.exists"
- name : (Data relocation) Move mautrix-facebook database file to ./data directory
command : "mv {{ matrix_mautrix_facebook_base_path }}/mautrix-facebook.db {{ matrix_mautrix_facebook_data_path }}/mautrix-facebook.db"
when : "matrix_mautrix_facebook_stat_database.stat.exists"
2019-06-07 11:04:59 +00:00
- name : Ensure mautrix-facebook config.yaml installed
copy :
content : "{{ matrix_mautrix_facebook_configuration|to_nice_yaml }}"
2019-06-07 11:50:55 +00:00
dest : "{{ matrix_mautrix_facebook_config_path }}/config.yaml"
2019-05-08 14:26:15 +00:00
mode : 0644
owner : "{{ matrix_user_username }}"
2020-05-01 17:59:32 +00:00
group : "{{ matrix_user_groupname }}"
2019-06-07 11:04:59 +00:00
- name : Ensure mautrix-facebook registration.yaml installed
copy :
content : "{{ matrix_mautrix_facebook_registration|to_nice_yaml }}"
2019-06-07 11:50:55 +00:00
dest : "{{ matrix_mautrix_facebook_config_path }}/registration.yaml"
2019-06-07 11:04:59 +00:00
mode : 0644
owner : "{{ matrix_user_username }}"
2020-05-01 17:59:32 +00:00
group : "{{ matrix_user_groupname }}"
2019-05-08 14:26:15 +00:00
- name : Ensure matrix-mautrix-facebook.service installed
template :
2019-05-15 00:34:31 +00:00
src : "{{ role_path }}/templates/systemd/matrix-mautrix-facebook.service.j2"
2020-03-24 18:27:58 +00:00
dest : "{{ matrix_systemd_path }}/matrix-mautrix-facebook.service"
2019-05-08 14:26:15 +00:00
mode : 0644
register : matrix_mautrix_facebook_systemd_service_result
- name : Ensure systemd reloaded after matrix-mautrix-facebook.service installation
service :
daemon_reload : yes
2019-05-15 00:34:31 +00:00
when : "matrix_mautrix_facebook_systemd_service_result.changed"