2014-01-14 22:57:44 +01:00
#!/bin/bash
2017-08-29 02:34:05 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-02-15 00:21:53 +01:00
2017-10-20 13:20:55 +02:00
source _common.sh
2017-08-29 02:34:05 +02:00
source /usr/share/yunohost/helpers
#=================================================
# STANDARD MODIFICATIONS
#=================================================
2023-11-02 18:39:09 +01:00
# CREATE A MYSQL SUPERUSER
2017-08-29 02:34:05 +02:00
#=================================================
2018-05-23 19:09:15 +02:00
# Setup a privileged user for phpmyadmin (to prevent using MySQL root user)
db_admin_user="${app}_root"
2019-05-18 14:04:40 +02:00
ynh_app_setting_set --app=$app --key=db_admin_user --value=$db_admin_user
2018-05-23 19:09:15 +02:00
db_admin_pwd="$(ynh_string_random)"
2019-05-18 14:04:40 +02:00
ynh_app_setting_set --app=$app --key=db_admin_pwd --value=$db_admin_pwd
2018-05-23 19:09:15 +02:00
2019-05-18 14:04:40 +02:00
if ! ynh_mysql_user_exists --user=$db_admin_user
2019-02-17 15:42:09 +01:00
then
2019-05-18 14:04:40 +02:00
ynh_mysql_create_user $db_admin_user "$db_admin_pwd"
2023-11-02 18:39:09 +01:00
ynh_mysql_execute_as_root --sql="GRANT ALL PRIVILEGES ON *.* TO '$db_admin_user'@'localhost' IDENTIFIED BY '$db_admin_pwd' WITH GRANT OPTION; FLUSH PRIVILEGES;" --database=mysql
2018-05-23 19:09:15 +02:00
fi
2019-02-17 15:42:09 +01:00
2017-08-29 02:34:05 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-04-13 18:26:29 +02:00
ynh_script_progression --message="Setting up source files..." --weight=6
2017-08-29 02:34:05 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-11-02 18:39:09 +01:00
ynh_setup_source --dest_dir="$install_dir"
2017-08-29 02:34:05 +02:00
2023-11-02 18:39:09 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-07-10 22:32:23 +02:00
2017-08-29 02:34:05 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-09-24 13:44:38 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=3
2017-08-29 02:34:05 +02:00
2020-09-24 13:44:38 +02:00
# Create a dedicated NGINX config
2017-08-29 02:34:05 +02:00
ynh_add_nginx_config
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-09-24 13:44:38 +02:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=2
2017-08-29 02:34:05 +02:00
2020-09-24 13:44:38 +02:00
# Create a dedicated PHP-FPM config
2021-11-14 11:46:43 +01:00
ynh_add_fpm_config
2017-08-29 02:34:05 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
# POPULATE THE DATABASE
#=================================================
2019-04-13 18:26:29 +02:00
ynh_script_progression --message="Filling database..." --weight=3
2017-08-29 02:34:05 +02:00
2023-11-02 18:39:09 +01:00
ynh_replace_string --match_string="phpmyadmin" --replace_string="$db_name" --target_file=$install_dir/sql/create_tables.sql
2019-05-18 14:04:40 +02:00
ynh_mysql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" \
2023-11-02 18:39:09 +01:00
< $install_dir/sql/create_tables.sql
2017-08-29 02:34:05 +02:00
#=================================================
# CONFIGURE PHPMYADMIN
#=================================================
2020-09-24 13:44:38 +02:00
ynh_script_progression --message="Configuring phpMyAdmin..."
2017-08-29 02:34:05 +02:00
2023-11-02 18:39:09 +01:00
ynh_add_config --template="../conf/config.inc.php" --destination="$install_dir/config.inc.php"
2021-07-10 22:32:23 +02:00
# config.inc.php contains sensitive data, restrict its access
2023-11-02 18:39:09 +01:00
chown $app: $install_dir/config.inc.php
chmod 640 $install_dir/config.inc.php
2017-10-20 13:20:55 +02:00
2017-08-29 02:34:05 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2018-05-24 20:31:58 +02:00
# Setup phpMyAdmin temporary folder
2023-11-02 18:39:09 +01:00
mkdir -p $install_dir/tmp
chown $app: $install_dir/tmp
2019-02-17 20:58:14 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-07-08 08:42:29 +02:00
ynh_script_progression --message="Installation of $app completed" --last