2015-05-31 13:46:25 +02:00
|
|
|
#!/bin/bash
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2017-02-02 03:37:01 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
source _common.sh
|
2015-05-31 13:46:25 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# MANAGE FAILURE OF THE SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
2015-05-31 13:46:25 +02:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
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
|
2015-05-31 13:46:25 +02:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2015-05-31 13:46:25 +02:00
|
|
|
|
2017-02-02 03:37:01 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THIS ARGS
|
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
2018-03-13 21:49:11 +01:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
final_path=/var/www/$app
|
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
# Register (book) web path
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2018-03-13 21:49:11 +01:00
|
|
|
|
2019-05-21 02:07:00 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2021-07-12 12:28:53 +02:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --weight=1
|
2019-05-21 02:07:00 +02:00
|
|
|
|
2021-07-12 12:11:43 +02: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=language --value=$language
|
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=1
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2015-06-01 00:00:38 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
# CREATE A MYSQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Creating a MySQL database..." --weight=1
|
|
|
|
|
2021-07-12 12:16:32 +02:00
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
2021-07-12 12:11:43 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=1
|
2015-05-31 13:46:25 +02:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2015-05-31 13:46:25 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
2015-05-31 13:46:25 +02:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2018-03-13 21:49:11 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2015-06-01 00:00:38 +02:00
|
|
|
|
2021-07-12 13:10:03 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
2021-07-12 13:33:41 +02:00
|
|
|
chmod 755 "$final_path/limesurvey/tmp"
|
|
|
|
chmod 755 "$final_path/limesurvey/upload"
|
|
|
|
chmod 755 "$final_path/limesurvey/application/config/"
|
2021-07-12 12:28:53 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
|
2019-05-21 02:07:00 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
2015-05-31 13:46:25 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
# Create a dedicated php-fpm config
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE
|
|
|
|
#=================================================
|
2021-07-12 12:28:53 +02:00
|
|
|
|
2021-07-12 12:11:43 +02:00
|
|
|
ynh_add_config --template="../conf/config.php" --destination="$final_path/application/config/config.php"
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
2018-03-14 14:11:46 +01:00
|
|
|
# INSTALL
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
|
2018-03-14 14:11:46 +01:00
|
|
|
ls_cli=$final_path/application/commands/console.php
|
|
|
|
fullname=$(ynh_user_get_info "$admin" "fullname")
|
|
|
|
mail=$(ynh_user_get_info "$admin" "mail")
|
2015-05-31 22:36:35 +02:00
|
|
|
|
2018-03-14 14:11:46 +01:00
|
|
|
# Permission should be correctly set before to do this
|
|
|
|
ynh_exec_as "$app" php $ls_cli install "$admin" "$(ynh_string_random 24)" "$fullname" "$mail"
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
2018-03-14 14:11:46 +01:00
|
|
|
# LOAD SQL SPECIFIC CONFIG
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2021-07-12 12:11:43 +02:00
|
|
|
|
2021-07-12 13:45:11 +02:00
|
|
|
#ynh_add_config --template="../conf/data.sql" --destination="$final_path/data.sql"
|
2021-07-12 12:28:53 +02:00
|
|
|
|
2021-07-12 13:45:11 +02:00
|
|
|
#ynh_mysql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" < $final_path/data.sql
|
2018-03-14 14:11:46 +01:00
|
|
|
|
2021-07-12 12:39:21 +02:00
|
|
|
#if [ $is_public -eq 1 ]
|
|
|
|
#then
|
|
|
|
# ynh_mysql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" <<< "UPDATE `lime_plugin_settings` SET value='\"0\"' WHERE `id`=21;"
|
|
|
|
#fi
|
2021-07-12 12:35:11 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
2018-03-14 14:11:46 +01:00
|
|
|
# Add nice themes
|
|
|
|
#=================================================
|
2021-07-12 13:35:31 +02:00
|
|
|
|
2018-03-14 14:11:46 +01:00
|
|
|
#ynh_setup_source "$final_path/upload/templates/libreform" libreform
|
|
|
|
#ynh_setup_source "$final_path/upload/templates/librepoll" librepoll
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP FAIL2BAN
|
|
|
|
#=================================================
|
2019-05-21 02:07:00 +02:00
|
|
|
# ynh_script_progression --message="Configuring fail2ban..." --time --weight=1
|
2018-03-13 21:49:11 +01:00
|
|
|
#ynh_add_fail2ban_config "/var/log/nginx/${domain}-error.log" "PHP message: Leed: wrong login for .* client: <HOST>" 5
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2021-07-12 12:35:11 +02:00
|
|
|
ynh_script_progression --message="Configuring permissions..." --weight=1
|
2021-07-12 12:28:53 +02:00
|
|
|
|
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Only the admin can access the admin panel of the app (if the app has an admin panel)
|
|
|
|
ynh_permission_create --permission="admin" --url="/admin" --allowed=$admin
|
2019-05-21 02:07:00 +02:00
|
|
|
|
2021-07-12 12:28:53 +02:00
|
|
|
|
|
|
|
#ynh_script_progression --message="Configuring SSOwat..." --weight=1
|
|
|
|
|
|
|
|
#yunohost app addaccess $app -u $admin
|
|
|
|
#ynh_sso_access "/index.php?r=admin,/index.php?r=plugins,/scripts"
|
2015-05-31 22:36:35 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-07-12 12:28:53 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2018-03-13 21:49:11 +01:00
|
|
|
|
2021-07-12 12:28:53 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SEND A README FOR THE ADMIN
|
|
|
|
#=================================================
|
2021-07-12 12:28:53 +02:00
|
|
|
ynh_script_progression --message="Sending some explanation to use $app..." --weight=1
|
2019-05-21 02:07:00 +02:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_print_OFF
|
|
|
|
message="You can now create a poll on this address: https://${domain}${path_url}/admin/
|
2018-03-14 03:38:17 +01:00
|
|
|
If you facing an issue or want to improve this app, please open a new issue in this project: https://github.com/YunoHost-Apps/limesurvey_ynh"
|
2018-03-13 21:49:11 +01:00
|
|
|
|
|
|
|
ynh_send_readme_to_admin "$message" "$admin"
|
|
|
|
ynh_print_ON
|
2019-05-21 02:07:00 +02:00
|
|
|
|
2021-07-12 12:28:53 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|