1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lionwiki-t2t_ynh.git synced 2024-09-03 19:36:27 +02:00
lionwiki-t2t_ynh/scripts/install

233 lines
8.8 KiB
Text
Raw Normal View History

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 () {
### Remove this function if there's nothing to clean before calling the remove script.
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
admin=$YNH_APP_ARG_ADMIN
is_public=$YNH_APP_ARG_IS_PUBLIC
language=$YNH_APP_ARG_LANGUAGE
password=$YNH_APP_ARG_PASSWORD
2020-03-27 11:32:49 +01:00
wiki=$YNH_APP_ARG_WIKI
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=admin --value=$admin
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
ynh_app_setting_set --app=$app --key=language --value=$language
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
2020-11-27 10:49:00 +01:00
ynh_script_progression --message="Configuring firewall..." --weight=1
2020-03-01 11:28:28 +01:00
# Find an available port
port=$(ynh_find_port --port=8095)
ynh_app_setting_set --app=$app --key=port --value=$port
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2020-11-27 10:49:00 +01:00
ynh_script_progression --message="Installing dependencies..." --weight=3
2020-03-01 11:28:28 +01:00
ynh_install_app_dependencies $pkg_dependencies
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"
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-11-27 10:49:00 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
2020-03-01 11:28:28 +01:00
2020-11-27 10:49:00 +01:00
# Create a dedicated NGINX config
2020-03-01 11:28:28 +01:00
ynh_add_nginx_config
#=================================================
# CREATE DEDICATED USER
#=================================================
2020-11-27 10:49:00 +01:00
ynh_script_progression --message="Configuring system user..." --weight=1
2020-03-01 11:28:28 +01:00
# Create a system user
ynh_system_user_create --username=$app
#=================================================
# 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
#=================================================
# SPECIFIC SETUP
#=================================================
2020-03-01 13:21:59 +01:00
# customise Lionwiki-t2t
### 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/
cp ../conf/minimaxing.less $final_path/templates/minimaxing/
cp ../conf/minimaxing.css $final_path/templates/minimaxing/minimaxing_org.css
2020-04-06 01:13:43 +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-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
# 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-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-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-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
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
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
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
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions to app files
chown -R root: $final_path
2020-03-01 12:53:03 +01:00
# Wiki needs to write inside these folders. Make "Wiki" owner
2020-03-01 12:58:03 +01:00
chown -R $app:root $final_path/var
2020-04-06 09:34:30 +02:00
chown -R $app:root $final_path/templates
2020-03-01 12:53:03 +01:00
# write everything, even config files, for pheditor:
chown -R $app:root $final_path/
2020-03-01 12:53:03 +01:00
# Allow access to public assets like style sheets
find $final_path/templates -type f -print0 | xargs -0 chmod 0644
find $final_path/templates -type d -print0 | xargs -0 chmod 0755
2020-04-06 09:34:30 +02:00
find $final_path/templates/minimaxing/minimaxing.css -type f -print0 | xargs -0 chmod 0755
2020-03-01 12:53:03 +01:00
# Using "find" instead of "chmod -R 755" so files does not become executable too
# chmod : -rwxr-xr-x 1 root root 241 May 3 08:36 index.html => BAD
# find : -rw-r--r-- 1 1001 1002 241 May 3 08:36 index.html => GOOD
2020-03-01 11:28:28 +01:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2020-11-27 10:49:00 +01:00
yunohost service add $app --description "Lightweight wiki-style CMS" --log "/var/log/$app/$app.log"
2020-03-01 11:28:28 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
2020-11-27 10:49:00 +01:00
ynh_script_progression --message="Configuring SSOwat..." --weight=1
2020-03-01 11:28:28 +01:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway.
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
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