forked from spantaleev/matrix-docker-ansible-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Most of the work is done [here](spantaleev#739).
- Loading branch information
1 parent
f9bc5e2
commit 48878f5
Showing
12 changed files
with
231 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- set_fact: | ||
matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-jitsi-jibri'] }}" | ||
when: matrix_jitsi_jibri_enabled|bool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
--- | ||
|
||
# | ||
# Tasks related to setting up jitsi-jibri | ||
# | ||
|
||
- name: Ensure Matrix jitsi-jibri path exists | ||
file: | ||
path: "{{ item.path }}" | ||
state: directory | ||
mode: 0777 | ||
owner: "{{ matrix_user_username }}" | ||
group: "{{ matrix_user_groupname }}" | ||
with_items: | ||
- { path: "{{ matrix_jitsi_jibri_base_path }}", when: true } | ||
- { path: "{{ matrix_jitsi_jibri_config_path }}", when: true } | ||
- { path: "{{ matrix_jitsi_jibri_logs_path }}" , when: true} | ||
- { path: "{{ matrix_jitsi_jibri_recording_path }}" , when: true} | ||
when: matrix_jitsi_enabled|bool and matrix_jitsi_jibri_enabled|bool and item.when | ||
|
||
- name: Ensure jitsi-jibri Docker image is pulled | ||
docker_image: | ||
name: "{{ matrix_jitsi_jibri_docker_image }}" | ||
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}" | ||
force_source: "{{ matrix_jitsi_jibri_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_jitsi_jibri_docker_image_force_pull }}" | ||
when: matrix_jitsi_enabled|bool and matrix_jitsi_jibri_enabled|bool | ||
|
||
- name: Ensure jitsi-jibri environment variables file created | ||
template: | ||
src: "{{ role_path }}/templates/jibri/env.j2" | ||
dest: "{{ matrix_jitsi_jibri_base_path }}/env" | ||
mode: 0640 | ||
when: matrix_jitsi_enabled|bool and matrix_jitsi_jibri_enabled|bool | ||
|
||
- name: Ensure jitsi-jibri finalize.sh file created | ||
template: | ||
src: "{{ role_path }}/templates/jibri/finalize.sh.j2" | ||
dest: "{{ matrix_jitsi_jibri_config_path }}/finalize.sh" | ||
mode: 0740 | ||
when: matrix_jitsi_enabled|bool and matrix_jitsi_jibri_enabled|bool | ||
|
||
|
||
- name: Ensure jitsi-jibri configuration files created | ||
template: | ||
src: "{{ role_path }}/templates/jibri/{{ item }}.j2" | ||
dest: "{{ matrix_jitsi_jibri_config_path }}/{{ item }}" | ||
mode: 0644 | ||
with_items: | ||
- config.json | ||
- logging.properties | ||
when: matrix_jitsi_enabled|bool and matrix_jitsi_jibri_enabled|bool | ||
|
||
- name: Ensure matrix-jitsi-jibri.service installed | ||
template: | ||
src: "{{ role_path }}/templates/jibri/matrix-jitsi-jibri.service.j2" | ||
dest: "{{ matrix_systemd_path }}/matrix-jitsi-jibri.service" | ||
mode: 0644 | ||
register: matrix_jitsi_jibri_systemd_service_result | ||
when: matrix_jitsi_enabled|bool and matrix_jitsi_jibri_enabled|bool | ||
|
||
- name: Ensure systemd reloaded after matrix-jitsi-jibri.service installation | ||
service: | ||
daemon_reload: yes | ||
when: "matrix_jitsi_enabled and matrix_jitsi_jibri_systemd_service_result.changed" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"recording_directory":{{ matrix_jitsi_jibri_recording_path|string|to_json }}, | ||
"finalize_recording_script_path": {{ matrix_jitsi_jibri_finalize_recording_script_path|string|to_json }}, | ||
"xmpp_environments": [ | ||
{ | ||
"name": "prod environment", | ||
"xmpp_server_hosts": [ | ||
{{ matrix_jitsi_xmpp_server|string|to_json }} | ||
], | ||
"xmpp_domain": {{ matrix_jitsi_xmpp_domain|string|to_json }}, | ||
"control_login": { | ||
"domain": {{ matrix_jitsi_xmpp_auth_domain|string|to_json }}, | ||
"username": {{ matrix_jitsi_jibri_xmpp_user|string|to_json }}, | ||
"password": {{ matrix_jitsi_jibri_xmpp_password|string|to_json }} | ||
}, | ||
"control_muc": { | ||
"domain": {{ matrix_jitsi_xmpp_internal_muc_domain|string|to_json }}, | ||
"room_name": {{ matrix_jitsi_jibri_brewery_muc|string|to_json }}, | ||
"nickname": "jibri-instance-1" | ||
}, | ||
"call_login": { | ||
"domain": {{ matrix_jitsi_recorder_domain|string|to_json }}, | ||
"username": {{ matrix_jitsi_jibri_recorder_user|string|to_json }}, | ||
"password": {{ matrix_jitsi_jibri_recorder_password|string|to_json }} | ||
}, | ||
"room_jid_domain_string_to_strip_from_start": {{ matrix_jitsi_jibri_strip_domain_jid|string|to_json }}, | ||
"usage_timeout": "0" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
XMPP_AUTH_DOMAIN={{ matrix_jitsi_xmpp_auth_domain }} | ||
XMPP_INTERNAL_MUC_DOMAIN={{ matrix_jitsi_xmpp_internal_muc_domain }} | ||
XMPP_RECORDER_DOMAIN={{ matrix_jitsi_recorder_domain }} | ||
XMPP_SERVER={{ matrix_jitsi_xmpp_server }} | ||
XMPP_DOMAIN={{ matrix_jitsi_xmpp_domain }} | ||
JIBRI_XMPP_USER={{ matrix_jitsi_jibri_xmpp_user }} | ||
JIBRI_XMPP_PASSWORD={{ matrix_jitsi_jibri_xmpp_password }} | ||
JIBRI_BREWERY_MUC={{ matrix_jitsi_jvb_brewery_muc }} | ||
JIBRI_RECORDER_USER={{ matrix_jitsi_jibri_recorder_user }} | ||
JIBRI_RECORDER_PASSWORD={{ matrix_jitsi_jibri_recorder_password }} | ||
JIBRI_RECORDING_DIR={{ matrix_jitsi_jibri_recording_path }} | ||
JIBRI_FINALIZE_RECORDING_SCRIPT_PATH={{ matrix_jitsi_jibri_finalize_recording_script_path }} | ||
JIBRI_STRIP_DOMAIN_JID={{ matrix_jitsi_jibri_strip_domain_jid }} | ||
JIBRI_LOGS_DIR={{ matrix_jitsi_jibri_logs_path }} | ||
DISPLAY=:0 | ||
TZ={{ matrix_jitsi_timezone }} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Component {{ matrix_jitsi_xmpp_internal_muc_domain|string|to_json }} "muc" | ||
modules_enabled = { | ||
"ping"; | ||
} | ||
storage = "memory" | ||
muc_room_cache_size = 1000 | ||
|
||
VirtualHost {{ matrix_jitsi_recorder_domain|string|to_json }} | ||
modules_enabled = { | ||
"ping"; | ||
} | ||
authentication = "internal_plain" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
handlers = java.util.logging.FileHandler, java.util.logging.ConsoleHandler | ||
|
||
java.util.logging.FileHandler.level = FINE | ||
java.util.logging.FileHandler.pattern = {{ matrix_jitsi_jibri_logs_path }}/log.%g.txt | ||
java.util.logging.FileHandler.formatter = net.java.sip.communicator.util.ScLogFormatter | ||
java.util.logging.FileHandler.count = 10 | ||
java.util.logging.FileHandler.limit = 10000000 | ||
|
||
org.jitsi.jibri.capture.ffmpeg.util.FfmpegFileHandler.level = FINE | ||
org.jitsi.jibri.capture.ffmpeg.util.FfmpegFileHandler.pattern = {{ matrix_jitsi_jibri_logs_path }}/ffmpeg.%g.txt | ||
org.jitsi.jibri.capture.ffmpeg.util.FfmpegFileHandler.formatter = net.java.sip.communicator.util.ScLogFormatter | ||
org.jitsi.jibri.capture.ffmpeg.util.FfmpegFileHandler.count = 10 | ||
org.jitsi.jibri.capture.ffmpeg.util.FfmpegFileHandler.limit = 10000000 | ||
|
||
org.jitsi.jibri.sipgateway.pjsua.util.PjsuaFileHandler.level = FINE | ||
org.jitsi.jibri.sipgateway.pjsua.util.PjsuaFileHandler.pattern = {{ matrix_jitsi_jibri_logs_path }}/pjsua.%g.txt | ||
org.jitsi.jibri.sipgateway.pjsua.util.PjsuaFileHandler.formatter = net.java.sip.communicator.util.ScLogFormatter | ||
org.jitsi.jibri.sipgateway.pjsua.util.PjsuaFileHandler.count = 10 | ||
org.jitsi.jibri.sipgateway.pjsua.util.PjsuaFileHandler.limit = 10000000 | ||
|
||
org.jitsi.jibri.selenium.util.BrowserFileHandler.level = FINE | ||
org.jitsi.jibri.selenium.util.BrowserFileHandler.pattern = {{ matrix_jitsi_jibri_logs_path }}/browser.%g.txt | ||
org.jitsi.jibri.selenium.util.BrowserFileHandler.formatter = net.java.sip.communicator.util.ScLogFormatter | ||
org.jitsi.jibri.selenium.util.BrowserFileHandler.count = 10 | ||
org.jitsi.jibri.selenium.util.BrowserFileHandler.limit = 10000000 | ||
|
||
java.util.logging.ConsoleHandler.level = FINE | ||
java.util.logging.ConsoleHandler.formatter = net.java.sip.communicator.util.ScLogFormatter | ||
|
||
org.jitsi.level = FINE | ||
|
||
org.glassfish.level = INFO | ||
org.osgi.level = INFO |
35 changes: 35 additions & 0 deletions
35
roles/matrix-jitsi/templates/jibri/matrix-jitsi-jibri.service.j2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#jinja2: lstrip_blocks: "True" | ||
[Unit] | ||
Description=Matrix jitsi-jibri server | ||
{% for service in matrix_jitsi_jibri_systemd_required_services_list %} | ||
Requires={{ service }} | ||
After={{ service }} | ||
{% endfor %} | ||
|
||
[Service] | ||
Type=simple | ||
ExecStartPre=-{{ matrix_host_command_docker }} kill matrix-jitsi-jibri | ||
ExecStartPre=-{{ matrix_host_command_docker }} rm matrix-jitsi-jibri | ||
|
||
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-jitsi-jibri \ | ||
--log-driver=none \ | ||
--network={{ matrix_docker_network }} \ | ||
--env-file={{ matrix_jitsi_jibri_base_path }}/env \ | ||
--device=/dev/snd:/dev/snd \ | ||
--mount type=bind,src={{ matrix_jitsi_jibri_base_path }},dst={{ matrix_jitsi_jibri_base_path }} \ | ||
{% for arg in matrix_jitsi_jibri_container_extra_arguments %} | ||
{{ arg }} \ | ||
{% endfor %} | ||
-v /dev/shm:/dev/shm \ | ||
--cap-add=SYS_ADMIN \ | ||
--cap-add=NET_BIND_SERVICE \ | ||
{{ matrix_jitsi_jibri_docker_image }} | ||
|
||
ExecStop=-{{ matrix_host_command_docker }} kill matrix-jitsi-jibri | ||
ExecStop=-{{ matrix_host_command_docker }} rm matrix-jitsi-jibri | ||
Restart=always | ||
RestartSec=30 | ||
SyslogIdentifier=matrix-jitsi-jibri | ||
|
||
[Install] | ||
WantedBy=multi-user.target |