2019-01-31 13:37:23 +08:00
---
2019-05-16 08:07:40 +08:00
2022-11-27 17:27:01 +08:00
- ansible.builtin.include_role :
2022-11-05 15:15:35 +08:00
name : custom/matrix-base
tasks_from : ensure_openssl_installed
2022-01-20 13:58:39 +08:00
2019-06-19 17:28:58 +08:00
- name : Ensure Appservice IRC paths exist
2022-07-18 15:39:08 +08:00
ansible.builtin.file :
2021-01-23 04:42:40 +08:00
path : "{{ item.path }}"
2019-01-31 13:37:23 +08:00
state : directory
mode : 0750
owner : "{{ matrix_user_username }}"
2020-05-02 01:59:32 +08:00
group : "{{ matrix_user_groupname }}"
2019-06-19 17:28:58 +08:00
with_items :
2022-02-06 04:32:54 +08: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 16:22:05 +08:00
when : item.when | bool
2019-06-19 17:28:58 +08:00
- name : Check if an old passkey file already exists
2022-07-18 16:22:05 +08:00
ansible.builtin.stat :
2019-06-19 17:28:58 +08:00
path : "{{ matrix_appservice_irc_base_path }}/passkey.pem"
register : matrix_appservice_irc_stat_passkey
2022-09-27 16:38:33 +08:00
- when : "matrix_appservice_irc_stat_passkey.stat.exists"
block :
2020-12-23 01:32:43 +08:00
- name : (Data relocation) Ensure matrix-appservice-irc.service is stopped
2022-07-18 15:39:08 +08:00
ansible.builtin.service :
2020-12-23 01:32:43 +08:00
name : matrix-appservice-irc
state : stopped
2022-02-06 04:32:54 +08:00
daemon_reload : true
2020-12-23 01:32:43 +08:00
failed_when : false
2019-06-19 17:28:58 +08:00
2020-12-23 01:32:43 +08:00
- name : (Data relocation) Move AppService IRC passkey.pem file to ./data directory
2022-07-18 20:08:10 +08: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 17:28:58 +08:00
2020-12-23 01:32:43 +08:00
- name : (Data relocation) Move AppService IRC database files to ./data directory
2022-07-18 20:08:10 +08: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-23 01:32:43 +08:00
with_items :
- rooms.db
- users.db
failed_when : false
2019-01-31 13:37:23 +08:00
2022-07-18 15:39:08 +08:00
- ansible.builtin.set_fact :
2020-12-23 01:32:43 +08:00
matrix_appservice_irc_requires_restart : false
2022-09-27 16:38:33 +08:00
- when : "matrix_appservice_irc_database_engine == 'postgres'"
block :
2020-12-23 01:32:43 +08:00
- name : Check if a nedb database already exists
2022-07-18 16:22:05 +08:00
ansible.builtin.stat :
2020-12-23 01:32:43 +08:00
path : "{{ matrix_appservice_irc_data_path }}/users.db"
register : matrix_appservice_irc_nedb_database_path_local_stat_result
2022-09-27 16:38:33 +08:00
- when : "matrix_appservice_irc_nedb_database_path_local_stat_result.stat.exists | bool"
block :
2022-11-24 21:19:42 +08:00
- ansible.builtin.include_tasks : "{{ role_path }}/tasks/migrate_nedb_to_postgres.yml"
2020-12-23 01:32:43 +08:00
2022-07-18 15:39:08 +08:00
- ansible.builtin.set_fact :
2020-12-23 01:32:43 +08:00
matrix_appservice_irc_requires_restart : true
- name : Ensure Appservice IRC image is pulled
2022-10-28 19:20:17 +08:00
community.docker.docker_image :
2020-12-23 01:32:43 +08: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 16:22:05 +08:00
when : "matrix_appservice_irc_enabled | bool and not matrix_appservice_irc_container_image_self_build | bool"
2022-03-17 23:37:11 +08:00
register : result
2022-11-04 22:44:29 +08:00
retries : "{{ devture_playbook_help_container_retries_count }}"
delay : "{{ devture_playbook_help_container_retries_delay }}"
2022-03-17 23:37:11 +08:00
until : result is not failed
2021-01-23 04:28:53 +08:00
- name : Ensure matrix-appservice-irc repository is present when self-building
2022-07-18 15:39:08 +08:00
ansible.builtin.git :
2021-01-23 04:28:53 +08:00
repo : "{{ matrix_appservice_irc_docker_repo }}"
2022-07-18 19:43:52 +08:00
version : "{{ matrix_appservice_irc_docker_repo_version }}"
2021-01-23 04:28:53 +08:00
dest : "{{ matrix_appservice_irc_docker_src_files_path }}"
force : "yes"
2022-04-14 13:52:37 +08:00
become : true
become_user : "{{ matrix_user_username }}"
2021-01-23 04:28:53 +08:00
register : matrix_appservice_irc_git_pull_results
2022-07-18 16:22:05 +08:00
when : "matrix_appservice_irc_enabled | bool and matrix_appservice_irc_container_image_self_build | bool"
2021-01-23 04:28:53 +08:00
2021-05-20 13:43:20 +08:00
- name : Ensure matrix-appservice-irc Docker image is built
2022-10-28 19:20:17 +08:00
community.docker.docker_image :
2021-01-23 04:28:53 +08:00
name : "{{ matrix_appservice_irc_docker_image }}"
source : build
2021-05-20 13:43:20 +08: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-23 04:28:53 +08:00
build :
dockerfile : Dockerfile
path : "{{ matrix_appservice_irc_docker_src_files_path }}"
2022-02-06 04:32:54 +08:00
pull : true
2022-07-18 16:22:05 +08: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-23 01:32:43 +08:00
2019-01-31 13:37:23 +08:00
- name : Ensure Matrix Appservice IRC config installed
2022-07-18 15:39:08 +08:00
ansible.builtin.copy :
2022-07-18 16:22:05 +08:00
content : "{{ matrix_appservice_irc_configuration | to_nice_yaml(indent=2, width=999999) }}"
2019-06-19 17:28:58 +08:00
dest : "{{ matrix_appservice_irc_config_path }}/config.yaml"
2019-01-31 13:37:23 +08:00
mode : 0644
owner : "{{ matrix_user_username }}"
2020-05-02 01:59:32 +08:00
group : "{{ matrix_user_groupname }}"
2019-01-31 13:37:23 +08:00
2019-06-19 17:28:58 +08:00
- name : Generate Appservice IRC passkey if it doesn't exist
2023-03-07 23:28:10 +08: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 15:13:45 +08:00
become : true
become_user : "{{ matrix_user_username }}"
2019-01-31 13:37:23 +08:00
2019-07-08 15:13:45 +08: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 15:39:08 +08:00
ansible.builtin.file :
2019-07-08 15:13:45 +08:00
path : "{{ matrix_appservice_irc_data_path }}/passkey.pem"
mode : 0644
owner : "{{ matrix_user_username }}"
2020-05-02 01:59:32 +08:00
group : "{{ matrix_user_groupname }}"
2019-07-08 15:13:45 +08:00
2019-06-19 17:28:58 +08: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 15:39:08 +08:00
ansible.builtin.shell : >-
2022-11-04 22:39:35 +08:00
{{ devture_systemd_docker_base_host_command_docker }} run --rm --name matrix-appservice-irc-gen
2019-06-19 17:28:58 +08: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 16:04:21 +08:00
--entrypoint=/bin/bash
2019-03-05 15:20:36 +08:00
{{ matrix_appservice_irc_docker_image }}
2020-01-25 16:04:21 +08:00
-c
'node app.js
2019-03-05 15:20:36 +08:00
-r
2019-06-19 17:28:58 +08:00
-f /config/registration-template.yaml
2019-03-05 15:20:36 +08:00
-u "http://matrix-appservice-irc:9999"
2019-06-19 17:28:58 +08:00
-c /config/config.yaml
2020-01-25 16:04:21 +08:00
-l irc_bot'
2019-06-19 17:28:58 +08:00
changed_when : false
- name : Read Appservice IRC registration-template.yaml
2022-07-18 15:39:08 +08:00
ansible.builtin.slurp :
2019-06-19 17:28:58 +08:00
src : "{{ matrix_appservice_irc_config_path }}/registration-template.yaml"
register : matrix_appservice_irc_registration_template_slurp
2019-01-31 13:37:23 +08:00
2019-06-19 17:28:58 +08:00
- name : Remove unnecessary Appservice IRC registration-template.yaml
2022-07-18 15:39:08 +08:00
ansible.builtin.file :
2019-06-19 17:28:58 +08:00
path : "{{ matrix_appservice_irc_config_path }}/registration-template.yaml"
state : absent
changed_when : false
- name : Parse registration-template.yaml
2022-07-18 15:39:08 +08:00
ansible.builtin.set_fact :
2019-06-19 17:28:58 +08: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 15:39:08 +08:00
ansible.builtin.set_fact :
2022-07-18 17:28:39 +08:00
matrix_appservice_irc_registration : "{{ matrix_appservice_irc_registration_template | combine(matrix_appservice_irc_registration_override, recursive=True) }}"
2019-06-19 17:28:58 +08:00
- name : Ensure Appservice IRC registration.yaml installed
2022-07-18 15:39:08 +08:00
ansible.builtin.copy :
2022-07-18 16:22:05 +08:00
content : "{{ matrix_appservice_irc_registration | to_nice_yaml(indent=2, width=999999) }}"
2019-06-19 17:28:58 +08:00
dest : "{{ matrix_appservice_irc_config_path }}/registration.yaml"
mode : 0644
2019-03-13 01:17:51 +08:00
owner : "{{ matrix_user_username }}"
2020-05-02 01:59:32 +08:00
group : "{{ matrix_user_groupname }}"
2019-06-19 17:28:58 +08:00
2024-01-07 17:56:25 +08:00
- name : Ensure matrix-appservice-irc container network is created
community.general.docker_network :
name : "{{ matrix_appservice_irc_container_network }}"
driver : bridge
2019-06-19 17:28:58 +08:00
- name : Ensure matrix-appservice-irc.service installed
2022-07-18 15:39:08 +08:00
ansible.builtin.template :
2019-06-19 17:28:58 +08:00
src : "{{ role_path }}/templates/systemd/matrix-appservice-irc.service.j2"
2022-11-04 22:38:38 +08:00
dest : "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-irc.service"
2019-06-19 17:28:58 +08:00
mode : 0644
register : matrix_appservice_irc_systemd_service_result
2020-12-23 01:34:08 +08:00
- name : Ensure matrix-appservice-irc.service restarted, if necessary
2022-07-18 15:39:08 +08:00
ansible.builtin.service :
2020-12-23 01:34:08 +08:00
name : "matrix-appservice-irc.service"
state : restarted
2022-11-27 16:02:45 +08:00
daemon_reload : true
2022-07-18 16:22:05 +08:00
when : "matrix_appservice_irc_requires_restart | bool"