603ad7c52b
This bridge doesn't support SQLite anyway, so it's not necessary to carry around configuration fields and code for migration from SQLite to Postgres. There's nothing to migrate.
101 lines
4.8 KiB
YAML
101 lines
4.8 KiB
YAML
# beeper-linkedin is a Matrix <-> LinkedIn bridge
|
|
# See: https://gitlab.com/beeper/linkedin
|
|
|
|
matrix_beeper_linkedin_enabled: true
|
|
|
|
matrix_beeper_linkedin_version: v0.5.0
|
|
# See: https://gitlab.com/beeper/linkedin/container_registry
|
|
matrix_beeper_linkedin_docker_image: "registry.gitlab.com/beeper/linkedin:{{ matrix_beeper_linkedin_version }}-amd64"
|
|
matrix_beeper_linkedin_docker_image_force_pull: "{{ matrix_beeper_linkedin_docker_image.endswith(':latest-amd64') }}"
|
|
|
|
matrix_beeper_linkedin_base_path: "{{ matrix_base_data_path }}/beeper-linkedin"
|
|
matrix_beeper_linkedin_config_path: "{{ matrix_beeper_linkedin_base_path }}/config"
|
|
matrix_beeper_linkedin_data_path: "{{ matrix_beeper_linkedin_base_path }}/data"
|
|
|
|
matrix_beeper_linkedin_homeserver_address: "{{ matrix_homeserver_container_url }}"
|
|
matrix_beeper_linkedin_homeserver_domain: "{{ matrix_domain }}"
|
|
matrix_beeper_linkedin_appservice_address: "http://matrix-beeper-linkedin:29319"
|
|
|
|
# A list of extra arguments to pass to the container
|
|
matrix_beeper_linkedin_container_extra_arguments: []
|
|
|
|
# List of systemd services that matrix-beeper-linkedin.service depends on.
|
|
matrix_beeper_linkedin_systemd_required_services_list: ['docker.service']
|
|
|
|
# List of systemd services that matrix-beeper-linkedin.service wants
|
|
matrix_beeper_linkedin_systemd_wanted_services_list: []
|
|
|
|
matrix_beeper_linkedin_appservice_token: ""
|
|
matrix_beeper_linkedin_homeserver_token: ""
|
|
|
|
matrix_beeper_linkedin_appservice_bot_username: linkedinbot
|
|
|
|
|
|
# Database-related configuration fields.
|
|
# Only Postgres is supported.
|
|
matrix_beeper_linkedin_database_engine: "postgres"
|
|
|
|
matrix_beeper_linkedin_database_username: 'matrix_beeper_linkedin'
|
|
matrix_beeper_linkedin_database_password: ""
|
|
matrix_beeper_linkedin_database_hostname: 'matrix-postgres'
|
|
matrix_beeper_linkedin_database_port: 5432
|
|
matrix_beeper_linkedin_database_name: 'matrix_beeper_linkedin'
|
|
|
|
matrix_beeper_linkedin_database_connection_string: 'postgresql://{{ matrix_beeper_linkedin_database_username }}:{{ matrix_beeper_linkedin_database_password }}@{{ matrix_beeper_linkedin_database_hostname }}:{{ matrix_beeper_linkedin_database_port }}/{{ matrix_beeper_linkedin_database_name }}?sslmode=disable'
|
|
|
|
matrix_beeper_linkedin_appservice_database_type: "{{
|
|
{
|
|
'postgres':'postgres',
|
|
}[matrix_beeper_linkedin_database_engine]
|
|
}}"
|
|
|
|
matrix_beeper_linkedin_appservice_database_uri: "{{
|
|
{
|
|
'postgres': matrix_beeper_linkedin_database_connection_string,
|
|
}[matrix_beeper_linkedin_database_engine]
|
|
}}"
|
|
|
|
|
|
# Can be set to enable automatic double-puppeting via Shared Secret Auth (https://github.com/devture/matrix-synapse-shared-secret-auth).
|
|
matrix_beeper_linkedin_login_shared_secret: ''
|
|
|
|
# Default beeper-linkedin 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_beeper_linkedin_configuration_extension_yaml`)
|
|
# or completely replace this variable with your own template.
|
|
matrix_beeper_linkedin_configuration_yaml: "{{ lookup('template', 'templates/config.yaml.j2') }}"
|
|
|
|
matrix_beeper_linkedin_configuration_extension_yaml: |
|
|
# Your custom YAML configuration goes here.
|
|
# This configuration extends the default starting configuration (`matrix_beeper_linkedin_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_beeper_linkedin_configuration_yaml`.
|
|
|
|
matrix_beeper_linkedin_configuration_extension: "{{ matrix_beeper_linkedin_configuration_extension_yaml|from_yaml if matrix_beeper_linkedin_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_beeper_linkedin_configuration_yaml`.
|
|
matrix_beeper_linkedin_configuration: "{{ matrix_beeper_linkedin_configuration_yaml|from_yaml|combine(matrix_beeper_linkedin_configuration_extension, recursive=True) }}"
|
|
|
|
matrix_beeper_linkedin_registration_yaml: |
|
|
id: linkedin
|
|
url: {{ matrix_beeper_linkedin_appservice_address }}
|
|
as_token: "{{ matrix_beeper_linkedin_appservice_token }}"
|
|
hs_token: "{{ matrix_beeper_linkedin_homeserver_token }}"
|
|
|
|
sender_localpart: _bot_{{ matrix_beeper_linkedin_appservice_bot_username }}
|
|
rate_limited: false
|
|
namespaces:
|
|
users:
|
|
- regex: '^@linkedin_.+:{{ matrix_beeper_linkedin_homeserver_domain|regex_escape }}$'
|
|
exclusive: true
|
|
- exclusive: true
|
|
regex: '^@{{ matrix_beeper_linkedin_appservice_bot_username|regex_escape }}:{{ matrix_beeper_linkedin_homeserver_domain|regex_escape }}$'
|
|
de.sorunome.msc2409.push_ephemeral: true
|
|
|
|
matrix_beeper_linkedin_registration: "{{ matrix_beeper_linkedin_registration_yaml|from_yaml }}"
|