2021-01-09 12:31:07 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2023-03-10 07:59:41 +01:00
|
|
|
password=$YNH_APP_ARG_PASSWORD
|
|
|
|
ynh_app_setting_set --app=$app --key=password --value="$password"
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# FIND AND OPEN A PORT
|
|
|
|
#=================================================
|
2021-04-17 08:55:55 +02:00
|
|
|
ynh_script_progression --message="Configuring firewall..." --weight=1
|
2021-01-13 21:58:03 +01:00
|
|
|
|
2021-05-26 19:08:05 +02:00
|
|
|
# Reserve UDP Port range 49152:65535
|
|
|
|
ynh_exec_warn_less yunohost firewall allow UDP -4 49152:65535
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-03-10 07:59:41 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir/build"
|
|
|
|
ynh_setup_source --dest_dir="$install_dir/build_ldap" --source_id="ldap"
|
|
|
|
|
|
|
|
mkdir -p "$install_dir/live/data"
|
|
|
|
mkdir -p "$install_dir/live_ldap/data"
|
2023-03-19 22:27:19 +01:00
|
|
|
|
2023-03-10 07:59:41 +01:00
|
|
|
cp -r "$install_dir/build/static/" "$install_dir/live/"
|
|
|
|
ynh_replace_string --match_string="<div class=\"galene-header\">Galène</div>" --replace_string="<div class=\"galene-header\" onclick=\"location.href=window.location.origin\" style=\"cursor:pointer\">Galène</div>" --target_file="$install_dir/live/static/galene.html"
|
2021-01-09 21:34:33 +01:00
|
|
|
|
2023-03-10 07:59:41 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-06-02 09:36:30 +02:00
|
|
|
|
2022-10-14 09:13:16 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# BUILD APP
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Building app..." --weight=1
|
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_install_go --go_version=$go_version
|
|
|
|
ynh_use_go
|
2023-03-19 22:27:19 +01:00
|
|
|
|
|
|
|
pushd $install_dir/build/galene-password-generator/
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app CGO_ENABLED=0 $ynh_go build -o $install_dir/
|
|
|
|
popd
|
|
|
|
|
2023-03-10 07:59:41 +01:00
|
|
|
pushd $install_dir/build/
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app CGO_ENABLED=0 $ynh_go build -ldflags='-s -w' -o $install_dir/live/
|
2022-10-14 09:13:16 +02:00
|
|
|
popd
|
2023-03-19 22:27:19 +01:00
|
|
|
|
2023-03-10 07:59:41 +01:00
|
|
|
pushd $install_dir/build_ldap/
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app CGO_ENABLED=0 $ynh_go build -ldflags='-s -w' -o $install_dir/live_ldap/
|
2022-10-14 09:13:16 +02:00
|
|
|
popd
|
2023-03-19 22:27:19 +01:00
|
|
|
|
2022-10-14 09:13:16 +02:00
|
|
|
ynh_remove_go
|
2023-03-10 07:59:41 +01:00
|
|
|
ynh_secure_remove --file="$install_dir/build/"
|
|
|
|
ynh_secure_remove --file="$install_dir/build_ldap/"
|
|
|
|
ynh_secure_remove --file="$install_dir/.cache/"
|
|
|
|
ynh_secure_remove --file="$install_dir/go/"
|
|
|
|
ynh_secure_remove --file="$install_dir/.go-version"
|
2022-10-14 09:13:16 +02:00
|
|
|
|
2023-03-19 22:27:19 +01:00
|
|
|
chmod +x "$install_dir/galene-password-generator"
|
|
|
|
|
2021-01-09 12:31:07 +01:00
|
|
|
#=================================================
|
2022-10-14 09:13:16 +02:00
|
|
|
# ADD A CONFIGURATION
|
2021-01-09 12:31:07 +01:00
|
|
|
#=================================================
|
2022-10-14 09:13:16 +02:00
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2023-03-19 22:27:19 +01:00
|
|
|
password_hash=$(echo $($install_dir/galene-password-generator $password))
|
|
|
|
ynh_app_setting_set --app=$app --key=password_hash --value="$password_hash"
|
|
|
|
|
2022-10-14 09:13:16 +02:00
|
|
|
# Configure Galène
|
2024-02-28 22:20:14 +01:00
|
|
|
ynh_add_config --template="config.json" --destination="$install_dir/live/data/config.json"
|
2023-03-10 07:59:41 +01:00
|
|
|
chmod 400 "$install_dir/live/data/config.json"
|
|
|
|
chown $app:$app "$install_dir/live/data/config.json"
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2022-10-14 09:13:16 +02:00
|
|
|
# Configure Galène LDAP
|
|
|
|
key=$(jose jwk gen -i '{"kty":"oct","alg":"HS256"}')
|
|
|
|
ynh_app_setting_set --app=$app --key=key --value="$key"
|
2024-02-28 22:20:14 +01:00
|
|
|
ynh_add_config --template="galene-ldap.json" --destination="$install_dir/live_ldap/data/galene-ldap.json"
|
2023-03-10 07:59:41 +01:00
|
|
|
chmod 400 "$install_dir/live_ldap/data/galene-ldap.json"
|
|
|
|
chown $app:$app "$install_dir/live_ldap/data/galene-ldap.json"
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2021-09-06 10:34:58 +02:00
|
|
|
# Create a group name config
|
2024-02-28 22:20:14 +01:00
|
|
|
ynh_add_config --template="groupname.json" --destination="$data_dir/groups/$group_name.json"
|
2023-03-10 07:59:41 +01:00
|
|
|
chmod 400 "$data_dir/groups/$group_name.json"
|
|
|
|
chown $app:$app "$data_dir/groups/$group_name.json"
|
2022-10-14 09:13:16 +02:00
|
|
|
|
|
|
|
# Create a group name authenticated on LDAP
|
2024-02-28 22:20:14 +01:00
|
|
|
ynh_add_config --template="groupname-ldap.json" --destination="$data_dir/groups/YunoHost_Users.json"
|
2023-03-10 07:59:41 +01:00
|
|
|
chmod 400 "$data_dir/groups/YunoHost_Users.json"
|
|
|
|
chown $app:$app "$data_dir/groups/YunoHost_Users.json"
|
2021-02-25 10:12:39 +01:00
|
|
|
|
2021-11-23 22:19:40 +01:00
|
|
|
#=================================================
|
2024-05-26 21:48:21 +02:00
|
|
|
# SYSTEM CONFIGURATION
|
2021-11-23 22:19:40 +01:00
|
|
|
#=================================================
|
2024-05-26 21:48:21 +02:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2022-10-14 09:13:16 +02:00
|
|
|
|
|
|
|
public_ip4="$(curl -s ip.yunohost.org)" || true
|
2021-11-23 22:19:40 +01:00
|
|
|
|
2024-05-26 21:48:21 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2022-10-14 09:13:16 +02:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
ynh_add_systemd_config --service=${app}_ldap --template="ldap.service"
|
2021-11-23 22:19:40 +01:00
|
|
|
|
2023-03-10 07:59:41 +01:00
|
|
|
yunohost service add $app --description="Videoconferencing server" --needs_exposed_ports="$port_turn"
|
2022-10-14 09:13:16 +02:00
|
|
|
yunohost service add ${app}_ldap --description="LDAP integration for the videoconferencing server"
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-01-09 23:03:18 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
# Start a systemd service
|
2022-10-14 09:13:16 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
|
|
|
|
ynh_systemd_action --service_name=${app}_ldap --action="start" --log_path="systemd"
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-02-26 19:30:38 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|