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

254 lines
9.8 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2019-06-19 18:03:19 +02:00
source ynh_add_extra_apt_repos__3
source ynh_install_php__3
source ynh_composer__2
source ynh_exec_as
2020-03-29 05:02:23 +02:00
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2019-06-19 02:18:00 +02:00
ynh_export domain path_url password is_public
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
2019-06-14 18:57:58 +02:00
final_path=/var/www/$app
2019-06-14 18:57:58 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
# Register (book) web path
2019-06-14 18:57:58 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2019-06-19 02:18:00 +02:00
ynh_save_args domain path_url password is_public final_path
#=================================================
# STANDARD MODIFICATIONS
#=================================================
2020-03-29 05:02:23 +02:00
# INSTALL PHP7.3
#=================================================
2020-03-29 05:02:23 +02:00
if [ "$(lsb_release --codename --short)" = "buster" ]; then
pkg_dependencies="$pkg_dependencies $extra_pkg_dependencies"
else
ynh_script_progression --message="Installing PHP7.3..." --weight=1
ynh_install_php --phpversion="7.3" --package="$extra_pkg_dependencies"
fi
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Installing dependencies..." --weight=7
2019-06-14 18:57:58 +02:00
ynh_install_app_dependencies $pkg_dependencies
#=================================================
2020-03-29 05:02:23 +02:00
# CREATE A POSTGRESQL DATABASE
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=2
2018-05-01 22:36:16 +02:00
ynh_psql_test_if_first_run
2019-06-18 10:09:39 +02:00
db_name=$(ynh_sanitize_dbid --db_name="$app")
2019-06-14 18:57:58 +02:00
db_user=$db_name
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Setting up source files..." --weight=9
2019-06-14 18:57:58 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2019-06-14 18:57:58 +02:00
ynh_setup_source --dest_dir="$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Configuring nginx web server..." --weight=1
2019-06-14 18:57:58 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Configuring system user..." --weight=3
# Create a system user
2019-08-05 03:02:23 +02:00
ynh_system_user_create --username=$app --home_dir="$final_path"
2018-05-01 22:36:16 +02:00
#=================================================
2019-06-14 18:57:58 +02:00
# SPECIFIC SETUP
2019-06-19 02:18:00 +02:00
#=================================================
# CREATE DRUSH ALIAS
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Creating Drush alias..." --weight=2
2019-06-19 02:18:00 +02:00
mkdir -p "$final_path/.drush"
2020-03-29 05:02:23 +02:00
drush_aliasconfig="$final_path/.drush/$app.aliases.drushrc.php"
cp -f "../conf/yoursite.aliases.drushrc.php" "$drush_aliasconfig"
2019-06-19 02:18:00 +02:00
2020-03-29 05:02:23 +02:00
ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file="$drush_aliasconfig"
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="$drush_aliasconfig"
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$drush_aliasconfig"
ynh_replace_string --match_string="__PATH_URL__" --replace_string="$path_url" --target_file="$drush_aliasconfig"
2019-06-19 02:18:00 +02:00
#=================================================
# INSTALL COMPOSER
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Installing Composer..." --weight=31
2019-06-19 02:18:00 +02:00
mkdir -p "$final_path/.composer"
cp -f "../conf/composer.json" "$final_path/.composer/composer.json"
2020-03-29 05:02:23 +02:00
ynh_install_composer --phpversion="7.3" --workdir="$final_path/.composer"
2019-06-19 02:18:00 +02:00
2019-08-05 03:02:23 +02:00
export PATH="$final_path/.composer/vendor/bin:$PATH"
2018-05-01 22:36:16 +02:00
#=================================================
2020-03-29 05:02:23 +02:00
# INITIALIZE POSTGRESQL DATABASE
2018-05-01 22:36:16 +02:00
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Initializing PostgreSQL database..." --weight=8
2018-05-01 22:36:16 +02:00
ynh_replace_string "betaforms" "$db_user" "$final_path/framaforms.sql"
ynh_psql_execute_file_as_root "$final_path/framaforms.sql" "$db_name"
2019-06-19 02:18:00 +02:00
2019-06-14 18:57:58 +02:00
#=================================================
2020-03-29 05:02:23 +02:00
# INITIALIZE TMP AND PRIVATE DIRECTORY
2019-06-19 02:18:00 +02:00
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Initializing tmp and private directory..." --weight=1
2019-06-19 02:18:00 +02:00
mkdir -p "$final_path/sites/default/files"
chmod 2775 "$final_path/sites/default/files"
mkdir -p "$final_path/sites/default/files/tmp"
2019-06-19 18:03:19 +02:00
mkdir -p "/home/yunohost.app/$app/data"
chown -R $app: "/home/yunohost.app/$app/data"
chmod 775 "/home/yunohost.app/$app/data"
2019-06-19 02:18:00 +02:00
#=================================================
2020-03-29 05:02:23 +02:00
# ADD MISSING IMAGES
2019-06-19 02:18:00 +02:00
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Adding missing images..." --weight=2
2019-06-19 02:18:00 +02:00
mkdir -p "$final_path/sites/default/files/imgforms"
cp ../sources/anim_analyse.gif "$final_path/sites/default/files/imgforms/"
cp ../sources/anim_creation.gif "$final_path/sites/default/files/imgforms/"
cp ../sources/partager.png "$final_path/sites/default/files/imgforms/"
2018-05-01 22:36:16 +02:00
#=================================================
2019-06-14 18:57:58 +02:00
# MODIFY CONFIG FILES
2018-05-01 22:36:16 +02:00
#=================================================
config_file=$final_path/sites/default/settings.php
cp ../conf/default.settings.php "$config_file"
2019-06-14 18:57:58 +02:00
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$config_file"
ynh_replace_string --match_string="__DB_USER__" --replace_string="$db_user" --target_file="$config_file"
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$config_file"
2019-06-19 02:18:00 +02:00
ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file="$config_file"
#=================================================
2020-03-29 05:02:23 +02:00
# CHANGE ADMIN PASSWORD AND APPLY CUSTOM CONF
2019-06-19 02:18:00 +02:00
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Changing admin password..." --weight=19
2019-06-19 02:18:00 +02:00
chown -R $app: $final_path
2020-03-29 05:02:23 +02:00
update-alternatives --set php /usr/bin/php7.3
2019-08-05 03:02:23 +02:00
2019-08-12 18:34:07 +02:00
ynh_exec_as $app env PATH=$PATH drush @$app upwd --password="$password" "admin" 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app variable-set site_name "Framaforms" 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app variable-set site_mail "no-reply@$domain" 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app variable-set file_private_path "/home/yunohost.app/$app/data" 2>&1
# Remove some Framasoft branding
ynh_exec_as $app env PATH=$PATH drush @$app sql-query "UPDATE block_custom SET body='' WHERE bid=12" 2>&1
# Fix some link if install on subpath
ynh_exec_as $app env PATH=$PATH drush @$app sql-query "UPDATE block_custom SET body=REPLACE(body, 'href=\"/', 'href=\"')" 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app sql-query "UPDATE field_data_body SET body_value=REPLACE(body_value, 'src=\"/', 'src=\"')" 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app sql-query "UPDATE field_data_body SET body_value=REPLACE(body_value, 'href=\"/', 'href=\"')" 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app cache-clear all 2>&1
2019-08-05 03:02:23 +02:00
#ynh_exec_as $app env PATH=$PATH drush @$app pm-download ldap
#ynh_exec_as $app env PATH=$PATH drush @$app pm-enable -y ldap_servers ldap_user ldap_authentication ldap_authorization ldap_authorization_drupal_role
#ynh_exec_as $app env PATH=$PATH drush @$app core-cron
update-alternatives --set php /usr/bin/php7.0
2019-06-14 18:57:58 +02:00
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
# Calculate and store the config file checksum into the app settings
ynh_store_file_checksum --file="$config_file"
2018-05-01 22:36:16 +02:00
#=================================================
# GENERIC FINALIZATION
2020-03-29 05:02:23 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring php-fpm..." --weight=1
# Create a dedicated php-fpm config
ynh_add_fpm_config --phpversion="7.3"
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions to app files
chown -R $app: $final_path
#=================================================
# SETUP SSOWAT
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Configuring SSOwat..." --weight=1
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway.
2019-06-14 18:57:58 +02:00
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
fi
#=================================================
# RELOAD NGINX
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Reloading nginx web server..." --weight=1
2019-06-14 18:57:58 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Installation of $app completed" --last