2016-11-26 16:25:18 +01:00
|
|
|
#!/bin/bash
|
2017-06-03 18:13:29 +02:00
|
|
|
shopt -s extglob # sets extended pattern matching options in the bash shell
|
2016-11-26 16:25:18 +01:00
|
|
|
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-11-26 16:25:18 +01:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2017-01-03 18:32:00 +01:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
# Set app specific variables
|
2016-11-26 16:25:18 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
# Check destination directory
|
2017-10-19 21:06:34 +02:00
|
|
|
destdir="/var/www/$app"
|
|
|
|
[[ ! -d $destdir ]] && ynh_die \
|
|
|
|
"The destination directory '$destdir' does not exist.\
|
2017-06-03 18:13:29 +02:00
|
|
|
The app is not correctly installed, you should remove it first."
|
2017-01-03 18:32:00 +01:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
# Retrieve arguments
|
2016-11-26 16:25:18 +01:00
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2017-09-22 21:21:52 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
path_url=$(ynh_app_setting_get "$app" path_url)
|
|
|
|
# Compatibility with previous version
|
|
|
|
if [ -z "$path_url" ] ; then
|
|
|
|
path_url=$(ynh_app_setting_get "$app" path)
|
|
|
|
ynh_app_setting_set $app path_url "$path_url"
|
|
|
|
fi
|
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
2017-09-22 21:21:52 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
final_path=$(ynh_app_setting_get "$app" final_path)
|
|
|
|
# Compatibility with previous version
|
|
|
|
if [ -z "$final_path" ] ; then
|
|
|
|
final_path="/var/www/$app"
|
|
|
|
ynh_app_setting_set $app final_path "$final_path"
|
|
|
|
fi
|
2017-09-22 21:21:52 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
db_name=$(ynh_app_setting_get "$app" db_name)
|
|
|
|
# Compatibility with previous version
|
|
|
|
if [ -z "$db_name" ] ; then
|
|
|
|
db_name=$app
|
|
|
|
ynh_app_setting_set "$app" db_name "$db_name"
|
|
|
|
fi
|
2017-09-22 21:21:52 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
db_user="$db_name"
|
|
|
|
db_pwd=$(ynh_app_setting_get "$app" mysqlpwd)
|
2016-11-26 16:25:18 +01:00
|
|
|
admin=$(ynh_app_setting_get "$app" admin)
|
2017-09-22 21:21:52 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
admin_pwd=$(ynh_app_setting_get "$app" admin_pwd)
|
2017-09-22 21:21:52 +02:00
|
|
|
# Compatibility with previous version; password was not set
|
2017-06-03 18:13:29 +02:00
|
|
|
if [ -z "$admin_pwd" ] ; then
|
|
|
|
# Generate a new password
|
2017-10-01 21:59:40 +02:00
|
|
|
admin_pwd=$(ynh_string_random 24)
|
2017-09-22 21:21:52 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
# Compute password hash with the Piwigo function
|
2017-09-11 22:00:57 +02:00
|
|
|
cp ../conf/hash_password.php $final_path
|
2017-06-03 18:13:29 +02:00
|
|
|
hashed_password=$(cd $final_path ; php hash_password.php $admin_pwd)
|
2017-09-22 21:21:52 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
# Update password hash in database
|
|
|
|
ynh_mysql_connect_as $db_name $db_pwd $db_user <<< "UPDATE users SET password='$hashed_password' WHERE username='$admin';"
|
|
|
|
ynh_app_setting_set $app admin_pwd "$admin_pwd"
|
2017-09-22 21:21:52 +02:00
|
|
|
|
|
|
|
# Remove the temporary hash generation script
|
2017-06-03 18:13:29 +02:00
|
|
|
ynh_secure_remove "$final_path/hash_password.php"
|
|
|
|
fi
|
2017-09-22 21:21:52 +02:00
|
|
|
|
2016-11-26 16:25:18 +01:00
|
|
|
language=$(ynh_app_setting_get "$app" language)
|
2017-06-03 18:13:29 +02:00
|
|
|
if [ "$language" = "fr" ] ; then
|
|
|
|
applanguage="fr_FR"
|
|
|
|
else
|
|
|
|
applanguage="en_UK"
|
|
|
|
fi
|
|
|
|
|
|
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
2017-09-22 21:21:52 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Use prior backup and restore on error only if backup feature
|
|
|
|
# exists on installed instance
|
|
|
|
if [ -f "/etc/yunohost/apps/$app/scripts/backup" ] ; then
|
2017-12-21 10:37:05 +01:00
|
|
|
# Notify the backup process that it should not save the data directory
|
|
|
|
ynh_app_setting_set $app backup_core_only 1
|
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
ynh_backup_before_upgrade # Backup the current version of the app
|
|
|
|
ynh_clean_setup () {
|
2017-09-22 21:34:28 +02:00
|
|
|
ynh_restore_upgradebackup
|
2017-06-03 18:13:29 +02:00
|
|
|
}
|
|
|
|
ynh_abort_if_errors # Stop script if an error is detected
|
|
|
|
fi
|
|
|
|
|
2017-09-23 10:25:23 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_install_app_dependencies "$pkg_dependencies"
|
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create tmp directory and fetch app inside
|
2017-10-19 21:06:34 +02:00
|
|
|
tmpdir=$(ynh_mkdir_tmp)
|
|
|
|
ynh_setup_source "$tmpdir"
|
2017-06-18 18:24:10 +02:00
|
|
|
# Fetch needed plugins
|
2017-10-19 21:06:34 +02:00
|
|
|
mkdir -p $tmpdir/plugins/Ldap_Login
|
|
|
|
ynh_setup_source "$tmpdir/plugins/Ldap_Login" ldap_plugin
|
|
|
|
ynh_setup_source "$tmpdir/plugins" log_failed_logins_plugin
|
2016-11-26 16:25:18 +01:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_system_user_create $app # Create dedicated user if not existing
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
|
2017-10-01 21:59:40 +02:00
|
|
|
# We store photos (potentially large data) on /home/yunohost.app
|
|
|
|
datapath=/home/yunohost.app/$app
|
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
# Install files and set permissions
|
2018-07-31 21:35:38 +02:00
|
|
|
cp -a $tmpdir/!(upload|_data|galleries) $final_path
|
2017-10-01 21:59:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Backward compatibility:
|
|
|
|
# If the _data subdirectory wasn't already moved to /home/yunohost.app/$app,
|
|
|
|
# then move it there
|
|
|
|
if [ ! -h $final_path/_data ] ; then
|
|
|
|
mv $final_path/_data $datapath
|
|
|
|
ln -sd $datapath/_data $final_path/_data
|
|
|
|
fi
|
2017-06-03 18:13:29 +02:00
|
|
|
|
2018-07-31 21:35:38 +02:00
|
|
|
# Backward compatibility:
|
|
|
|
# If the galleries subdirectory wasn't already moved to /home/yunohost.app/$app,
|
|
|
|
# then move it there
|
|
|
|
if [ ! -h $final_path/galleries ] ; then
|
|
|
|
mv $final_path/galleries $datapath
|
|
|
|
ln -sd $datapath/galleries $final_path/galleries
|
|
|
|
fi
|
2017-06-03 18:13:29 +02:00
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
chown -R $app: $final_path
|
2017-10-01 21:59:40 +02:00
|
|
|
chown -R $app: $datapath
|
|
|
|
chmod 755 -R $final_path/_data
|
2017-06-03 18:13:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
2017-09-22 21:21:52 +02:00
|
|
|
# NGINX AND PHP-FPM CONFIGURATION
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_add_nginx_config
|
|
|
|
ynh_store_file_checksum "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
# Copy and set php-fpm configuration
|
|
|
|
ynh_add_fpm_config
|
2017-02-08 18:32:46 +01:00
|
|
|
|
2017-09-22 21:21:52 +02:00
|
|
|
#=================================================
|
|
|
|
# CONFIGURE PIWIGO
|
|
|
|
#=================================================
|
|
|
|
|
2016-12-30 17:32:19 +01:00
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
2017-09-11 22:00:57 +02:00
|
|
|
yunohost app ssowatconf
|
2016-11-26 16:25:18 +01:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
# Configure piwigo via curl
|
|
|
|
ynh_local_curl "/upgrade.php?language=$applanguage&now=true" "language=$applanguage" "username=$admin" "password=$admin_pwd"
|
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
# Make a backup of the original config file if modified
|
|
|
|
ynh_backup_if_checksum_is_different "$final_path/local/config/config.inc.php"
|
2017-06-03 18:13:29 +02:00
|
|
|
# Change local config
|
2017-09-11 22:00:57 +02:00
|
|
|
cp ../conf/config.inc.php $final_path/local/config/
|
|
|
|
# Calculate and store the config file checksum
|
|
|
|
ynh_store_file_checksum "$final_path/local/config/config.inc.php"
|
2016-11-26 16:25:18 +01:00
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
# Make a backup of the original database config file if modified
|
|
|
|
ynh_backup_if_checksum_is_different "$final_path/local/config/database.inc.php"
|
2017-06-03 18:13:29 +02:00
|
|
|
# Setup database in local/config/database.inc.php
|
|
|
|
ynh_replace_string "DBTOCHANGE" "$db_name" ../conf/database.inc.php
|
|
|
|
ynh_replace_string "USERTOCHANGE" "$db_user" ../conf/database.inc.php
|
|
|
|
ynh_replace_string "PASSTOCHANGE" "$db_pwd" ../conf/database.inc.php
|
2017-09-11 22:00:57 +02:00
|
|
|
cp ../conf/database.inc.php $final_path/local/config/database.inc.php
|
|
|
|
# Calculate and store the database config file checksum
|
|
|
|
ynh_store_file_checksum "$final_path/local/config/database.inc.php"
|
2017-06-03 18:13:29 +02:00
|
|
|
|
2017-09-22 21:21:52 +02:00
|
|
|
#=================================================
|
|
|
|
# ADD LDAP & FAIL2BAN PLUGINS
|
|
|
|
#=================================================
|
|
|
|
|
2017-11-19 19:42:54 +01:00
|
|
|
# Configure and activate LDAP plugin
|
2017-06-03 18:13:29 +02:00
|
|
|
ynh_mysql_connect_as $db_name $db_pwd $db_user <<< "UPDATE plugins SET state='active' WHERE id='Ldap_Login';"
|
2017-11-19 19:42:54 +01:00
|
|
|
cp ../conf/data.dat $final_path/plugins/Ldap_Login
|
2017-06-03 18:13:29 +02:00
|
|
|
|
2017-06-18 18:24:10 +02:00
|
|
|
# Configure and activate log_failed_logins plugin
|
|
|
|
ynh_mysql_connect_as $db_name $db_pwd $db_user <<< "INSERT INTO plugins (id,state,version) VALUES ('log_failed_logins','active','1.2');" 2>&1 > /dev/null ||ynh_mysql_connect_as $db_name $db_pwd $db_user <<< "UPDATE plugins SET state='active' WHERE id='log_failed_logins';"
|
|
|
|
ynh_mysql_connect_as $db_name $db_pwd $db_user <<< "INSERT INTO config (param, value) VALUES ('logFailedLoginsFilename','/var/log/${app}FailedLogins.log');" 2>&1 > /dev/null || ynh_mysql_connect_as $db_name $db_pwd $db_user <<< "UPDATE config SET value='/var/log/${app}FailedLogins.log' WHERE param='logFailedLoginsFilename';"
|
2017-09-11 22:00:57 +02:00
|
|
|
touch "/var/log/${app}FailedLogins.log"
|
|
|
|
chown $app: "/var/log/${app}FailedLogins.log"
|
2017-06-18 18:24:10 +02:00
|
|
|
|
|
|
|
# Set-up fail2ban
|
|
|
|
ynh_add_fail2ban_config "/var/log/${app}FailedLogins.log" "ip=<HOST>" 6
|
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
# Protect URIs if private
|
2016-11-26 16:25:18 +01:00
|
|
|
if [ $is_public -eq 0 ];
|
|
|
|
then
|
2016-12-30 17:32:19 +01:00
|
|
|
ynh_app_setting_delete "$app" unprotected_uris
|
|
|
|
ynh_app_setting_set "$app" protected_uris "/"
|
2017-06-03 18:13:29 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2017-09-11 22:00:57 +02:00
|
|
|
systemctl reload nginx
|