2020-03-01 11:28:28 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_clean_setup () {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
# 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=$YNH_APP_ARG_PATH
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
language=$YNH_APP_ARG_LANGUAGE
|
2022-07-17 03:21:03 +02:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
2020-03-01 11:28:28 +01:00
|
|
|
password=$YNH_APP_ARG_PASSWORD
|
2020-03-27 11:32:49 +01:00
|
|
|
wiki=$YNH_APP_ARG_WIKI
|
2020-03-27 10:52:32 +01:00
|
|
|
color=$YNH_APP_ARG_COLOR
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
|
|
|
|
2020-03-01 11:28:28 +01:00
|
|
|
final_path=/var/www/$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
|
|
|
|
#=================================================
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --weight=1
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
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=language --value=$language
|
2022-07-17 03:21:03 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=admin --value=$admin
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
2022-07-17 03:21:03 +02:00
|
|
|
# INSTALL DEPENDENCIES
|
2020-03-01 11:28:28 +01:00
|
|
|
#=================================================
|
2022-07-17 03:21:03 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=3
|
2020-03-01 11:28:28 +01:00
|
|
|
|
2022-07-17 03:21:03 +02:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-07-17 03:21:03 +02:00
|
|
|
# CREATE DEDICATED USER
|
2020-03-01 11:28:28 +01:00
|
|
|
#=================================================
|
2022-07-17 03:21:03 +02:00
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=1
|
2020-03-01 11:28:28 +01:00
|
|
|
|
2022-07-17 03:21:03 +02:00
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=4
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
|
2020-03-01 11:28:28 +01:00
|
|
|
|
2020-11-27 10:49:00 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2020-03-01 11:28:28 +01:00
|
|
|
ynh_add_fpm_config
|
2020-11-27 10:49:00 +01:00
|
|
|
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
|
2020-03-01 11:28:28 +01:00
|
|
|
|
2022-07-17 03:21:03 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2020-03-01 11:28:28 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
2022-07-17 03:21:03 +02:00
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding a configuration file..."
|
2020-03-01 13:21:59 +01:00
|
|
|
|
|
|
|
### Copy Yunohost specific configuration
|
|
|
|
# This File cannot be modified directly by wiki, only by hand or by Yunohost
|
|
|
|
# It will only be updated by Yunohost package or directly by adventurous users
|
|
|
|
cp ../conf/config.php $final_path/
|
|
|
|
|
2020-03-27 10:52:32 +01:00
|
|
|
cp ../conf/minimaxing.less $final_path/templates/minimaxing/
|
2020-04-06 11:45:16 +02:00
|
|
|
cp ../conf/minimaxing.css $final_path/templates/minimaxing/minimaxing_org.css
|
2020-04-06 01:13:43 +02:00
|
|
|
|
2020-05-14 20:56:58 +02:00
|
|
|
cp ../conf/pheditor.php $final_path/
|
|
|
|
|
2020-04-06 01:13:43 +02:00
|
|
|
# we already use the default html template
|
|
|
|
#cp ../conf/minimaxing.html $final_path/templates/
|
2020-03-27 10:52:32 +01:00
|
|
|
|
2020-03-01 13:21:59 +01:00
|
|
|
# Set the password
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_replace_string --match_string="__YNH_PASSWORD__" --replace_string="$password" --target_file="$final_path/config.php"
|
2020-03-01 13:21:59 +01:00
|
|
|
|
2020-04-23 13:06:01 +02:00
|
|
|
# Set the "admin" user (not used, admin password = user password, you can modify it later)
|
|
|
|
# ynh_replace_string --match_string="__YNH_ADMINPASSWORD__" --replace_string="$password" --target_file="$final_path/config.php"
|
2020-03-01 13:21:59 +01:00
|
|
|
|
2020-05-14 20:56:58 +02:00
|
|
|
# set user password in pheditor
|
|
|
|
|
|
|
|
pheditorhash=`python -c 'import hashlib; import sys; a=str(sys.argv[1]); print(hashlib.sha512(a.encode("UTF-8")).hexdigest())' $password`
|
|
|
|
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_replace_string --match_string="__YNH_PASSWORD__" --replace_string="$pheditorhash" --target_file="$final_path/pheditor.php"
|
2020-05-14 20:56:58 +02:00
|
|
|
|
2020-03-01 13:21:59 +01:00
|
|
|
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_replace_string --match_string="__YNH_LANG__" --replace_string="$language" --target_file="$final_path/config.php"
|
2020-03-27 10:52:32 +01:00
|
|
|
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_replace_string --match_string="__YNH_LABEL__" --replace_string="$wiki" --target_file="$final_path/config.php"
|
2020-04-06 01:28:35 +02:00
|
|
|
|
2020-05-14 20:56:58 +02:00
|
|
|
|
2020-11-27 10:49:00 +01:00
|
|
|
#ynh_replace_string --match_string="__YNH_COLOR__" --replace_string="$color" --target_file="$final_path/templates/minimaxing/minimaxing.less"
|
2020-04-06 01:28:35 +02:00
|
|
|
|
2020-04-06 01:13:43 +02:00
|
|
|
# test if the color was correctly set (6 hexadecimal values)
|
2020-04-23 13:06:01 +02:00
|
|
|
# if not, we'll use a default grey color (#555555)
|
2020-04-06 01:28:35 +02:00
|
|
|
|
2020-04-06 09:49:53 +02:00
|
|
|
if echo "$color" | grep -q -E '[A-Fa-f0-9]{6}'
|
|
|
|
then
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_replace_string --match_string="__YNH_COLOR__" --replace_string="$color" --target_file="$final_path/templates/minimaxing/minimaxing.less"
|
|
|
|
ynh_replace_string --match_string="__YNH_COLOR__" --replace_string="$color" --target_file="$final_path/templates/ggp/ggp.less"
|
2020-04-06 09:49:53 +02:00
|
|
|
else
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_replace_string --match_string="__YNH_COLOR__" --replace_string="555555" --target_file="$final_path/templates/minimaxing/minimaxing.less"
|
|
|
|
ynh_replace_string --match_string="__YNH_COLOR__" --replace_string="555555" --target_file="$final_path/templates/ggp/ggp.less"
|
2020-04-06 09:49:53 +02:00
|
|
|
fi
|
2020-04-06 01:13:43 +02:00
|
|
|
|
2020-04-06 09:34:30 +02:00
|
|
|
# soon lessc will require the --js option
|
2020-04-06 09:21:54 +02:00
|
|
|
# lessc --js $final_path/templates/minimaxing/minimaxing.less > $final_path/templates/minimaxing/minimaxing.css
|
2020-04-06 09:49:53 +02:00
|
|
|
|
2020-04-06 09:34:30 +02:00
|
|
|
lessc $final_path/templates/minimaxing/minimaxing.less > $final_path/templates/minimaxing/minimaxing.css
|
2020-04-06 01:13:43 +02:00
|
|
|
|
2020-05-14 20:56:58 +02:00
|
|
|
lessc $final_path/templates/ggp/ggp.less > $final_path/templates/ggp/ggp.css
|
|
|
|
|
2020-11-27 10:49:00 +01:00
|
|
|
#ynh_replace_string --match_string="__YNH_COLOR__" --replace_string="$color" --target_file="$final_path/templates/minimaxing/minimaxing.css"
|
2020-03-01 11:28:28 +01:00
|
|
|
|
2020-04-28 08:57:06 +02:00
|
|
|
ynh_store_file_checksum --file="$final_path/config.php"
|
|
|
|
ynh_store_file_checksum --file="$final_path/config.t2t"
|
|
|
|
ynh_store_file_checksum --file="$final_path/menu.php"
|
|
|
|
|
2020-03-01 11:28:28 +01:00
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Set permissions to app files
|
2021-12-04 01:21:13 +01:00
|
|
|
chown -R $app:www-data $final_path
|
2021-12-04 00:52:48 +01:00
|
|
|
chmod -R o-rwx $final_path
|
2021-12-04 01:21:13 +01:00
|
|
|
find $final_path -type d -exec chmod g=rx {} +
|
|
|
|
find $final_path -type f -exec chmod g=r {} +
|
2020-03-01 12:53:03 +01:00
|
|
|
|
2022-07-17 03:21:03 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2020-03-01 11:28:28 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2021-03-19 23:28:49 +01:00
|
|
|
ynh_script_progression --message="Configuring permissions..." --weight=1
|
2020-03-01 11:28:28 +01:00
|
|
|
|
2022-07-17 03:21:03 +02:00
|
|
|
# Make app public if necessary
|
2020-03-01 11:28:28 +01:00
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
2022-07-17 03:21:03 +02:00
|
|
|
# Everyone can access the app.
|
|
|
|
# The "main" permission is automatically created before the install script.
|
2021-01-27 09:36:37 +01:00
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
2020-03-01 11:28:28 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-11-27 11:21:46 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|