mirror of
https://github.com/YunoHost-Apps/framaforms_ynh.git
synced 2024-09-03 18:36:12 +02:00
145 lines
6.2 KiB
Bash
145 lines
6.2 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# INITIALIZE AND STORE SETTINGS
|
|
#=================================================
|
|
|
|
admin_mail=$(ynh_user_get_info --username="$admin" --key="mail")
|
|
|
|
ynh_app_setting_set --app="$app" --key="password" --value="$password"
|
|
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
ynh_script_progression --message="Setting up source files..." --weight=9
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
ynh_setup_source --dest_dir="$install_dir/app"
|
|
|
|
mkdir -p "$install_dir/app/sites/default/files"
|
|
mkdir -p "$install_dir/app/sites/default/files/tmp"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
chown -R "$app:www-data" "$install_dir"
|
|
chmod 2775 "$install_dir/app/sites/default/files"
|
|
|
|
chmod -R o-rwx "$data_dir"
|
|
chown -R "$app:www-data" "$data_dir"
|
|
|
|
#=================================================
|
|
# CREATE DRUSH ALIAS
|
|
#=================================================
|
|
ynh_script_progression --message="Creating Drush alias..." --weight=2
|
|
|
|
mkdir -p "$install_dir/.drush"
|
|
drush_aliasconfig="$install_dir/.drush/$app.aliases.drushrc.php"
|
|
|
|
ynh_add_config --template="yoursite.aliases.drushrc.php" --destination="$drush_aliasconfig"
|
|
|
|
chmod 400 "$drush_aliasconfig"
|
|
chown "$app:$app" "$drush_aliasconfig"
|
|
|
|
#=================================================
|
|
# INSTALL COMPOSER
|
|
#=================================================
|
|
ynh_script_progression --message="Installing Composer..." --weight=31
|
|
|
|
mkdir -p "$install_dir/.composer"
|
|
|
|
ynh_add_config --template="composer.json" --destination="$install_dir/.composer/composer.json"
|
|
|
|
ynh_install_composer --phpversion="$phpversion" --workdir="$install_dir/.composer"
|
|
|
|
#=================================================
|
|
# ADD A CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression --message="Adding $app's configuration file..." --weight=1
|
|
|
|
ynh_add_config --template="default.settings.php" --destination="$install_dir/app/sites/default/settings.php"
|
|
|
|
chmod 600 "$install_dir/app/sites/default/settings.php"
|
|
chown "$app:$app" "$install_dir/app/sites/default/settings.php"
|
|
|
|
#=================================================
|
|
# INSTALLING FRAMAFORMS WITH DRUSH
|
|
#=================================================
|
|
ynh_script_progression --message="Installing database..." --weight=19
|
|
|
|
# Chown from composer/drush install
|
|
chown -R "$app:www-data" "$install_dir"
|
|
|
|
_ynh_exec_with_drush_php 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"
|
|
_ynh_exec_with_drush_php drush "@$app" variable-set update_notify_emails "$admin_mail"
|
|
_ynh_exec_with_drush_php drush "@$app" variable-set file_private_path "/home/yunohost.app/$app/data"
|
|
_ynh_exec_with_drush_php drush "@$app" pm-enable framaforms_feature -y --resolve-dependencies
|
|
_ynh_exec_with_drush_php drush "@$app" php-eval "module_load_include('inc', 'framaforms', 'includes/framaforms.pages');create_all_pages();" || true
|
|
|
|
#=================================================
|
|
# IMPORTING LANGUAGE PACK
|
|
#=================================================
|
|
ynh_script_progression --message="Importing language pack..." --weight=5
|
|
|
|
_ynh_exec_with_drush_php drush "@$app" pm-download -y drush_language
|
|
_ynh_exec_with_drush_php drush "@$app" pm-download -y l10n_update
|
|
_ynh_exec_with_drush_php drush "@$app" pm-enable -y l10n_update
|
|
_ynh_exec_with_drush_php drush "@$app" language-add "$language" -y
|
|
_ynh_exec_with_drush_php drush "@$app" language-default "$language" -y
|
|
_ynh_exec_with_drush_php drush "@$app" cache-clear drush -y
|
|
_ynh_exec_with_drush_php drush "@$app" l10n-update-refresh -y
|
|
_ynh_exec_with_drush_php drush "@$app" l10n-update -y
|
|
|
|
# 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
|
|
# _ynh_exec_with_drush_php drush "@$app" pm-update -y
|
|
|
|
#=================================================
|
|
# REMOVING BRANDING AND CHANGING DEFAULT SETTINGS
|
|
#=================================================
|
|
ynh_script_progression --message="Removing branding and change default settings..." --weight=1
|
|
|
|
_ynh_exec_with_drush_php drush "@$app" vset error_level 0
|
|
_ynh_exec_with_drush_php drush "@$app" vset framaforms_notification_period_value "$expiration"
|
|
_ynh_exec_with_drush_php drush "@$app" vset framaforms_deletion_period_value "$deletion"
|
|
# Remove framaforms footer
|
|
_ynh_exec_with_drush_php drush "@$app" sql-query "UPDATE block SET region='-1', status=0 WHERE delta='framaforms_footer' AND region='footer'"
|
|
|
|
#=================================================
|
|
# CONFIGURING LDAP
|
|
#=================================================
|
|
ynh_script_progression --message="Configuring LDAP authentication..." --weight=1
|
|
|
|
_ynh_exec_with_drush_php drush "@$app" pm-download ldap-7.x-2.6
|
|
_ynh_exec_with_drush_php drush "@$app" pm-enable -y ldap_servers ldap_user ldap_authentication ldap_authorization ldap_authorization_drupal_role
|
|
# Generated with sudo -u postgres pg_dump -a -t ldap_servers --inserts framaforms
|
|
_ynh_exec_with_drush_php drush "@$app" sql-query < ../conf/ldap.sql
|
|
_ynh_exec_with_drush_php drush "@$app" variable-set --format=yaml ldap_authentication_conf - < ../conf/ldap.conf
|
|
|
|
#=================================================
|
|
# SYSTEM CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
|
|
|
# Create a dedicated PHP-FPM config
|
|
ynh_add_fpm_config --usage=low --footprint=low
|
|
|
|
# Create a dedicated NGINX config
|
|
ynh_add_nginx_config
|
|
|
|
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|