2022-02-05 20:32:54 +00:00
---
2020-12-22 17:56:52 +00:00
- name : Fail if Postgres not enabled
2022-07-18 07:39:08 +00:00
ansible.builtin.fail :
2022-11-27 05:23:41 +00:00
msg : "Postgres via the com.devture.ansible.role.postgres role is not enabled (`devture_postgres_enabled`). Cannot migrate."
when : "not devture_postgres_enabled | bool"
2020-12-22 17:56:52 +00:00
# Defaults
- name : Set postgres_start_wait_time, if not provided
2022-07-18 07:39:08 +00:00
ansible.builtin.set_fact :
2020-12-22 17:56:52 +00:00
postgres_start_wait_time : 15
2022-07-18 08:22:05 +00:00
when : "postgres_start_wait_time | default('') == ''"
2020-12-22 17:56:52 +00:00
# Actual import work
2022-11-27 05:23:41 +00:00
- name : Ensure Postgres is started
2022-07-18 07:39:08 +00:00
ansible.builtin.service :
2022-11-27 05:23:41 +00:00
name : "{{ devture_postgres_identifier }}"
2020-12-22 17:56:52 +00:00
state : started
2022-02-05 20:32:54 +00:00
daemon_reload : true
2022-11-27 05:23:41 +00:00
register : postgres_service_start_result
2020-12-22 17:56:52 +00:00
- name : Wait a bit, so that Postgres can start
2022-07-18 08:22:05 +00:00
ansible.builtin.wait_for :
2020-12-22 17:56:52 +00:00
timeout : "{{ postgres_start_wait_time }}"
delegate_to : 127.0 .0 .1
become : false
2022-11-27 05:23:41 +00:00
when : "postgres_service_start_result.changed | bool"
2020-12-22 17:56:52 +00:00
- name : Ensure matrix-appservice-slack is stopped
2022-07-18 07:39:08 +00:00
ansible.builtin.service :
2020-12-22 17:56:52 +00:00
name : matrix-appservice-slack
state : stopped
- name : Import appservice-slack NeDB database into Postgres
2022-07-18 07:39:08 +00:00
ansible.builtin.command :
2020-12-22 17:56:52 +00:00
cmd : >-
2022-11-04 14:39:35 +00:00
{{ devture_systemd_docker_base_host_command_docker }} run
2020-12-22 17:56:52 +00:00
--rm
--user={{ matrix_user_uid }}:{{ matrix_user_gid }}
--cap-drop=ALL
--network={{ matrix_docker_network }}
--mount type=bind,src={{ matrix_appservice_slack_data_path }},dst=/data
--entrypoint=/bin/sh
{{ matrix_appservice_slack_docker_image }}
-c
'/usr/local/bin/node /usr/src/app/lib/scripts/migrateToPostgres.js --dbdir /data --connectionString {{ matrix_appservice_slack_database_connection_string }}'
2022-07-18 12:08:10 +00:00
register : matrix_appservice_slack_import_nedb_to_postgres_result
changed_when : matrix_appservice_slack_import_nedb_to_postgres_result.rc == 0
2020-12-22 17:56:52 +00:00
- name : Archive NeDB database files
2022-07-18 07:39:08 +00:00
ansible.builtin.command :
2020-12-22 17:56:52 +00:00
cmd : "mv {{ matrix_appservice_slack_data_path }}/{{ item }} {{ matrix_appservice_slack_data_path }}/{{ item }}.backup"
2022-07-18 12:08:10 +00:00
register : matrix_appservice_slack_import_nedb_to_postgres_move_result
changed_when : matrix_appservice_slack_import_nedb_to_postgres_move_result.rc == 0
2020-12-22 17:56:52 +00:00
with_items :
- teams.db
- room-store.db
- user-store.db
- event-store.db
- name : Inject result
2022-07-18 07:39:08 +00:00
ansible.builtin.set_fact :
2022-11-04 14:19:17 +00:00
devture_playbook_runtime_messages_list : |
2020-12-22 17:56:52 +00:00
{{
2022-11-04 14:19:17 +00:00
devture_playbook_runtime_messages_list | default([])
2020-12-22 17:56:52 +00:00
+
[
"NOTE: Your appservice-slack database files have been imported into Postgres. The original database files have been moved from `{{ matrix_appservice_slack_data_path }}/*.db` to `{{ matrix_appservice_slack_data_path }}/*.db.backup`. When you've confirmed that the import went well and everything works, you should be able to safely delete these files."
]
}}