mirror of
https://github.com/YunoHost-Apps/galene_ynh.git
synced 2024-09-03 18:36:31 +02:00
e51e56d1cc
* Delete turnserver from ssl-cert * Fix * Fix links * Update upgrade * Update manifest.json * Fix * Fix * Update systemd.service * Remove badge * Update pull_request_template.md * Update install * add doc page * Add doc * Update nginx.conf * Update nginx.conf * Update nginx.conf * Update nginx.conf * Update nginx.conf * Update install * Fix * Fix * Update Coturn_config_rotate.sh * Update pull_request_template.md * Update Coturn_config_rotate.sh * Update manifest.json * Add description * Add logs * Update nginx.conf * Update groupname.json * Update install * Create .gitignore * Without turn 0.3 (#20) * Upgrade to version 0.3 * Revert "Merge branch 'testing' into without-turn" This reverts commite15d4cbc71
, reversing changes made to16ba00f162
. * Update install * Remove cli port * Upgrade to version 0.3.1 * Update install * Upgrade to 0.3.1 * Open port 8443 * Fix systemd config * Update groupname.json * Update remove * Removing Send a email * rework coturn config * Update ice-servers.json * Update ice-servers.json * Fix * Update ice-servers.json * Update change_url * Update nginx.conf * Update groupname.json * Fix * Update nginx.conf * Update install * Update turnserver.conf * Cleaning up * Make curl silent * Make curl silent * Update upgrade * Make curl silent * Update install * fix * Update upgrade * Fix * Upgrade to 0.3.2 (#27) * Upgrade to version 0.3.2 * Group description (#29) * Allow group description on install * Add -turn command-line option in systemd * Update install * Add turn port * Update install * Fix * Add group description * Fix * Update manifest.json * Cleaning up * Update upgrade * Update manifest.json * Set config file permissions * Update upgrade * Set new_path to root * Update install * Update upgrade * Fix badges * Update manifest.json * Fix badges * Remove open firewall * Protect config groups folder * Remove firewall allow for 8443 (#35) * remove firewall allow for 8443 * Update Coturn_config_rotate.sh * Multi instance * Update install * Fix * Update ice-servers.json * Update manifest.json * Upgrade to version 0.3.3 * Update systemd.service * Update upgrade * Update systemd.service * Upgrade to version 0.3.3 (#39) * Add port * Add home * Change permission * Update install * Upgrade to version 0.3.4 * Upgrade to version 0.3.4 (#40) * Fix * Update manifest.json * Revert "Update manifest.json" This reverts commitca7464632e
. * [autopatch] Update issue and PR templates (#45) Co-authored-by: Yunohost-Bot <> * Add templates * Add screenshot * Update check_process * Update check_process * Upgrade to version 0.3.5 (#47) * Upgrade to version 0.3.5 * Add add_config * Update upgrade * Check if a cron job is present and remove it * Update manifest.json * Update check_process * Add templates * Auto-update README * Fix access to the /stats page * Add new line in passwd file for user:password parsing (#52) * Add new line in passwd file for user:password parsing * Fix * Create screenshot.png * Add templates * Auto-update README * Cleaning up * Auto-update README * Update manifest.json * Fix * Fix * Auto-update README * Remove generated certificates * Fix * Fix * Fix * Fix * Fix * Auto-update README * Fix * Auto-update README * Various fix * Auto-update README * Update install * Update upgrade * Fix * Fix * Fix * Update systemd.service * Update systemd.service * Fix * Update systemd.service * Update check_process * Auto-update README * Update systemd.service * Update manifest.json * Auto-update README * Add accent * Auto-update README * Update systemd.service * Add description * Auto-update README * Fix * Auto-update README * 0.4 * Update systemd.service * Auto-update README * 0.4 (#58) * Fix * Update restore * Update install * Update remove * Update upgrade * Update systemd.service * Update systemd.service * Revert "Update systemd.service" This reverts commit3e4d1b95d4
. * Fix link * Auto-update README * Notif (#60) * Update upgrade * Update manifest.json * Auto-update README * Update systemd.service * Update manifest.json * Auto-update README * Update manifest.json * Fix * Auto-update README * 0.4.1 (#65) * Update version 0.4.1 * Update manifest.json * Fix change url * Auto-update README * Update upgrade * Update upgrade * Fix * Auto-update README * remove arch helper (#68) * remove arch helper * Update install * Update manifest.json * Auto-update README * 0.4.2 * Auto-update README * Fix * Auto-update README * Update restore * We do not open 8443 We do not open 8443 as it is going through NGINX proxy * Auto-update README * 0.4.3 (#72) * 0.4.3 * 0.4.4 (#74) * 0.4.4 * 0.5 (#77) * 0.5 * Update DESCRIPTION.md * Auto-update README * Update DESCRIPTION.md * Merge branch 'testing' of https://github.com/YunoHost-Apps/galene_ynh into testing * Update DESCRIPTION.md * cleaning up * Auto-update README * 0.5.1 (#80) * Upgrade * Auto-update README Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: Alexandre Aubin <alex.aubin@mailoo.org> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> Co-authored-by: tituspijean <tituspijean@outlook.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org>
196 lines
6.6 KiB
Bash
Executable file
196 lines
6.6 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# MANAGE SCRIPT FAILURE
|
|
#=================================================
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
ynh_abort_if_errors
|
|
|
|
#=================================================
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
#=================================================
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
path_url="/"
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
password=$YNH_APP_ARG_PASSWORD
|
|
group_name=$YNH_APP_ARG_GROUP_NAME
|
|
group_description=$YNH_APP_ARG_GROUP_DESCRIPTION
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
#=================================================
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
#=================================================
|
|
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
|
|
|
final_path=/opt/yunohost/$app
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
|
|
|
# Register (book) web path
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
|
|
|
#=================================================
|
|
# STORE SETTINGS FROM MANIFEST
|
|
#=================================================
|
|
ynh_script_progression --message="Storing installation settings..." --weight=4
|
|
|
|
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
ynh_app_setting_set --app=$app --key=path --value=$path_url
|
|
ynh_app_setting_set --app=$app --key=admin --value=$admin
|
|
ynh_app_setting_set --app=$app --key=password --value=$password
|
|
ynh_app_setting_set --app=$app --key=group_name --value="$group_name"
|
|
ynh_app_setting_set --app=$app --key=group_description --value="$group_description"
|
|
|
|
#=================================================
|
|
# STANDARD MODIFICATIONS
|
|
#=================================================
|
|
# FIND AND OPEN A PORT
|
|
#=================================================
|
|
ynh_script_progression --message="Finding an available port..." --weight=3
|
|
|
|
# Find an available port
|
|
port=$(ynh_find_port --port=8443)
|
|
ynh_app_setting_set --app=$app --key=port --value=$port
|
|
|
|
# Find an available port for TURN
|
|
turn_port=$(ynh_find_port --port=1194)
|
|
ynh_app_setting_set --app=$app --key=turn_port --value=$turn_port
|
|
|
|
# Open TURN port
|
|
ynh_script_progression --message="Configuring firewall..." --weight=1
|
|
|
|
ynh_exec_warn_less yunohost firewall allow Both $turn_port
|
|
|
|
# Reserve UDP Port range 49152:65535
|
|
ynh_exec_warn_less yunohost firewall allow UDP -4 49152:65535
|
|
|
|
#=================================================
|
|
# CREATE DEDICATED USER
|
|
#=================================================
|
|
ynh_script_progression --message="Configuring system user..." --weight=3
|
|
|
|
# Create a system user
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
ynh_setup_source --dest_dir="$final_path" --source_id=$YNH_ARCH
|
|
|
|
chmod 750 "$final_path"
|
|
chmod -R o-rwx "$final_path"
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
#=================================================
|
|
# CREATE DATA AND GROUPS FOLDER
|
|
#=================================================
|
|
|
|
# Create data folder
|
|
mkdir -p "$final_path/data"
|
|
|
|
ynh_add_config --template="../conf/config.json" --destination="$final_path/data/config.json"
|
|
|
|
chmod 400 "$final_path/data/config.json"
|
|
chown $app:$app "$final_path/data/config.json"
|
|
|
|
#=================================================
|
|
# NGINX CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
|
|
|
|
# Create a dedicated NGINX config
|
|
ynh_add_nginx_config
|
|
|
|
#=================================================
|
|
# CREATE DATA DIRECTORY
|
|
#=================================================
|
|
ynh_script_progression --message="Creating a data directory..." --weight=1
|
|
|
|
datadir=/home/yunohost.app/$app
|
|
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
|
|
|
|
mkdir -p $datadir/{groups,recordings}
|
|
|
|
chmod 750 "$datadir"
|
|
chmod -R o-rwx "$datadir"
|
|
chown -R $app:www-data "$datadir"
|
|
|
|
#=================================================
|
|
# SETUP SYSTEMD
|
|
#=================================================
|
|
ynh_script_progression --message="Configuring a systemd service..." --weight=1
|
|
|
|
public_ip4="$(curl -s ip.yunohost.org)" || true
|
|
|
|
# Create a dedicated systemd config
|
|
ynh_add_systemd_config
|
|
|
|
#=================================================
|
|
# MODIFY A CONFIG FILES
|
|
#=================================================
|
|
|
|
# Create a group name config
|
|
ynh_add_config --template="../conf/groupname.json" --destination="$datadir/groups/$group_name.json"
|
|
|
|
#=================================================
|
|
# SETUP LOGROTATE
|
|
#=================================================
|
|
ynh_script_progression --message="Configuring log rotation..." --weight=1
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
ynh_use_logrotate
|
|
|
|
#=================================================
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
#=================================================
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=2
|
|
|
|
yunohost service add $app --description="Videoconferencing server" --log="/var/log/$app/$app.log" --needs_exposed_ports="$turn_port"
|
|
|
|
#=================================================
|
|
# START SYSTEMD SERVICE
|
|
#=================================================
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
# Start a systemd service
|
|
ynh_systemd_action --service_name=$app --action=start --log_path="systemd"
|
|
|
|
#=================================================
|
|
# SETUP SSOWAT
|
|
#=================================================
|
|
ynh_script_progression --message="Configuring permissions..." --weight=2
|
|
|
|
# Make app public if necessary
|
|
if [ $is_public -eq 1 ]
|
|
then
|
|
ynh_permission_update --permission="main" --add="visitors"
|
|
fi
|
|
|
|
#=================================================
|
|
# RELOAD NGINX
|
|
#=================================================
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|