1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tvheadend_ynh.git synced 2024-10-01 13:34:50 +02:00
tvheadend_ynh/scripts/restore

159 lines
5.7 KiB
Text
Raw Normal View History

2019-10-15 15:56:27 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source ../settings/scripts/_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
#=================================================
# LOAD SETTINGS
#=================================================
2019-10-15 16:25:54 +02:00
ynh_script_progression --message="Loading settings..." --weight=1
2019-10-15 15:56:27 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
2019-10-16 13:19:40 +02:00
path_url=$(ynh_app_setting_get --app=$app --key=path)
2019-10-15 17:33:46 +02:00
superuser=$(ynh_app_setting_get --app=$app --key=superuser)
2019-10-23 10:16:15 +02:00
password=$(ynh_app_setting_get --app=$app --key=password)
2019-10-15 15:56:27 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2021-09-30 15:29:07 +02:00
conf_dir=$(ynh_app_setting_get --app=$app --key=conf_dir)
2019-10-15 15:56:27 +02:00
port=$(ynh_app_setting_get --app=$app --key=port)
stream_port=$(ynh_app_setting_get --app=$app --key=stream_port)
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2019-10-23 10:16:15 +02:00
ynh_script_progression --message="Validating restoration parameters..." --weight=16
2019-10-15 15:56:27 +02:00
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
2019-10-23 10:16:15 +02:00
# STANDARD MODIFICATIONS
#=================================================
# OPEN TVHEADEND PORTS
2019-10-15 15:56:27 +02:00
#=================================================
2021-09-30 15:29:07 +02:00
ynh_script_progression --message="Configuring firewall..." --weight=15
2019-10-15 15:56:27 +02:00
if yunohost firewall list | grep -q "\- $port$"
then
ynh_die --message="Port $port already open (and maybe used by another application)"
fi
if yunohost firewall list | grep -q "\- $stream_port$"
then
ynh_die --message="Port $stream_port already open (and maybe used by another application)"
fi
ynh_exec_warn_less yunohost firewall allow --no-upnp TCP $port
ynh_exec_warn_less yunohost firewall allow --no-upnp TCP $stream_port
#=================================================
2019-10-23 10:16:15 +02:00
# INSTALL DEPENDENCIES
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
ynh_script_progression --message="Installing dependencies..." --weight=7
2019-10-15 15:56:27 +02:00
if [ -n "$(uname -m | grep arm)" ]
then
ynh_install_app_dependencies $pkg_dependencies_rb
else
ynh_install_app_dependencies $pkg_dependencies_x86
fi
#=================================================
2019-10-20 18:28:27 +02:00
# DOWNLOAD TVHEADEND DEB PACKAGE
2019-10-15 15:56:27 +02:00
#=================================================
2020-10-13 18:23:23 +02:00
ynh_script_progression --message="Downloading Tvheadend..." --weight=3
2019-10-15 15:56:27 +02:00
temp_folder="$(mktemp -d)"
tvheadend_deb_dst="$temp_folder/tvheadend_deb.deb"
if [ -n "$(uname -m | grep arm)" ]
then
2019-10-23 10:16:15 +02:00
tvheadend_deb_url="$tvheadend_deb_arm"
2019-10-15 15:56:27 +02:00
else
2021-09-30 15:29:07 +02:00
tvheadend_deb_url="$tvheadend_deb_x86"
2019-10-15 15:56:27 +02:00
fi
2019-10-23 10:16:15 +02:00
ynh_exec_quiet "wget -q -O $tvheadend_deb_dst $tvheadend_deb_url"
2019-10-20 18:28:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
# INSTALL TVHEADEND DEB PACKAGE
2019-10-20 18:28:27 +02:00
#=================================================
2020-10-13 18:23:23 +02:00
ynh_script_progression --message="Installing Tvheadend..." --weight=13
2019-10-23 10:16:15 +02:00
2021-09-30 13:25:40 +02:00
ynh_exec_warn_less DEBIAN_FRONTEND=noninteractive dpkg -i $tvheadend_deb_dst
2019-10-15 15:56:27 +02:00
ynh_secure_remove --file="$temp_folder"
2019-10-23 10:16:15 +02:00
# The deb install automatically create the hts system user
2019-10-15 15:56:27 +02:00
# Tvheadend automatically start after install
2019-10-20 18:28:27 +02:00
# we stop it before the configuration
2019-10-15 15:56:27 +02:00
ynh_systemd_action --service_name=$app --action="stop"
#=================================================
2019-10-23 10:16:15 +02:00
# RESTORE TVHEADEND CONFIG FILES
2019-10-15 15:56:27 +02:00
#=================================================
2020-10-13 18:23:23 +02:00
ynh_script_progression --message="Restoring Tvheadend main directory and config files..." --weight=1
2019-10-15 15:56:27 +02:00
ynh_restore_file --origin_path="/etc/default/tvheadend"
2019-10-23 10:16:15 +02:00
ynh_restore_file --origin_path="$final_path"
2019-10-15 15:56:27 +02:00
#=================================================
2019-10-23 10:16:15 +02:00
# RESTORE THE NGINX CONFIGURATION
2019-10-20 18:28:27 +02:00
#=================================================
2020-10-13 18:23:23 +02:00
ynh_script_progression --message="Restoring NGINX web server configuration..." --weight=1
2019-10-23 10:16:15 +02:00
2019-10-20 18:28:27 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-10-15 15:56:27 +02:00
#=================================================
2021-09-30 15:29:07 +02:00
# INTEGRATE SERVICE IN YUNOHOST
2019-10-15 15:56:27 +02:00
#=================================================
2021-09-30 15:29:07 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
yunohost service add $app --description="TV streaming server and recorder" --needs_exposed_ports $port $stream_port
2019-10-15 15:56:27 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-09-30 16:49:12 +02:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2019-10-15 15:56:27 +02:00
2021-09-30 16:49:12 +02:00
ynh_permission_update --permission="main" --add="visitors"
2019-10-15 15:56:27 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-10-13 18:23:23 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2019-10-15 15:56:27 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
2019-10-23 10:16:15 +02:00
# PREVENT TVHEADEND BEING UPGRADED THROUGHT APT
#=================================================
2020-10-13 18:23:23 +02:00
ynh_script_progression --message="Prevent Tvheadend being upgraded throught APT..." --weight=1
apt-mark hold tvheadend
#=================================================
2019-10-23 10:16:15 +02:00
# START TVHEADEND SERVICE
2019-10-15 15:56:27 +02:00
#=================================================
2020-10-13 18:23:23 +02:00
ynh_script_progression --message="Starting Tvheadend service..." --weight=1
2019-10-15 15:56:27 +02:00
ynh_systemd_action --service_name=$app --action="start"
2019-10-15 15:56:27 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-10-13 18:23:23 +02:00
ynh_script_progression --message="Installation of Tvheadend completed, HTTP port is $port and HTSP port is $stream_port" --last
2019-10-15 15:56:27 +02:00