You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matrix-docker-ansible-deploy/roles/custom/matrix-bridge-go-wechat/defaults/main.yml

151 lines
7.6 KiB

---
# Go WeChat Bridge is a Matrix <-> WeChat bridge
# Project source code URL: https://github.com/duo/matrix-wechat
matrix_go_wechat_enabled: true
matrix_go_wechat_container_image_self_build: false
matrix_go_wechat_container_image_self_build_repo: "https://github.com/duo/matrix-wechat.git"
matrix_go_wechat_container_image_self_build_branch: "{{ 'master' if matrix_go_wechat_version == 'latest' else matrix_go_wechat_version }}"
matrix_go_wechat_agent_container_image_self_build: true
matrix_go_wechat_agent_container_image_self_build_repo: "https://github.com/duo/matrix-wechat-agent.git"
matrix_go_wechat_agent_container_image_self_build_branch: "{{ 'master' if matrix_go_wechat_version == 'latest' else matrix_go_wechat_version }}"
# renovate: datasource=docker depName=lxduo/matrix-wechat
matrix_go_wechat_version: latest
matrix_go_wechat_docker_image: "{{ matrix_go_wechat_docker_image_name_prefix }}lxduo/matrix-wechat:{{ matrix_go_wechat_version }}"
matrix_go_wechat_agent_docker_image: "{{ matrix_go_wechat_agent_docker_image_name_prefix }}lxduo/matrix-wechat-agent:{{ matrix_go_wechat_version }}"
matrix_go_wechat_docker_image_name_prefix: "{{ 'localhost/' if matrix_go_wechat_container_image_self_build else matrix_container_global_registry_prefix }}"
matrix_go_wechat_agent_docker_image_name_prefix: "{{ 'localhost/' if matrix_go_wechat_agent_container_image_self_build else matrix_container_global_registry_prefix }}"
matrix_go_wechat_docker_image_force_pull: "{{ matrix_go_wechat_docker_image.endswith(':latest') }}"
matrix_go_wechat_agent_docker_image_force_pull: "{{ matrix_go_wechat_agent_docker_image.endswith(':latest') }}"
matrix_go_wechat_base_path: "{{ matrix_base_data_path }}/go-wechat"
matrix_go_wechat_config_path: "{{ matrix_go_wechat_base_path }}/config"
matrix_go_wechat_data_path: "{{ matrix_go_wechat_base_path }}/data"
matrix_go_wechat_docker_src_files_path: "{{ matrix_go_wechat_base_path }}/docker-src"
matrix_go_wechat_agent_docker_src_files_path: "{{ matrix_go_wechat_base_path }}/docker-agent-src"
matrix_go_wechat_homeserver_address: ""
matrix_go_wechat_homeserver_domain: "{{ matrix_domain }}"
matrix_go_wechat_appservice_address: 'http://matrix-go-wechat:8080'
matrix_go_wechat_container_network: ""
matrix_go_wechat_container_additional_networks: "{{ matrix_go_wechat_container_additional_networks_auto + matrix_go_wechat_container_additional_networks_custom }}"
matrix_go_wechat_container_additional_networks_auto: []
matrix_go_wechat_container_additional_networks_custom: []
# A list of extra arguments to pass to the container
matrix_go_wechat_container_extra_arguments: []
# List of systemd services that matrix-go-wechat.service depends on.
matrix_go_wechat_systemd_required_services_list: "{{ matrix_go_wechat_systemd_required_services_list_default + matrix_go_wechat_systemd_required_services_list_auto + matrix_go_wechat_systemd_required_services_list_custom }}"
matrix_go_wechat_systemd_required_services_list_default: ['docker.service']
matrix_go_wechat_systemd_required_services_list_auto: []
matrix_go_wechat_systemd_required_services_list_custom: []
# List of systemd services that matrix-go-wechat.service wants
matrix_go_wechat_systemd_wanted_services_list: []
matrix_go_wechat_appservice_token: ''
matrix_go_wechat_homeserver_token: ''
matrix_go_wechat_appservice_bot_username: wechatbot
matrix_go_wechat_command_prefix: "!wechat"
# Whether or not created rooms should have federation enabled.
# If false, created portal rooms will never be federated.
matrix_go_wechat_federate_rooms: true
# Database-related configuration fields.
matrix_go_wechat_database_engine: 'postgres'
matrix_go_wechat_database_username: 'matrix_go_wechat'
matrix_go_wechat_database_password: 'some-password'
matrix_go_wechat_database_hostname: ''
matrix_go_wechat_database_port: 5432
matrix_go_wechat_database_name: 'matrix_go_wechat'
matrix_go_wechat_database_sslmode: disable
matrix_go_wechat_database_connection_string: 'postgresql://{{ matrix_go_wechat_database_username }}:{{ matrix_go_wechat_database_password }}@{{ matrix_go_wechat_database_hostname }}:{{ matrix_go_wechat_database_port }}/{{ matrix_go_wechat_database_name }}?sslmode={{ matrix_go_wechat_database_sslmode }}'
# Can be set to enable automatic double-puppeting via Shared Secret Auth (https://github.com/devture/matrix-synapse-shared-secret-auth).
matrix_go_wechat_login_shared_secret: ''
matrix_go_wechat_login_shared_secret_map:
"{{ {matrix_go_wechat_homeserver_domain: matrix_go_wechat_login_shared_secret} if matrix_go_wechat_login_shared_secret else {} }}"
# Servers to always allow double puppeting from
matrix_go_wechat_double_puppet_server_map:
"{{ matrix_go_wechat_homeserver_domain : matrix_go_wechat_homeserver_address }}"
# Enable End-to-bridge encryption
matrix_go_wechat_encryption_allow: "{{ matrix_bridges_encryption_enabled }}"
matrix_go_wechat_encryption_default: "{{ matrix_go_wechat_encryption_allow }}"
# Minimum severity of journal log messages.
# Options: debug, info, warn, error, fatal
matrix_go_wechat_log_level: 'warn'
matrix_go_wechat_permissions: |
{{
{matrix_go_wechat_homeserver_domain: 'user'}
| combine({matrix_admin: 'admin'} if matrix_admin else {})
}}
# Default go-wechat configuration template which covers the generic use case.
# You can customize it by controlling the various variables inside it.
#
# For a more advanced customization, you can extend the default (see `matrix_go_wechat_configuration_extension_yaml`)
# or completely replace this variable with your own template.
matrix_go_wechat_configuration_yaml: "{{ lookup('template', 'templates/config.yaml.j2') }}"
matrix_go_wechat_configuration_extension_yaml: |
# Your custom YAML configuration goes here.
# This configuration extends the default starting configuration (`matrix_go_wechat_configuration_yaml`).
#
# You can override individual variables from the default configuration, or introduce new ones.
#
# If you need something more special, you can take full control by
# completely redefining `matrix_go_wechat_configuration_yaml`.
matrix_go_wechat_configuration_extension: "{{ matrix_go_wechat_configuration_extension_yaml | from_yaml if matrix_go_wechat_configuration_extension_yaml | from_yaml is mapping else {} }}"
# Holds the final configuration (a combination of the default and its extension).
# You most likely don't need to touch this variable. Instead, see `matrix_go_wechat_configuration_yaml`.
matrix_go_wechat_configuration: "{{ matrix_go_wechat_configuration_yaml | from_yaml | combine(matrix_go_wechat_configuration_extension, recursive=True) }}"
matrix_go_wechat_registration_yaml: |
id: wechat
url: {{ matrix_go_wechat_appservice_address }}
as_token: "{{ matrix_go_wechat_appservice_token }}"
hs_token: "{{ matrix_go_wechat_homeserver_token }}"
# See https://github.com/mautrix/signal/issues/43
sender_localpart: _bot_{{ matrix_go_wechat_appservice_bot_username }}
rate_limited: false
namespaces:
users:
- regex: '^@_wechat_(.*):{{ matrix_go_wechat_homeserver_domain | regex_escape }}$'
exclusive: true
- exclusive: true
regex: '^@{{ matrix_go_wechat_appservice_bot_username | regex_escape }}:{{ matrix_go_wechat_homeserver_domain | regex_escape }}$'
de.sorunome.msc2409.push_ephemeral: true
matrix_go_wechat_registration: "{{ matrix_go_wechat_registration_yaml | from_yaml }}"
matrix_go_wechat_agent_configuration_yaml: |
wechat:
version: 3.8.1.26
listen_port: 22222
init_timeout: 10s
request_timeout: 30s
service:
addr: ws://matrix-wechat:20002
secret: "foobar"
ping_interval: 30s
log:
level: info
matrix_go_wechat_agent_configuration: "{{ matrix_go_wechat_agent_configuration_yaml | from_yaml }}"