2019-01-31 05:37:23 +00:00
|
|
|
---
|
2019-05-16 00:07:40 +00:00
|
|
|
|
2019-01-31 05:37:23 +00:00
|
|
|
- name: Ensure Appservice IRC image is pulled
|
|
|
|
docker_image:
|
|
|
|
name: "{{ matrix_appservice_irc_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_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 }}"
|
2019-01-31 05:37:23 +00:00
|
|
|
|
2019-06-19 09:28:58 +00:00
|
|
|
- name: Ensure Appservice IRC paths exist
|
2019-01-31 05:37:23 +00:00
|
|
|
file:
|
2019-06-19 09:28:58 +00:00
|
|
|
path: "{{ item }}"
|
2019-01-31 05:37:23 +00:00
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_username }}"
|
2019-06-19 09:28:58 +00:00
|
|
|
with_items:
|
|
|
|
- "{{ matrix_appservice_irc_base_path }}"
|
|
|
|
- "{{ matrix_appservice_irc_config_path }}"
|
|
|
|
- "{{ matrix_appservice_irc_data_path }}"
|
|
|
|
|
|
|
|
- name: Check if an old passkey file already exists
|
|
|
|
stat:
|
|
|
|
path: "{{ matrix_appservice_irc_base_path }}/passkey.pem"
|
|
|
|
register: matrix_appservice_irc_stat_passkey
|
|
|
|
|
|
|
|
- name: (Data relocation) Ensure matrix-appservice-irc.service is stopped
|
|
|
|
service:
|
|
|
|
name: matrix-appservice-irc
|
|
|
|
state: stopped
|
|
|
|
daemon_reload: yes
|
|
|
|
failed_when: false
|
|
|
|
when: "matrix_appservice_irc_stat_passkey.stat.exists"
|
|
|
|
|
|
|
|
- name: (Data relocation) Move AppService IRC passkey.pem file to ./data directory
|
|
|
|
command: "mv {{ matrix_appservice_irc_base_path }}/passkey.pem {{ matrix_appservice_irc_data_path }}/passkey.pem"
|
|
|
|
when: "matrix_appservice_irc_stat_passkey.stat.exists"
|
|
|
|
|
2019-06-26 07:30:51 +00:00
|
|
|
- name: (Data relocation) Move AppService IRC database files to ./data directory
|
2019-06-19 09:28:58 +00:00
|
|
|
command: "mv {{ matrix_appservice_irc_base_path }}/{{ item }} {{ matrix_appservice_irc_data_path }}/{{ item }}"
|
|
|
|
with_items:
|
|
|
|
- rooms.db
|
|
|
|
- users.db
|
|
|
|
failed_when: false
|
|
|
|
when: "matrix_appservice_irc_stat_passkey.stat.exists"
|
2019-01-31 05:37:23 +00:00
|
|
|
|
|
|
|
- name: Ensure Matrix Appservice IRC config installed
|
|
|
|
copy:
|
|
|
|
content: "{{ matrix_appservice_irc_configuration|to_nice_yaml }}"
|
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 }}"
|
|
|
|
group: "{{ matrix_user_username }}"
|
|
|
|
|
2019-06-19 09:28:58 +00:00
|
|
|
- name: Check if Appservice IRC passkey exists
|
2019-03-05 07:20:36 +00:00
|
|
|
stat:
|
2019-06-19 09:28:58 +00:00
|
|
|
path: "{{ matrix_appservice_irc_data_path }}/passkey.pem"
|
2019-01-31 18:45:14 +00:00
|
|
|
register: irc_passkey_file
|
|
|
|
|
2019-06-19 09:28:58 +00:00
|
|
|
- name: Generate Appservice IRC passkey if it doesn't exist
|
|
|
|
shell: /usr/bin/openssl genpkey -out {{ matrix_appservice_irc_data_path }}/passkey.pem -outform PEM -algorithm RSA -pkeyopt rsa_keygen_bits:2048
|
2019-07-08 07:13:45 +00:00
|
|
|
become: true
|
|
|
|
become_user: "{{ matrix_user_username }}"
|
2019-05-16 00:07:40 +00:00
|
|
|
when: "not irc_passkey_file.stat.exists"
|
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
|
|
|
|
file:
|
|
|
|
path: "{{ matrix_appservice_irc_data_path }}/passkey.pem"
|
|
|
|
mode: 0644
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_username }}"
|
|
|
|
|
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
|
2019-03-05 07:20:36 +00:00
|
|
|
shell: >-
|
|
|
|
/usr/bin/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
|
2019-03-05 07:20:36 +00:00
|
|
|
{{ matrix_appservice_irc_docker_image }}
|
|
|
|
node app.js
|
|
|
|
-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
|
2019-03-05 07:20:36 +00:00
|
|
|
-l irc_bot
|
2019-06-19 09:28:58 +00:00
|
|
|
changed_when: false
|
|
|
|
|
|
|
|
- name: Read Appservice IRC registration-template.yaml
|
|
|
|
slurp:
|
|
|
|
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
|
2019-03-12 17:17:51 +00:00
|
|
|
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
|
|
|
|
set_fact:
|
|
|
|
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
|
|
|
|
set_fact:
|
|
|
|
matrix_appservice_irc_registration: "{{ matrix_appservice_irc_registration_template|combine(matrix_appservice_irc_registration_override, recursive=True) }}"
|
|
|
|
|
|
|
|
- name: Ensure Appservice IRC registration.yaml installed
|
|
|
|
copy:
|
|
|
|
content: "{{ matrix_appservice_irc_registration|to_nice_yaml }}"
|
|
|
|
dest: "{{ matrix_appservice_irc_config_path }}/registration.yaml"
|
|
|
|
mode: 0644
|
2019-03-12 17:17:51 +00:00
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_username }}"
|
2019-06-19 09:28:58 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-appservice-irc.service installed
|
|
|
|
template:
|
|
|
|
src: "{{ role_path }}/templates/systemd/matrix-appservice-irc.service.j2"
|
|
|
|
dest: "/etc/systemd/system/matrix-appservice-irc.service"
|
|
|
|
mode: 0644
|
|
|
|
register: matrix_appservice_irc_systemd_service_result
|
|
|
|
|
|
|
|
- name: Ensure systemd reloaded after matrix-appservice-irc.service installation
|
|
|
|
service:
|
|
|
|
daemon_reload: yes
|
|
|
|
when: "matrix_appservice_irc_systemd_service_result.changed"
|