2019-05-17 16:14:12 +00:00
# matrix-appservice-discord is a Matrix <-> Discord bridge
# See: https://github.com/Half-Shot/matrix-appservice-discord
matrix_appservice_discord_enabled : true
2021-02-20 17:08:28 +00:00
matrix_appservice_discord_version : v1.0.0
2021-04-12 12:39:16 +00:00
matrix_appservice_discord_docker_image : "{{ matrix_container_global_registry_prefix }}halfshot/matrix-appservice-discord:{{ matrix_appservice_discord_version }}"
2019-06-10 11:23:51 +00:00
matrix_appservice_discord_docker_image_force_pull : "{{ matrix_appservice_discord_docker_image.endswith(':latest') }}"
2019-05-17 16:14:12 +00:00
matrix_appservice_discord_base_path : "{{ matrix_base_data_path }}/appservice-discord"
2019-06-26 07:30:51 +00:00
matrix_appservice_discord_config_path : "{{ matrix_base_data_path }}/appservice-discord/config"
matrix_appservice_discord_data_path : "{{ matrix_base_data_path }}/appservice-discord/data"
2019-05-17 16:14:12 +00:00
# Get your own keys at https://discordapp.com/developers/applications/me/create
matrix_appservice_discord_client_id : ''
matrix_appservice_discord_bot_token : ''
2019-06-26 07:30:51 +00:00
matrix_appservice_discord_appservice_token : ''
matrix_appservice_discord_homeserver_token : ''
2020-11-10 21:10:59 +00:00
matrix_appservice_discord_homeserver_domain : "{{ matrix_domain }}"
2019-05-24 22:41:04 +00:00
# Controls whether the matrix-appservice-discord container exposes its HTTP port (tcp/9005 in the container).
#
# Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:9005"), or empty string to not expose.
matrix_appservice_discord_container_http_host_bind_port : ''
2019-05-17 16:14:12 +00:00
# A list of extra arguments to pass to the container
matrix_appservice_discord_container_extra_arguments : [ ]
# List of systemd services that matrix-appservice-discord.service depends on.
matrix_appservice_discord_systemd_required_services_list : [ 'docker.service' ]
# List of systemd services that matrix-appservice-discord.service wants
matrix_appservice_discord_systemd_wanted_services_list : [ ]
2019-06-26 07:30:51 +00:00
matrix_appservice_discord_appservice_url : 'http://matrix-appservice-discord:9005'
matrix_appservice_discord_bridge_domain : "{{ matrix_domain }}"
# As of right now, the homeserver URL must be a public URL. See below.
2020-12-16 01:32:31 +00:00
matrix_appservice_discord_bridge_homeserverUrl : "{{ matrix_homeserver_url }}"
2019-06-26 07:30:51 +00:00
matrix_appservice_discord_bridge_disablePresence : false
2019-12-11 13:47:44 +00:00
matrix_appservice_discord_bridge_enableSelfServiceBridging : false
2019-06-26 07:30:51 +00:00
2020-12-13 22:52:25 +00:00
# Database-related configuration fields.
#
# To use SQLite, stick to these defaults.
#
# To use Postgres:
# - change the engine (`matrix_appservice_discord_database_engine: 'postgres'`)
2020-12-14 08:51:53 +00:00
# - adjust your database credentials via the `matrix_appservice_discord_postgres_*` variables
2020-12-13 22:52:25 +00:00
matrix_appservice_discord_database_engine : 'sqlite'
2020-12-14 08:51:53 +00:00
matrix_appservice_discord_sqlite_database_path_local : "{{ matrix_appservice_discord_data_path }}/discord.db"
matrix_appservice_discord_sqlite_database_path_in_container : "/data/discord.db"
2020-12-14 11:02:47 +00:00
matrix_appservice_discord_database_username : 'matrix_appservice_discord'
matrix_appservice_discord_database_password : 'some-password'
2020-12-14 12:42:18 +00:00
matrix_appservice_discord_database_hostname : 'matrix-postgres'
2020-12-14 11:02:47 +00:00
matrix_appservice_discord_database_port : 5432
2020-12-22 15:10:02 +00:00
matrix_appservice_discord_database_name : 'matrix_appservice_discord'
2020-12-14 08:51:53 +00:00
# These 2 variables are what actually ends up in the bridge configuration.
# It's best if you don't change them directly, but rather redefine the sub-variables that constitute them.
matrix_appservice_discord_database_filename : "{{ matrix_appservice_discord_sqlite_database_path_in_container }}"
2020-12-22 15:10:02 +00:00
matrix_appservice_discord_database_connString : 'postgresql://{{ matrix_appservice_discord_database_username }}:{{ matrix_appservice_discord_database_password }}@{{ matrix_appservice_discord_database_hostname }}:{{ matrix_appservice_discord_database_port }}/{{ matrix_appservice_discord_database_name }}'
2020-12-14 08:51:53 +00:00
2020-12-13 22:52:25 +00:00
2020-11-13 06:23:40 +00:00
# Tells whether the bot should make use of "Privileged Gateway Intents".
#
# Enabling this means that you need to enable it for the bot (Discord application) as well,
# by triggering all Intent checkboxes on a page like this: `https://discord.com/developers/applications/694448564151123988/bot`
#
# Learn more: https://gist.github.com/advaith1/e69bcc1cdd6d0087322734451f15aa2f
matrix_appservice_discord_auth_usePrivilegedIntents : false
2020-06-03 06:33:28 +00:00
matrix_appservice_discord_configuration_yaml : "{{ lookup('template', 'templates/config.yaml.j2') }}"
2019-05-17 16:14:12 +00:00
matrix_appservice_discord_configuration_extension_yaml : |
2019-06-26 07:30:51 +00:00
# Your custom YAML configuration goes here.
# This configuration extends the default starting configuration (`matrix_appservice_discord_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_appservice_discord_configuration_yaml`.
2019-05-17 16:14:12 +00:00
2019-06-07 08:46:35 +00:00
matrix_appservice_discord_configuration_extension : "{{ matrix_appservice_discord_configuration_extension_yaml|from_yaml if matrix_appservice_discord_configuration_extension_yaml|from_yaml is mapping else {} }}"
2019-05-17 16:14:12 +00:00
matrix_appservice_discord_configuration : "{{ matrix_appservice_discord_configuration_yaml|from_yaml|combine(matrix_appservice_discord_configuration_extension, recursive=True) }}"
2019-06-26 07:30:51 +00:00
matrix_appservice_discord_registration_yaml : |
#jinja2: lstrip_blocks: "True"
id : appservice-discord
as_token : "{{ matrix_appservice_discord_appservice_token }}"
hs_token : "{{ matrix_appservice_discord_homeserver_token }}"
namespaces :
users :
- exclusive : true
2020-11-10 21:10:59 +00:00
regex : '@_discord_.*:{{ matrix_appservice_discord_homeserver_domain|regex_escape }}'
2019-06-26 07:30:51 +00:00
aliases :
- exclusive : true
2020-11-10 21:10:59 +00:00
regex : '#_discord_.*:{{ matrix_appservice_discord_homeserver_domain|regex_escape }}'
2019-06-26 07:30:51 +00:00
url : {{ matrix_appservice_discord_appservice_url }}
sender_localpart : _discord_bot
rate_limited : false
protocols :
- discord
matrix_appservice_discord_registration : "{{ matrix_appservice_discord_registration_yaml|from_yaml }}"