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

177 lines
5.5 KiB
Text
Raw Normal View History

2016-09-18 11:03:26 +02:00
#!/bin/bash
2018-05-05 17:03:04 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-09-18 11:03:26 +02:00
2018-05-05 17:03:04 +02:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2016-09-18 11:03:26 +02:00
domain=$YNH_APP_ARG_DOMAIN
2018-05-05 17:03:04 +02:00
path_url=$YNH_APP_ARG_PATH
2016-09-18 11:03:26 +02:00
password=$YNH_APP_ARG_PASSWORD
is_public=$YNH_APP_ARG_IS_PUBLIC
2018-05-05 17:03:04 +02:00
# This is a multi-instance app, meaning it can be installed several times independently
# The id of the app as stated in the manifest is available as $YNH_APP_ID
# The instance number is available as $YNH_APP_INSTANCE_NUMBER (equals "1", "2", ...)
# The app instance name is available as $YNH_APP_INSTANCE_NAME
# - the first time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample
# - the second time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample__2
# - ynhexample__{N} for the subsequent installations, with N=3,4, ...
# The app instance name is probably what you are interested the most, since this is
# guaranteed to be unique. This is a good unique identifier to define installation path,
# db names, ...
app=$YNH_APP_INSTANCE_NAME
2016-09-18 11:03:26 +02:00
2018-05-05 17:03:04 +02:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2016-09-18 11:03:26 +02:00
2018-05-05 17:03:04 +02:00
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die "This path already contains a folder"
2016-09-18 11:03:26 +02:00
2018-05-05 17:03:04 +02:00
# Normalize the url path syntax
path_url=$(ynh_normalize_url_path $path_url)
2016-12-30 17:46:49 +01:00
2018-05-05 17:03:04 +02:00
# Check web path availability
ynh_webpath_available $domain $path_url
# Register (book) web path
ynh_webpath_register $app $domain $path_url
2016-12-30 17:46:49 +01:00
2018-05-05 17:03:04 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2016-09-18 11:03:26 +02:00
2018-05-05 17:03:04 +02:00
ynh_app_setting_set $app domain $domain
ynh_app_setting_set $app path $path_url
ynh_app_setting_set $app password $password
ynh_app_setting_set $app is_public $is_public
#=================================================
# CREATE A MYSQL DATABASE
#=================================================
# If your app uses a MySQL database, you can use these lines to bootstrap
# a database, an associated user and save the password in app settings
db_name=$(ynh_sanitize_dbid $app)
ynh_app_setting_set $app db_name $db_name
ynh_mysql_setup_db $db_name $db_name
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_app_setting_set $app final_path $final_path
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source "$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# CREATE DEDICATED USER
#=================================================
# Create a system user
ynh_system_user_create $app
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
# Create a dedicated php-fpm config
ynh_add_fpm_config
2016-09-18 11:03:26 +02:00
2018-05-05 17:03:04 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
2016-09-18 11:03:26 +02:00
# Add cron job
2018-05-05 17:03:04 +02:00
#=================================================
2018-05-20 19:38:56 +02:00
# Path where crontab will be installed
2016-09-18 11:03:26 +02:00
cron_path="/etc/cron.d/$app"
2018-05-20 19:38:56 +02:00
# Copy crontab from package to Yunohost
sudo cp -a ../conf/cheky.cron "$cron_path"
# Secure crontab
chown root: "$cron_path"
sudo chmod 644 "$cron_path"
2018-05-05 17:03:04 +02:00
2018-05-20 19:38:56 +02:00
# Configure crontab
ynh_replace_string "__USER__" "$app" "$cron_path"
ynh_replace_string "__FINALPATH__" "$final_path" "$cron_path"
2018-05-05 17:03:04 +02:00
#=================================================
# SETUP APPLICATION WITH CURL
#=================================================
# Set right permissions for curl install
chown -R $app: $final_path
# Set the app as temporarily public for curl call
ynh_app_setting_set $app skipped_uris "/"
# Reload SSOwat config
yunohost app ssowatconf
# Reload Nginx
systemctl reload nginx
# Get database password
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
2018-05-05 17:03:04 +02:00
# Installation with curl
ynh_local_curl "/index.php?mod=install" "password=$password" "confirmPassword=$password" "type=db" "db[host]=localhost" "db[user]=$db_name" "db[password]=$db_pwd" "db[dbname]=$db_name"
2018-05-05 17:03:04 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions to app files
chown -R root: $final_path
# Only path that needs to be writable by cheky
chown -R $app: $final_path/var
#=================================================
# SETUP SSOWAT
#=================================================
if [ $is_public -eq 0 ]
then # Remove the public access
ynh_app_setting_delete $app skipped_uris
fi
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway.
ynh_app_setting_set $app unprotected_uris "/"
fi
#=================================================
# RELOAD NGINX
#=================================================
systemctl reload nginx