2019-01-31 05:37:23 +00:00
---
2019-05-16 00:07:40 +00:00
2022-11-27 09:27:01 +00:00
- ansible.builtin.include_role :
2022-11-05 07:15:35 +00:00
name : custom/matrix-base
tasks_from : ensure_openssl_installed
2022-01-20 05:58:39 +00:00
2019-06-19 09:28:58 +00:00
- name : Ensure Appservice IRC paths exist
2022-07-18 07:39:08 +00:00
ansible.builtin.file :
2021-01-22 20:42:40 +00:00
path : "{{ item.path }}"
2019-01-31 05:37:23 +00:00
state : directory
mode : 0750
owner : "{{ matrix_user_username }}"
2020-05-01 17:59:32 +00:00
group : "{{ matrix_user_groupname }}"
2019-06-19 09:28:58 +00:00
with_items :
2022-02-05 20:32:54 +00:00
- {path : "{{ matrix_appservice_irc_base_path }}" , when : true }
- {path : "{{ matrix_appservice_irc_config_path }}" , when : true }
- {path : "{{ matrix_appservice_irc_data_path }}" , when : true }
- {path : "{{ matrix_appservice_irc_docker_src_files_path }}" , when : "{{ matrix_appservice_irc_container_image_self_build }}" }
2022-07-18 08:22:05 +00:00
when : item.when | bool
2019-06-19 09:28:58 +00:00
- name : Check if an old passkey file already exists
2022-07-18 08:22:05 +00:00
ansible.builtin.stat :
2019-06-19 09:28:58 +00:00
path : "{{ matrix_appservice_irc_base_path }}/passkey.pem"
register : matrix_appservice_irc_stat_passkey
2022-09-27 08:38:33 +00:00
- when : "matrix_appservice_irc_stat_passkey.stat.exists"
block :
2020-12-22 17:32:43 +00:00
- name : (Data relocation) Ensure matrix-appservice-irc.service is stopped
2022-07-18 07:39:08 +00:00
ansible.builtin.service :
2020-12-22 17:32:43 +00:00
name : matrix-appservice-irc
state : stopped
2022-02-05 20:32:54 +00:00
daemon_reload : true
2020-12-22 17:32:43 +00:00
failed_when : false
2019-06-19 09:28:58 +00:00
2020-12-22 17:32:43 +00:00
- name : (Data relocation) Move AppService IRC passkey.pem file to ./data directory
2022-07-18 12:08:10 +00:00
ansible.builtin.command :
cmd : "mv {{ matrix_appservice_irc_base_path }}/passkey.pem {{ matrix_appservice_irc_data_path }}/passkey.pem"
register : matrix_appservice_irc_move_passkey_result
changed_when : matrix_appservice_irc_move_passkey_result.rc == 0
2019-06-19 09:28:58 +00:00
2020-12-22 17:32:43 +00:00
- name : (Data relocation) Move AppService IRC database files to ./data directory
2022-07-18 12:08:10 +00:00
ansible.builtin.command :
cmd : "mv {{ matrix_appservice_irc_base_path }}/{{ item }} {{ matrix_appservice_irc_data_path }}/{{ item }}"
register : matrix_appservice_irc_move_dbs_result
changed_when : matrix_appservice_irc_move_dbs_result.rc == 0
2020-12-22 17:32:43 +00:00
with_items :
- rooms.db
- users.db
failed_when : false
2019-01-31 05:37:23 +00:00
2022-07-18 07:39:08 +00:00
- ansible.builtin.set_fact :
2020-12-22 17:32:43 +00:00
matrix_appservice_irc_requires_restart : false
2022-09-27 08:38:33 +00:00
- when : "matrix_appservice_irc_database_engine == 'postgres'"
block :
2020-12-22 17:32:43 +00:00
- name : Check if a nedb database already exists
2022-07-18 08:22:05 +00:00
ansible.builtin.stat :
2020-12-22 17:32:43 +00:00
path : "{{ matrix_appservice_irc_data_path }}/users.db"
register : matrix_appservice_irc_nedb_database_path_local_stat_result
2022-09-27 08:38:33 +00:00
- when : "matrix_appservice_irc_nedb_database_path_local_stat_result.stat.exists | bool"
block :
2022-11-24 13:19:42 +00:00
- ansible.builtin.include_tasks : "{{ role_path }}/tasks/migrate_nedb_to_postgres.yml"
2020-12-22 17:32:43 +00:00
2022-07-18 07:39:08 +00:00
- ansible.builtin.set_fact :
2020-12-22 17:32:43 +00:00
matrix_appservice_irc_requires_restart : true
- name : Ensure Appservice IRC image is pulled
2022-10-28 11:20:17 +00:00
community.docker.docker_image :
2020-12-22 17:32:43 +00:00
name : "{{ matrix_appservice_irc_docker_image }}"
source : "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
force_source : "{{ matrix_appservice_irc_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_appservice_irc_docker_image_force_pull }}"
2022-07-18 08:22:05 +00:00
when : "matrix_appservice_irc_enabled | bool and not matrix_appservice_irc_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
2021-01-22 20:28:53 +00:00
- name : Ensure matrix-appservice-irc repository is present when self-building
2022-07-18 07:39:08 +00:00
ansible.builtin.git :
2021-01-22 20:28:53 +00:00
repo : "{{ matrix_appservice_irc_docker_repo }}"
2022-07-18 11:43:52 +00:00
version : "{{ matrix_appservice_irc_docker_repo_version }}"
2021-01-22 20:28:53 +00:00
dest : "{{ matrix_appservice_irc_docker_src_files_path }}"
force : "yes"
2022-04-14 05:52:37 +00:00
become : true
become_user : "{{ matrix_user_username }}"
2021-01-22 20:28:53 +00:00
register : matrix_appservice_irc_git_pull_results
2022-07-18 08:22:05 +00:00
when : "matrix_appservice_irc_enabled | bool and matrix_appservice_irc_container_image_self_build | bool"
2021-01-22 20:28:53 +00:00
2021-05-20 05:43:20 +00:00
- name : Ensure matrix-appservice-irc Docker image is built
2022-10-28 11:20:17 +00:00
community.docker.docker_image :
2021-01-22 20:28:53 +00:00
name : "{{ matrix_appservice_irc_docker_image }}"
source : build
2021-05-20 05:43:20 +00:00
force_source : "{{ matrix_appservice_irc_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_appservice_irc_git_pull_results.changed }}"
2021-01-22 20:28:53 +00:00
build :
dockerfile : Dockerfile
path : "{{ matrix_appservice_irc_docker_src_files_path }}"
2022-02-05 20:32:54 +00:00
pull : true
2022-07-18 08:22:05 +00:00
when : "matrix_appservice_irc_enabled | bool and matrix_appservice_irc_container_image_self_build | bool and matrix_appservice_irc_git_pull_results.changed"
2020-12-22 17:32:43 +00:00
2019-01-31 05:37:23 +00:00
- name : Ensure Matrix Appservice IRC config installed
2022-07-18 07:39:08 +00:00
ansible.builtin.copy :
2022-07-18 08:22:05 +00:00
content : "{{ matrix_appservice_irc_configuration | to_nice_yaml(indent=2, width=999999) }}"
2019-06-19 09:28:58 +00:00
dest : "{{ matrix_appservice_irc_config_path }}/config.yaml"
2019-01-31 05:37:23 +00:00
mode : 0644
owner : "{{ matrix_user_username }}"
2020-05-01 17:59:32 +00:00
group : "{{ matrix_user_groupname }}"
2019-01-31 05:37:23 +00:00
2019-06-19 09:28:58 +00:00
- name : Generate Appservice IRC passkey if it doesn't exist
2023-03-07 15:28:10 +00:00
ansible.builtin.shell :
cmd : "{{ matrix_host_command_openssl }} genpkey -out {{ matrix_appservice_irc_data_path }}/passkey.pem -outform PEM -algorithm RSA -pkeyopt rsa_keygen_bits:2048"
creates : "{{ matrix_appservice_irc_data_path }}/passkey.pem"
2019-07-08 07:13:45 +00:00
become : true
become_user : "{{ matrix_user_username }}"
2019-01-31 05:37:23 +00:00
2019-07-08 07:13:45 +00:00
# In the past, we used to generate the passkey.pem file with root, so permissions may not be okay.
# Fix it.
- name : (Migration) Ensure Appservice IRC passkey permissions are okay
2022-07-18 07:39:08 +00:00
ansible.builtin.file :
2019-07-08 07:13:45 +00:00
path : "{{ matrix_appservice_irc_data_path }}/passkey.pem"
mode : 0644
owner : "{{ matrix_user_username }}"
2020-05-01 17:59:32 +00:00
group : "{{ matrix_user_groupname }}"
2019-07-08 07:13:45 +00:00
2019-06-19 09:28:58 +00:00
# Ideally, we'd like to generate the final registration.yaml file by ourselves.
#
# However, the IRC bridge supports multiple servers, which leads to multiple
# users/aliases/rooms rules in the registration file.
#
# Generating a proper file by ourselves is complicated and may lead to deviation
# from what the bridge is doing.
#
# Instead, we do another hacky thing - asking the bridge to generate a template,
# and then we parse it and fix it up with our own AS/HS token.
# We need to do this, because:
# - we'd like to have an up-to-date registration file
# - we can achieve this by asking the bridge to rebuild it each time
# - however, the bridge insists on regenerating all tokens each time
# - .. which is not friendly for integrating with the homeserver
#
# So we have a hybrid approach. We ask the bridge to always generate
# an up-to-date file, and we fix it up with some static values later on,
# to produce a final registration.yaml file, as we desire.
- name : Generate Appservice IRC registration-template.yaml
2022-07-18 07:39:08 +00:00
ansible.builtin.shell : >-
2022-11-04 14:39:35 +00:00
{{ devture_systemd_docker_base_host_command_docker }} run --rm --name matrix-appservice-irc-gen
2019-06-19 09:28:58 +00:00
--user={{ matrix_user_uid }}:{{ matrix_user_gid }}
--cap-drop=ALL
-v {{ matrix_appservice_irc_config_path }}:/config:z
-v {{ matrix_appservice_irc_data_path }}:/data:z
2020-01-25 08:04:21 +00:00
--entrypoint=/bin/bash
2019-03-05 07:20:36 +00:00
{{ matrix_appservice_irc_docker_image }}
2020-01-25 08:04:21 +00:00
-c
'node app.js
2019-03-05 07:20:36 +00:00
-r
2019-06-19 09:28:58 +00:00
-f /config/registration-template.yaml
2019-03-05 07:20:36 +00:00
-u "http://matrix-appservice-irc:9999"
2019-06-19 09:28:58 +00:00
-c /config/config.yaml
2020-01-25 08:04:21 +00:00
-l irc_bot'
2019-06-19 09:28:58 +00:00
changed_when : false
- name : Read Appservice IRC registration-template.yaml
2022-07-18 07:39:08 +00:00
ansible.builtin.slurp :
2019-06-19 09:28:58 +00:00
src : "{{ matrix_appservice_irc_config_path }}/registration-template.yaml"
register : matrix_appservice_irc_registration_template_slurp
2019-01-31 05:37:23 +00:00
2019-06-19 09:28:58 +00:00
- name : Remove unnecessary Appservice IRC registration-template.yaml
2022-07-18 07:39:08 +00:00
ansible.builtin.file :
2019-06-19 09:28:58 +00:00
path : "{{ matrix_appservice_irc_config_path }}/registration-template.yaml"
state : absent
changed_when : false
- name : Parse registration-template.yaml
2022-07-18 07:39:08 +00:00
ansible.builtin.set_fact :
2019-06-19 09:28:58 +00:00
matrix_appservice_irc_registration_template : "{{ matrix_appservice_irc_registration_template_slurp['content'] | b64decode | from_yaml }}"
- name : Combine registration-template.yaml and own registration override config
2022-07-18 07:39:08 +00:00
ansible.builtin.set_fact :
2022-07-18 09:28:39 +00:00
matrix_appservice_irc_registration : "{{ matrix_appservice_irc_registration_template | combine(matrix_appservice_irc_registration_override, recursive=True) }}"
2019-06-19 09:28:58 +00:00
- name : Ensure Appservice IRC registration.yaml installed
2022-07-18 07:39:08 +00:00
ansible.builtin.copy :
2022-07-18 08:22:05 +00:00
content : "{{ matrix_appservice_irc_registration | to_nice_yaml(indent=2, width=999999) }}"
2019-06-19 09:28:58 +00:00
dest : "{{ matrix_appservice_irc_config_path }}/registration.yaml"
mode : 0644
2019-03-12 17:17:51 +00:00
owner : "{{ matrix_user_username }}"
2020-05-01 17:59:32 +00:00
group : "{{ matrix_user_groupname }}"
2019-06-19 09:28:58 +00:00
- name : Ensure matrix-appservice-irc.service installed
2022-07-18 07:39:08 +00:00
ansible.builtin.template :
2019-06-19 09:28:58 +00:00
src : "{{ role_path }}/templates/systemd/matrix-appservice-irc.service.j2"
2022-11-04 14:38:38 +00:00
dest : "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-irc.service"
2019-06-19 09:28:58 +00:00
mode : 0644
register : matrix_appservice_irc_systemd_service_result
2020-12-22 17:34:08 +00:00
- name : Ensure matrix-appservice-irc.service restarted, if necessary
2022-07-18 07:39:08 +00:00
ansible.builtin.service :
2020-12-22 17:34:08 +00:00
name : "matrix-appservice-irc.service"
state : restarted
2022-11-27 08:02:45 +00:00
daemon_reload : true
2022-07-18 08:22:05 +00:00
when : "matrix_appservice_irc_requires_restart | bool"