1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/galette_ynh.git synced 2024-09-03 18:36:28 +02:00
galette_ynh/scripts/install

179 lines
5.7 KiB
Text
Raw Normal View History

2015-10-17 10:47:21 +02:00
#!/bin/bash
2018-02-27 22:35:57 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2018-02-27 22:35:57 +01:00
source _common.sh
source /usr/share/yunohost/helpers
2018-02-27 22:35:57 +01:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2015-10-17 10:47:21 +02:00
2018-02-27 22:35:57 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2015-10-17 10:47:21 +02:00
2018-02-27 22:35:57 +01:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2018-02-27 22:35:57 +01:00
app=$YNH_APP_INSTANCE_NAME
2018-02-27 22:35:57 +01:00
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
2018-02-27 22:35:57 +01:00
is_public=$YNH_APP_ARG_IS_PUBLIC
2018-02-27 22:35:57 +01:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2021-01-05 23:31:12 +01:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
2015-10-17 10:47:21 +02:00
2018-02-27 22:35:57 +01:00
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die "This path already contains a folder"
2018-02-27 22:35:57 +01:00
# Register (book) web path
2021-01-05 23:31:12 +01:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2018-02-27 22:35:57 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2021-01-05 23:31:12 +01:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2015-10-17 10:47:21 +02:00
2021-01-05 23:31:12 +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=is_public --value=$is_public
2019-09-25 22:51:37 +02:00
2018-02-27 22:35:57 +01:00
#=================================================
# CREATE A MYSQL DATABASE
#=================================================
2021-01-05 23:31:12 +01:00
ynh_script_progression --message="Creating a MySQL database..." --weight=2
2021-01-05 23:31:12 +01:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
db_user=$db_name
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name
2018-02-27 22:35:57 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-01-05 23:31:12 +01:00
ynh_script_progression --message="Setting up source files..." --time --weight=1
2021-01-05 23:31:12 +01:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2018-02-27 22:35:57 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2021-01-05 23:31:12 +01:00
ynh_setup_source --dest_dir="$final_path"
mv "$final_path"/galette/* "$final_path"/
ynh_secure_remove "$final_path"/tests
chown -R root:root "$final_path"
2018-02-27 22:35:57 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-01-05 23:31:12 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2021-01-05 23:31:12 +01:00
# Create a dedicated NGINX config
2018-02-27 22:35:57 +01:00
ynh_add_nginx_config
2018-02-27 22:35:57 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-01-05 23:31:12 +01:00
ynh_script_progression --message="Configuring system user..." --weight=1
2018-02-27 22:35:57 +01:00
# Create a system user
2021-01-05 23:31:12 +01:00
ynh_system_user_create --username=$app
2018-02-27 22:35:57 +01:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2021-01-05 23:31:12 +01:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=2
2015-10-17 10:47:21 +02:00
2021-01-05 23:31:12 +01:00
# Create a dedicated PHP-FPM config
ynh_add_fpm_config --package="$extra_php_dependencies"
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2018-02-27 22:35:57 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2021-01-05 23:31:12 +01:00
chown "$app" "$final_path/config"
chmod 750 "$final_path/config"
2018-02-27 22:35:57 +01:00
for folder in attachments cache exports files imports logs photos templates_c tempimages
do
2021-01-05 23:31:12 +01:00
chown "$app" "$final_path/data/$folder"
chmod 750 "$final_path/data/$folder"
2018-02-27 22:35:57 +01:00
done
#=================================================
# SETUP LOGROTATE
#=================================================
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# SETUP SSOWAT
#=================================================
if [[ "$path_url" == "/" ]]
then
# ynh panel is only comptable with non-root installation
ynh_replace_string " include conf.d/" " #include conf.d/" "$finalnginxconf"
else
ynh_replace_string "^#sub_path_only" "" "$finalnginxconf"
fi
ynh_store_file_checksum "$finalnginxconf"
if [ "$is_public" -eq 0 ]
2018-02-27 22:35:57 +01:00
then # Remove the public access
ynh_app_setting_delete "$app" skipped_uris
fi
# Make app public if necessary
if [ "$is_public" -eq 1 ]
2018-02-27 22:35:57 +01:00
then
# unprotected_uris allows SSO credentials to be passed anyway.
ynh_app_setting_set "$app" skipped_uris "/"
2018-02-27 22:35:57 +01:00
fi
2018-02-27 22:35:57 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2021-01-05 23:31:12 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
2021-01-05 23:31:12 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# SEND A README FOR THE ADMIN
#=================================================
message="Galette need you to finish the installation manually.
2019-09-25 21:04:44 +02:00
Please open "$domain/$path_url" and finish the install process.
Database information you'll need:
Type: mysql
Host: localhost
Port: 3306
User: "$db_name"
Password: "$db_pwd"
Name: "$db_name"
2019-09-25 21:04:44 +02:00
Important! Once done, please remember to run as root or with sudo:
\`chmod -R 500 "$final_path/config"\`
2019-09-25 21:04:44 +02:00
\`rm -fr "$final_path/install"\`
If you facing an issue or want to improve this app, please open a new issue in this project: https://github.com/YunoHost-Apps/galette_ynh"
ynh_send_readme_to_admin "$message"
2021-01-05 23:31:12 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed" --last