mirror of
https://github.com/YunoHost-Apps/lutim_ynh.git
synced 2024-09-03 19:36:24 +02:00
208 lines
6.8 KiB
Bash
208 lines
6.8 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC STARTING
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
# Load common variables for all scripts.
|
|
source _variables
|
|
|
|
#=================================================
|
|
# MANAGE FAILURE OF THE SCRIPT
|
|
#=================================================
|
|
|
|
ynh_clean_setup () {
|
|
# Nettoyage des résidus d'installation non pris en charge par le script remove.
|
|
ynh_clean_check_starting
|
|
}
|
|
ynh_abort_if_errors
|
|
|
|
#=================================================
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
#=================================================
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
path_url=$YNH_APP_ARG_PATH
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
always_encrypt=$YNH_APP_ARG_ALWAYS_ENCRYPT
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
#=================================================
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THIS ARGS
|
|
#=================================================
|
|
|
|
final_path=/var/www/$app
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
|
|
|
# Normalize the url path syntax
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
|
|
|
# Check web path availability
|
|
ynh_webpath_available $domain $path_url
|
|
# Register (book) web path
|
|
ynh_webpath_register $app $domain $path_url
|
|
|
|
#=================================================
|
|
# STORE SETTINGS FROM MANIFEST
|
|
#=================================================
|
|
|
|
ynh_app_setting_set $app domain $domain
|
|
ynh_app_setting_set $app is_public $is_public
|
|
ynh_app_setting_set $app always_encrypt $always_encrypt
|
|
|
|
#=================================================
|
|
# STANDARD MODIFICATIONS
|
|
#=================================================
|
|
# FIND AND OPEN A PORT
|
|
#=================================================
|
|
|
|
port=$(ynh_find_port 8095) # Cherche un port libre.
|
|
# Ouvre le port dans le firewall
|
|
ynh_exec_fully_quiet yunohost firewall allow --no-upnp TCP $port
|
|
ynh_app_setting_set $app port $port
|
|
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
|
ynh_setup_source "$final_path" # Télécharge la source, décompresse et copie dans $final_path
|
|
|
|
#=================================================
|
|
# INSTALL DEPENDENCIES
|
|
#=================================================
|
|
|
|
ynh_install_app_dependencies $app_depencencies
|
|
|
|
#=================================================
|
|
# NGINX CONFIGURATION
|
|
#=================================================
|
|
|
|
ynh_add_nginx_config
|
|
|
|
#=================================================
|
|
# CREATE DEDICATED USER
|
|
#=================================================
|
|
|
|
ynh_system_user_create $app # Créer un utilisateur système dédié à l'app
|
|
|
|
#=================================================
|
|
# SPECIFIC SETUP
|
|
#=================================================
|
|
# SETUP LUTIM
|
|
#=================================================
|
|
|
|
## Copie et configuration du fichier de conf.
|
|
cp ../conf/lutim.conf.template "$final_path/lutim.conf"
|
|
ynh_replace_string "__DOMAIN__" "$domain" "$final_path/lutim.conf"
|
|
ynh_replace_string "__PATH__" "$path_url" "$final_path/lutim.conf"
|
|
ynh_replace_string "__PORT__" "$port" "$final_path/lutim.conf"
|
|
ynh_replace_string "__ENCRYPT__" "$always_encrypt" "$final_path/lutim.conf"
|
|
secret=$(ynh_string_random)
|
|
ynh_replace_string "__SECRET__" "$secret" "$final_path/lutim.conf"
|
|
ynh_store_file_checksum "$final_path/lutim.conf" # Enregistre la somme de contrôle du fichier de config
|
|
|
|
#=================================================
|
|
# SETUP SYSTEMD
|
|
#=================================================
|
|
|
|
ynh_add_systemd_config
|
|
|
|
#=================================================
|
|
# SETUP CRON
|
|
#=================================================
|
|
|
|
cp ../conf/cron_lutim /etc/cron.d/$app
|
|
ynh_replace_string "__FINALPATH__" "$final_path/" /etc/cron.d/$app
|
|
chmod +x $final_path/script/lutim
|
|
|
|
#=================================================
|
|
# INSTALL LUTIM WITH CARTON
|
|
#=================================================
|
|
|
|
mkdir -p /var/log/$app/
|
|
(cd $final_path
|
|
carton install 2>&1 | tee -a "/var/log/$app/setup_carton.log")
|
|
|
|
# Configure le path du dossier perl en fonction de l'architecture système
|
|
arch_dir=$(ls -1 $final_path/local/lib/perl5/ | grep linux-gnu)
|
|
if [ "$?" -ne 0 ]
|
|
then
|
|
ynh_die "Impossible de trouver le dossier relatif à l'architecture système."
|
|
fi
|
|
ynh_replace_string "__ARCHDIR__" "$arch_dir" "$final_path/script/lutim"
|
|
|
|
#=================================================
|
|
# SETUP LOG FILE
|
|
#=================================================
|
|
|
|
# Making log symbolic link to /var/log
|
|
touch /var/log/$app/production.log
|
|
chown $app -R /var/log/$app
|
|
ln -s /var/log/$app/production.log "$final_path/log/production.log"
|
|
|
|
#=================================================
|
|
# SECURING FILES AND DIRECTORIES
|
|
#=================================================
|
|
|
|
chown -R $app: $final_path
|
|
|
|
#=================================================
|
|
# GENERIC FINALISATION
|
|
#=================================================
|
|
# SETUP LOGROTATE
|
|
#=================================================
|
|
|
|
ynh_use_logrotate
|
|
|
|
#=================================================
|
|
# ENABLE SERVICE IN ADMIN PANEL
|
|
#=================================================
|
|
|
|
yunohost service add lutim -l $final_path/log/production.log
|
|
|
|
#=================================================
|
|
# SETUP SSOWAT
|
|
#=================================================
|
|
|
|
ynh_app_setting_set $app skipped_uris "/"
|
|
if [ $is_public -eq 0 ]
|
|
then # Si l'app est privée, seul le visionnage des images reste public
|
|
if [ "$path_url" == "/" ]; then
|
|
path_url="" # Si path correspond à la racine, supprime le / pour éviter une erreur de la regex.
|
|
fi
|
|
# Modifie le domaine pour qu'il passe dans une regex
|
|
domain_regex=$(echo "$domain" | sed 's@-@.@g')
|
|
ynh_app_setting_set $app protected_regex "$domain_regex$path_url/stats$","$domain_regex$path_url/manifest.webapp$","$domain_regex$path_url/$","$domain_regex$path_url/d/.*$","$domain_regex$path_url/m/.*$"
|
|
fi
|
|
|
|
#=================================================
|
|
# RELOAD NGINX
|
|
#=================================================
|
|
|
|
ynh_system_reload nginx
|
|
|
|
#=================================================
|
|
# CHECK LUTIM BOOTING
|
|
#=================================================
|
|
|
|
# Wait for lutim fully started
|
|
ynh_check_starting "Manager.*started" "/var/log/$app/production.log" "120"
|
|
|
|
# Set right permissions on new files created at first start
|
|
chown -R $app: $final_path
|
|
|
|
#=================================================
|
|
# SEND A README FOR THE ADMIN
|
|
#=================================================
|
|
|
|
message="You can find a config file at $final_path/lutim.conf
|
|
|
|
If you facing an issue or want to improve this app, please open a new issue in this project: https://github.com/YunoHost-Apps/lutim_ynh"
|
|
|
|
ynh_send_readme_to_admin "$message" "root"
|