2018-04-29 13:00:03 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2020-03-29 05:02:23 +02:00
source /usr/share/yunohost/helpers
2018-04-29 13:00:03 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2020-06-03 01:58:54 +02:00
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
2021-05-15 19:19:38 +02:00
is_public=$YNH_APP_ARG_IS_PUBLIC
2020-08-16 12:13:44 +02:00
language=$YNH_APP_ARG_LANGUAGE
2022-07-29 01:12:30 +02:00
admin=$YNH_APP_ARG_ADMIN
2021-05-15 19:19:38 +02:00
password=$YNH_APP_ARG_PASSWORD
2020-09-22 02:05:24 +02:00
expiration=$YNH_APP_ARG_EXPIRATION
deletion=$YNH_APP_ARG_DELETION
2019-06-19 02:18:00 +02:00
2018-04-29 13:00:03 +02:00
app=$YNH_APP_INSTANCE_NAME
2022-07-29 01:12:30 +02:00
admin_mail=$(ynh_user_get_info --username=$admin --key=mail)
2018-04-29 13:00:03 +02:00
#=================================================
# 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
2018-04-29 13:00:03 +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"
2018-04-29 13:00:03 +02:00
# Register (book) web path
2019-06-14 18:57:58 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2018-04-29 13:00:03 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2018-04-29 13:00:03 +02:00
2020-06-03 01:58:54 +02:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
2022-07-29 01:12:30 +02:00
ynh_app_setting_set --app=$app --key=language --value=$language
2020-09-22 02:05:24 +02:00
ynh_app_setting_set --app=$app --key=admin --value=$admin
2020-06-03 01:58:54 +02:00
ynh_app_setting_set --app=$app --key=password --value=$password
2020-09-22 02:05:24 +02:00
ynh_app_setting_set --app=$app --key=expiration --value=$expiration
ynh_app_setting_set --app=$app --key=deletion --value=$deletion
2018-04-29 13:00:03 +02:00
#=================================================
# STANDARD MODIFICATIONS
2020-03-29 05:02:23 +02:00
#=================================================
# 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
2022-04-17 23:18:30 +02:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
2018-04-29 13:00:03 +02:00
2021-05-15 19:19:38 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Configuring system user..." --weight=3
# Create a system user
ynh_system_user_create --username=$app --home_dir=$final_path
2018-04-29 13:00:03 +02:00
#=================================================
2020-03-29 05:02:23 +02:00
# CREATE A POSTGRESQL DATABASE
2018-04-29 13:00:03 +02:00
#=================================================
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=2
2018-04-29 13:00:03 +02:00
2018-05-01 22:36:16 +02:00
ynh_psql_test_if_first_run
2020-06-03 01:58:54 +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
2018-04-29 13:00:03 +02:00
#=================================================
# 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
2020-06-03 01:58:54 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2018-04-29 13:00:03 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2020-09-22 02:05:24 +02:00
ynh_setup_source --dest_dir="$final_path/app"
2018-04-29 13:00:03 +02:00
2021-05-15 19:19:38 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2020-06-03 01:58:54 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-10-03 19:05:08 +02:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
2020-06-03 01:58:54 +02:00
2020-10-03 19:05:08 +02:00
# Create a dedicated PHP-FPM config
2022-04-17 23:20:21 +02:00
ynh_add_fpm_config --usage=low --footprint=low
2020-06-03 01:58:54 +02:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2022-07-29 01:12:30 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
# Create a dedicated NGINX config
ynh_add_nginx_config
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"
2021-03-24 12:47:13 +01:00
ynh_add_config --template="../conf/yoursite.aliases.drushrc.php" --destination="$drush_aliasconfig"
2019-06-19 02:18:00 +02:00
2021-05-18 04:25:18 +02:00
chmod 400 "$drush_aliasconfig"
chown $app:$app "$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"
2021-05-15 19:19:38 +02:00
ynh_add_config --template="../conf/composer.json" --destination="$final_path/.composer/composer.json"
2019-06-19 02:18:00 +02:00
2020-06-03 01:58:54 +02:00
ynh_install_composer --phpversion="$phpversion" --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"
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
2021-05-21 15:37:39 +02:00
mkdir -p "$final_path/app/sites/default/files"
mkdir -p "$final_path/app/sites/default/files/tmp"
2021-05-15 19:19:38 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2020-09-22 02:05:24 +02:00
chmod 2775 "$final_path/app/sites/default/files"
2019-06-19 02:18:00 +02:00
2021-05-15 19:19:38 +02:00
#=================================================
# CREATE DATA DIRECTORY
#=================================================
2021-05-18 02:21:01 +02:00
ynh_script_progression --message="Creating a data directory..."
2021-05-15 19:19:38 +02:00
datadir=/home/yunohost.app/$app
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
mkdir -p $datadir
2022-07-29 01:12:30 +02:00
2021-05-15 19:19:38 +02:00
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:www-data "$datadir"
2019-06-19 02:18:00 +02:00
2018-05-01 22:36:16 +02:00
#=================================================
2021-05-15 19:19:38 +02:00
# ADD A CONFIGURATION
2018-05-01 22:36:16 +02:00
#=================================================
2021-05-15 19:19:38 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2018-05-01 22:36:16 +02:00
2021-05-15 19:19:38 +02:00
ynh_add_config --template="../conf/default.settings.php" --destination="$final_path/app/sites/default/settings.php"
2018-05-01 22:36:16 +02:00
2021-05-15 19:19:38 +02:00
chmod 600 "$final_path/app/sites/default/settings.php"
chown $app:$app "$final_path/app/sites/default/settings.php"
2019-06-19 02:18:00 +02:00
#=================================================
2020-09-22 02:05:24 +02:00
# INSTALLING FRAMAFORMS WITH DRUSH
2019-06-19 02:18:00 +02:00
#=================================================
2020-08-16 12:13:44 +02:00
ynh_script_progression --message="Installing database..." --weight=19
2019-06-19 02:18:00 +02:00
2020-08-16 12:13:44 +02:00
update-alternatives --set php /usr/bin/php$phpversion
2022-07-29 01:12:30 +02:00
ynh_exec_as $app env PATH=$PATH drush @$app site-install framaforms_org install_configure_form.site_contact_url="https://forum.yunohost.org/t/framaforms-create-polls-using-drag-and-drop/8208" install_configure_form.site_default_country=FR -y --locale="$language" --account-name="admin" --account-pass="$password" --site-name="Framaforms" --site-mail="$admin_mail" 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app variable-set update_notify_emails "$admin_mail"
ynh_exec_as $app env PATH=$PATH drush @$app variable-set file_private_path "/home/yunohost.app/$app/data" 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app pm-enable framaforms_feature -y --resolve-dependencies 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app php-eval "module_load_include('inc', 'framaforms', 'includes/framaforms.pages');create_all_pages();" 2>&1 || true
2020-09-22 02:05:24 +02:00
#=================================================
# IMPORTING LANGUAGE PACK
#=================================================
ynh_script_progression --message="Importing language pack..." --weight=5
2022-07-29 01:12:30 +02:00
ynh_exec_as $app env PATH=$PATH drush @$app pm-download -y drush_language 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app pm-download -y l10n_update 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app pm-enable -y l10n_update 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app language-add $language -y 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app language-default $language -y 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app cache-clear drush -y 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app l10n-update-refresh -y 2>&1
ynh_exec_as $app env PATH=$PATH drush @$app l10n-update -y 2>&1
2020-09-22 02:05:24 +02:00
# We don't upgrade module to avoid to erase framaforms change
# in drupal core and modules code
# see https://framagit.org/framasoft/framaforms/-/wikis/modifications
2022-07-29 01:12:30 +02:00
#ynh_exec_as $app env PATH=$PATH drush @$app pm-update -y
2020-09-22 02:05:24 +02:00
#=================================================
# REMOVING BRANDING AND CHANGING DEFAULT SETTINGS
#=================================================
ynh_script_progression --message="Removing branding and change default settings..." --weight=1
2022-07-29 01:12:30 +02:00
ynh_exec_as $app env PATH=$PATH drush @$app vset error_level 0
ynh_exec_as $app env PATH=$PATH drush @$app vset framaforms_notification_period_value $expiration
ynh_exec_as $app env PATH=$PATH drush @$app vset framaforms_deletion_period_value $deletion
2020-09-22 02:05:24 +02:00
# Remove framaforms footer
2022-07-29 01:12:30 +02:00
ynh_exec_as $app env PATH=$PATH drush @$app sql-query "UPDATE block SET region='-1', status=0 WHERE delta='framaforms_footer' AND region='footer'"
2020-09-22 02:05:24 +02:00
#=================================================
# CONFIGURING LDAP
#=================================================
ynh_script_progression --message="Configuring LDAP authentication..." --weight=1
2022-07-29 01:12:30 +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
2020-09-22 02:05:24 +02:00
# Generated with sudo -u postgres pg_dump -a -t ldap_servers --inserts framaforms
2022-07-29 01:12:30 +02:00
ynh_exec_as $app env PATH=$PATH drush @$app sql-query "INSERT INTO public.ldap_servers VALUES ('localhost', 1, 'localhost', 1, 'default', 'ldap://127.0.0.1', 389, 0, 0, 3, '', NULL, 'a:2:{i:0;s:27:\"ou=users,dc=yunohost,dc=org\";i:1;s:32:\"ou=permission,dc=yunohost,dc=org\";}', 'uid', 'uid', 'mail', '', '', '', 0, 'cn=%username,ou=users,dc=yunohost,dc=org', '', '', '', 0, 'permissionynh', 0, 1, 'permission', 'memberuid', 'dn', 0, '', '$app.main', '', 0, 1000, 0);"
ynh_exec_as $app env PATH=$PATH drush @$app sql-query "INSERT INTO public.ldap_authorization VALUES (1, 'localhost', 'drupal_role', 'ldap_authorization_drupal_role', 1, 1, 0, 'a:2:{i:0;a:6:{s:12:\"user_entered\";s:24:\"utilisateur authentifié\";s:4:\"from\";s:51:\"cn=framaforms.main,ou=permission,dc=yunohost,dc=org\";s:10:\"normalized\";s:24:\"utilisateur authentifié\";s:10:\"simplified\";s:24:\"utilisateur authentifié\";s:5:\"valid\";b:0;s:13:\"error_message\";s:112:\"Role <em class=\"placeholder\">utilisateur authentifié</em>_name does not exist and role creation is not enabled.\";}i:1;a:6:{s:12:\"user_entered\";s:13:\"administrator\";s:4:\"from\";s:52:\"cn=framaforms.admin,ou=permission,dc=yunohost,dc=org\";s:10:\"normalized\";s:13:\"administrator\";s:10:\"simplified\";s:13:\"administrator\";s:5:\"valid\";b:0;s:13:\"error_message\";s:101:\"Role <em class=\"placeholder\">administrator</em>_name does not exist and role creation is not enabled.\";}}', 1, 0, 1, 1, 1, 1);"
2020-10-07 02:37:16 +02:00
2022-07-29 01:12:30 +02:00
cat ../conf/ldap.conf | ynh_exec_as $app env PATH=$PATH drush @$app variable-set --format=yaml ldap_authentication_conf -
2019-08-12 18:34:07 +02:00
2020-08-16 12:13:44 +02:00
update-alternatives --set php /usr/bin/php${YNH_DEFAULT_PHP_VERSION}
2019-06-14 18:57:58 +02:00
2020-08-16 12:13:44 +02:00
#=================================================
# SETUP THE CRON FILE
#=================================================
ynh_script_progression --message="Setuping the cron file..."
2021-03-24 12:47:13 +01:00
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
2020-08-16 12:13:44 +02:00
2018-04-29 13:00:03 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP SSOWAT
#=================================================
2021-02-03 21:57:21 +01:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2020-10-07 02:37:16 +02:00
2018-04-29 13:00:03 +02:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
2021-05-15 19:19:38 +02:00
# Everyone can access the app.
# The "main" permission is automatically created before the install script.
2021-02-03 21:57:21 +01:00
ynh_permission_update --permission="main" --add="visitors"
2018-04-29 13:00:03 +02:00
fi
2021-02-03 21:57:21 +01:00
# 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
2018-04-29 13:00:03 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-10-01 22:37:20 +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
#=================================================
2018-04-29 13:00:03 +02:00
2019-06-19 18:03:19 +02:00
ynh_script_progression --message="Installation of $app completed" --last