mirror of
https://github.com/YunoHost-Apps/friendica_ynh.git
synced 2024-09-03 18:36:14 +02:00
133 lines
4.3 KiB
Bash
133 lines
4.3 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# LOAD SETTINGS
|
|
#=================================================
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
path_url=$(ynh_app_setting_get $app path)
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
db_name=$(ynh_app_setting_get $app db_name)
|
|
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
|
|
admin_mail=$(ynh_app_setting_get $app email)
|
|
|
|
#=================================================
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
#=================================================
|
|
|
|
# Backup the current version of the app
|
|
ynh_backup_before_upgrade
|
|
ynh_clean_setup () {
|
|
# restore it if the upgrade fails
|
|
ynh_restore_upgradebackup
|
|
}
|
|
# Exit if an error occurs during the execution of the script
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
# Add Dependencies
|
|
ynh_install_app_dependencies 'php-mbstring|base-files(<<9.0)' php5-cli 'php5-imagick|php-imagick' php5-gd php5-mcrypt 'php-xml|base-files(<<9.0)'
|
|
|
|
|
|
# Create a temporary directory
|
|
tmpdir="$(mktemp -d)"
|
|
# Backup the config file in the temp dir
|
|
cp -af "$final_path/.htaccess" "$tmpdir/."
|
|
sudo mkdir -p "$tmpdir/view"
|
|
cp -af "$final_path/view/smarty3" "$tmpdir/view/."
|
|
rm -Rf "$final_path"
|
|
# If final_path doesn't exist, create it
|
|
if [ -z $final_path ]; then
|
|
final_path=/var/www/$app
|
|
ynh_app_setting_set $app final_path $final_path
|
|
fi
|
|
ynh_setup_source "$final_path"
|
|
cp -f "/var/www/$app/config/local-sample.ini.php" "/var/www/$app/config/local.ini.php"
|
|
ynh_replace_string "your.mysqlhost.com" "localhost" "$final_path/config/local.ini.php"
|
|
ynh_replace_string "mysqlusername" "$db_name" "$final_path/config/local.ini.php"
|
|
ynh_replace_string "mysqldatabasename" "$db_name" "$final_path/config/local.ini.php"
|
|
ynh_replace_string "mysqlpassword" "$db_pwd" "$final_path/config/local.ini.php"
|
|
ynh_replace_string "admin_email =" "admin_email = $admin_mail" "$final_path/config/local.ini.php"
|
|
ynh_replace_string "register_policy = REGISTER_OPEN" "register_policy = REGISTER_CLOSED" "$final_path/config/local.ini.php"
|
|
|
|
#=================================================
|
|
# CHECK THE PATH
|
|
#=================================================
|
|
|
|
# Normalize the URL path syntax
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
ynh_setup_source "$final_path"
|
|
sudo cp -af "$tmpdir/.htaccess" "${final_path}/."
|
|
sudo cp -af "$tmpdir/view/smarty3" "${final_path}/view/."
|
|
sudo cp -af "../conf/addon.ini.php" "${final_path}/config/."
|
|
|
|
sudo rm -Rf "$tmpdir"
|
|
|
|
#Copy Addons
|
|
sudo mkdir $final_path/addon
|
|
ynh_setup_source "$final_path/addon" "addons"
|
|
|
|
# 3 - some extra folders
|
|
sudo chmod -R 775 $final_path/view/smarty3
|
|
|
|
#=================================================
|
|
# CREATE DEDICATED USER
|
|
#=================================================
|
|
|
|
# Create a system user
|
|
ynh_system_user_create $app
|
|
|
|
# Set app as owner
|
|
chown -R $app: $final_path
|
|
|
|
# Create a dedicated nginx config
|
|
ynh_add_nginx_config
|
|
# configure friendica
|
|
|
|
#=================================================
|
|
# PHP-FPM CONFIGURATION
|
|
#=================================================
|
|
|
|
# Create a dedicated php-fpm config
|
|
ynh_add_fpm_config
|
|
|
|
# Verify the checksum and backup the file if it's different
|
|
ynh_backup_if_checksum_is_different "$final_path/config/local.ini.php"
|
|
# Recalculate and store the config file checksum into the app settings
|
|
ynh_store_file_checksum "$final_path/config/local.ini.php"
|
|
|
|
# Set up poller
|
|
ynh_replace_string "__YNH_WWW_PATH__" "$final_path" ../conf/poller-cron
|
|
ynh_replace_string "__USER__" "$app" ../conf/poller-cron
|
|
sudo cp ../conf/poller-cron /etc/cron.d/$app
|
|
|
|
# Run composer
|
|
(cd $final_path && sudo php bin/composer.phar install)
|
|
|
|
#=================================================
|
|
# SETUP SSOWAT
|
|
#=================================================
|
|
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
|
ynh_app_setting_set $app skipped_uris "/"
|
|
|
|
|
|
# Reload services
|
|
sudo service php5-fpm reload || true
|
|
sudo service nginx reload || true
|
|
sudo yunohost app ssowatconf
|