1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dotclear2_ynh.git synced 2024-09-03 18:26:29 +02:00
dotclear2_ynh/scripts/install

144 lines
5.8 KiB
Text
Raw Normal View History

2015-08-20 12:20:05 +02:00
#!/bin/bash
2019-01-27 23:36:59 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-09 23:46:07 +01:00
source _common.sh
2020-04-17 14:38:01 +02:00
source /usr/share/yunohost/helpers
2019-01-27 23:36:59 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-04-17 14:38:01 +02:00
ynh_script_progression --message="Setting up source files..." --weight=4
2019-01-27 23:36:59 +01:00
2021-07-03 00:11:54 +02:00
# In case of a new version, the url change from http://download.dotclear.org/latest/dotclear-X.X.X.tar.gz to http://download.dotclear.org/attic/dotclear-X.X.X.tar.gz
2023-08-15 17:52:30 +02:00
src_url=$(cat $YNH_APP_BASEDIR/manifest.toml | toml_to_json | jq ".resources.sources[latest].url")
2021-07-03 00:11:54 +02:00
if ! curl --output /dev/null --silent --head --fail "$src_url"; then
2023-08-15 17:52:30 +02:00
ynh_setup_source --dest_dir="$install_dir" --source_id="attic"
else
ynh_setup_source --dest_dir="$install_dir" --source_id="latest"
2021-07-03 00:11:54 +02:00
fi
2023-08-15 17:52:30 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-05-15 16:10:33 +02:00
2021-10-29 15:29:25 +02:00
# https://dotclear.org/documentation/2.0/admin/install
2023-08-15 17:52:30 +02:00
mkdir -p "$install_dir/"{cache,public}
setfacl -m d:u:www-data:rwx "$install_dir/"{cache,public}
2021-10-29 15:29:25 +02:00
2019-01-27 23:36:59 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-05-15 16:10:33 +02:00
ynh_script_progression --message="Configuring NGINX web server..."
2019-01-27 23:36:59 +01:00
2021-05-15 16:10:33 +02:00
# Create a dedicated NGINX config
2019-01-27 23:36:59 +01:00
ynh_add_nginx_config
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2021-05-15 16:10:33 +02:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=2
2019-01-27 23:36:59 +01:00
2021-05-15 16:10:33 +02:00
# Create a dedicated PHP-FPM config
2023-08-15 17:52:30 +02:00
ynh_add_fpm_config
2019-01-27 23:36:59 +01:00
2022-05-30 16:06:42 +02:00
#=================================================
# SPECIFIC SETUP
2020-04-17 14:38:01 +02:00
#=================================================
2021-05-15 16:10:33 +02:00
# ADD A CONFIGURATION
2020-04-17 14:38:01 +02:00
#=================================================
2021-05-15 16:10:33 +02:00
ynh_script_progression --message="Adding a configuration file..."
2015-08-19 17:41:15 +02:00
2023-08-15 17:52:30 +02:00
php_config=$install_dir/inc/config.php
2019-11-10 02:13:57 +01:00
2020-04-17 14:38:01 +02:00
master_key=$(ynh_string_random --length=30)
ynh_app_setting_set --app=$app --key=master_key --value=$master_key
2019-11-10 02:13:57 +01:00
2019-02-09 23:46:07 +01:00
cp $php_config.in $php_config
2023-08-15 17:52:30 +02:00
admin_url="${path%/}/admin/"
2020-04-17 14:38:01 +02:00
email=$(ynh_user_get_info --username=$admin --key=mail)
2015-08-19 17:41:15 +02:00
# Config as if we called in admin/install/wizard.php
2020-04-17 14:38:01 +02:00
ynh_replace_string --match_string="'DC_DBDRIVER', ''" --replace_string="'DC_DBDRIVER', 'mysqli'" --target_file=$php_config
ynh_replace_string --match_string="'DC_DBHOST', ''" --replace_string="'DC_DBHOST', 'localhost'" --target_file=$php_config
ynh_replace_string --match_string="'DC_DBUSER', ''" --replace_string="'DC_DBUSER', '$db_user'" --target_file=$php_config
ynh_replace_string --match_string="'DC_DBPASSWORD', ''" --replace_string="'DC_DBPASSWORD', '$db_pwd'" --target_file=$php_config
ynh_replace_string --match_string="'DC_DBNAME', ''" --replace_string="'DC_DBNAME', '$db_name'" --target_file=$php_config
ynh_replace_string --match_string="'DC_MASTER_KEY', ''" --replace_string="'DC_MASTER_KEY', '$master_key'" --target_file=$php_config
ynh_replace_string --match_string="'DC_ADMIN_URL', ''" --replace_string="'DC_ADMIN_URL', 'https://$domain$admin_url'" --target_file=$php_config
ynh_replace_string --match_string="'DC_ADMIN_MAILFROM', ''" --replace_string="'DC_ADMIN_MAILFROM', '$email'" --target_file=$php_config
2019-02-09 23:46:07 +01:00
2019-03-01 02:05:03 +01:00
# Adding LDAP login
2022-01-07 18:06:55 +01:00
blog_admin="false"
blog_contentadmin="false"
blog_usage="true"
blog_publish="false"
blog_delete="false"
blog_categories="false"
blog_media_admin="false"
blog_media="false"
blog_pages="false"
blog_blogroll="false"
2023-08-15 17:52:30 +02:00
2022-01-07 18:06:55 +01:00
ynh_app_setting_set --app=$app --key=blog_admin --value=$blog_admin
ynh_app_setting_set --app=$app --key=blog_contentadmin --value=$blog_contentadmin
ynh_app_setting_set --app=$app --key=blog_usage --value=$blog_usage
ynh_app_setting_set --app=$app --key=blog_publish --value=$blog_publish
ynh_app_setting_set --app=$app --key=blog_delete --value=$blog_delete
ynh_app_setting_set --app=$app --key=blog_categories --value=$blog_categories
ynh_app_setting_set --app=$app --key=blog_media_admin --value=$blog_media_admin
ynh_app_setting_set --app=$app --key=blog_media --value=$blog_media
ynh_app_setting_set --app=$app --key=blog_pages --value=$blog_pages
ynh_app_setting_set --app=$app --key=blog_blogroll --value=$blog_blogroll
2023-08-15 17:52:30 +02:00
ynh_add_config --template="../conf/class.auth.ldap.php" --destination="$install_dir/inc/class.auth.ldap.php"
2020-04-17 14:38:01 +02:00
2019-03-01 02:05:03 +01:00
cat << EOF >> $php_config
2020-04-17 23:49:35 +02:00
\$__autoload['ldapDcAuth'] = dirname(__FILE__).'/class.auth.ldap.php';
define('DC_AUTH_CLASS','ldapDcAuth');
2019-03-01 02:05:03 +01:00
EOF
2020-04-17 14:38:01 +02:00
ynh_store_file_checksum --file=$php_config
2019-02-28 00:12:48 +01:00
chmod 400 "$php_config"
chown $app:$app "$php_config"
2019-01-28 01:52:20 +01:00
#=================================================
# SETUP APPLICATION WITH CURL
#=================================================
2020-04-17 14:38:01 +02:00
ynh_script_progression --message="Finalizing installation..." --weight=14
firstname=$(ynh_user_get_info --username=$admin --key=firstname)
lastname=$(ynh_user_get_info --username=$admin --key=lastname)
email=$(ynh_user_get_info --username=$admin --key=mail)
password=$(ynh_string_random --length=30)
2019-01-28 01:52:20 +01:00
# Installation with curl
2019-01-29 02:10:27 +01:00
installUrl="/admin/install/index.php"
2019-01-28 01:52:20 +01:00
2019-01-29 02:10:27 +01:00
ynh_local_curl $installUrl "u_email=$email" "u_firstname=$firstname" "u_name=$lastname" "u_login=$admin" "u_pwd=$password" "u_pwd2=$password"
2020-04-17 14:38:01 +02:00
#=================================================
# GENERIC FINALIZATION
2020-04-18 01:08:12 +02:00
#=================================================
# SETUP FAIL2BAN
#=================================================
2021-05-15 16:10:33 +02:00
ynh_script_progression --message="Configuring Fail2Ban..."
2020-04-18 01:08:12 +02:00
2021-05-15 16:10:33 +02:00
# Create a dedicated Fail2Ban config
2023-08-15 17:52:30 +02:00
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="Invalid credentials in $install_dir/inc/class.auth.ldap.php .* client: <HOST>, .*https://$domain${path%/}/admin/auth.php"
2020-04-17 14:38:01 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2019-01-27 23:36:59 +01:00
2020-04-17 14:38:01 +02:00
ynh_script_progression --message="Installation of $app completed" --last