2015-08-23 17:33:13 +02:00
#!/bin/bash
2017-02-05 16:11:01 +01:00
2018-04-30 20:24:17 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-02-15 17:53:40 +01:00
2018-04-30 20:24:17 +02:00
source _common.sh
source /usr/share/yunohost/helpers
2015-08-23 17:33:13 +02:00
2018-04-30 20:24:17 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2015-08-23 17:33:13 +02:00
2017-02-15 17:53:40 +01:00
domain=$YNH_APP_ARG_DOMAIN
2018-04-30 20:24:17 +02:00
path_url="/"
2017-02-15 17:53:40 +01:00
admin=$YNH_APP_ARG_ADMIN
2017-07-22 00:24:08 +02:00
email=$(sudo yunohost user info $admin | grep "mail:" | cut -d' ' -f2)
2018-04-30 20:24:17 +02:00
upload="256M"
database="1"
# 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
2015-08-23 17:33:13 +02:00
2018-04-30 20:24:17 +02:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2017-02-05 16:11:01 +01:00
2018-04-30 20:24:17 +02:00
final_path=/var/www/$app
test ! -e "$final_path" || ynh_die "This path already contains a folder"
2017-02-05 16:11:01 +01:00
2018-04-30 20:24:17 +02:00
# Normalize the url path syntax
path_url=$(ynh_normalize_url_path $path_url)
2017-02-05 16:11:01 +01:00
2018-04-30 20:24:17 +02:00
# Check web path availability
ynh_webpath_available $domain $path_url
# Register (book) web path
ynh_webpath_register $app $domain $path_url
2015-08-23 17:33:13 +02:00
2017-02-15 17:53:40 +01:00
# Enregistre les infos dans la config YunoHost
ynh_app_setting_set $app domain $domain
2018-04-30 20:24:17 +02:00
ynh_app_setting_set $app path $path_url
2017-02-15 17:53:40 +01:00
ynh_app_setting_set $app admin $admin
2017-02-17 15:43:21 +01:00
ynh_app_setting_set $app email $email
ynh_app_setting_set $app upload $upload
2018-04-30 20:24:17 +02:00
ynh_app_setting_set $app database $database
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2018-05-25 19:30:13 +02:00
pkg_dependencies="php5-cli php5-imagick php5-gd php5-mcrypt"
2018-05-25 18:49:15 +02:00
if [ "$(lsb_release --codename --short)" != "jessie" ]; then
pkg_dependencies="$pkg_dependencies php-xml"
fi
ynh_install_app_dependencies $pkg_dependencies
2015-08-23 17:33:13 +02:00
2018-04-30 20:24:17 +02:00
#=================================================
# 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
2015-08-23 17:33:13 +02:00
2017-02-15 18:27:33 +01:00
# We download the sources and check the md5sum
# 1 - hubzilla
2018-04-30 20:24:17 +02:00
ynh_app_setting_set $app final_path $final_path
ynh_setup_source "$final_path"
2017-02-17 14:04:56 +01:00
sudo mkdir $final_path/addon
2018-04-30 20:24:17 +02:00
ynh_setup_source "$final_path/addon" "app_addons"
2017-02-17 14:04:56 +01:00
2017-02-15 18:27:33 +01:00
# 3 - some extra folders
sudo mkdir -p "${final_path}/store/[data]/smarty3"
sudo chmod -R 777 $final_path/store
2015-08-23 17:33:13 +02:00
# Import database schema
2018-04-30 20:24:17 +02:00
ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" < $final_path/install/schema_mysql.sql
2015-08-23 17:33:13 +02:00
# Copy the template install/htconfig.sample.php to .htconfig.php
sudo cp $final_path/install/htconfig.sample.php $final_path/.htconfig.php
2018-05-25 21:56:54 +02:00
sudo touch "$final_path/php.log"
2015-08-23 17:33:13 +02:00
# Use sed to add the database information to .htconfig.php
sudo sed -i "s/your.mysqlhost.com/localhost/g" $final_path/.htconfig.php
2017-02-15 17:53:40 +01:00
sudo sed -i "s/mysqlpassword/$db_pwd/g" $final_path/.htconfig.php
2018-04-30 20:24:17 +02:00
sudo sed -i "s/mysqlusername/$db_name/g" $final_path/.htconfig.php
sudo sed -i "s/mysqldatabasename/$db_name/g" $final_path/.htconfig.php
2017-02-05 16:11:01 +01:00
sudo sed -i "s/mysite.example/$domain/g" $final_path/.htconfig.php
sudo sed -i "s/if the auto install failed, put a unique random string here/$(ynh_string_random)$(ynh_string_random)$(ynh_string_random)/g" $final_path/.htconfig.php
2017-07-20 07:09:07 +02:00
sudo sed -i "s/\['admin_email'\] = '';/\['admin_email'\] = '$email';/g" $final_path/.htconfig.php
2018-04-30 20:24:17 +02:00
sudo sed -i "s@//error_reporting(E_ERROR | E_WARNING | E_PARSE );@error_reporting(E_ERROR | E_WARNING | E_PARSE );@g" $final_path/.htconfig.php
sudo sed -i "s@//ini_set('error_log','php.out');@ini_set('error_log','php.log');@g" $final_path/.htconfig.php
sudo sed -i "s@//ini_set('log_errors','1');@ini_set('log_errors','1');@g" $final_path/.htconfig.php
sudo sed -i "s@//ini_set('display_errors', '0');@ini_set('display_errors', '0');@g" $final_path/.htconfig.php
2017-07-20 07:09:07 +02:00
# addon ldap config
sudo su -c "cat ../conf/ldap_conf.php >> $final_path/.htconfig.php"
2015-08-23 17:33:13 +02:00
2018-04-30 20:24:17 +02:00
#=================================================
# 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
# Set right permissions for curl install
chown -R $app: $final_path
2017-02-15 18:09:01 +01:00
# Set up poller
sed -i "s@YNH_WWW_PATH@$final_path@g" ../conf/poller-cron
sudo cp ../conf/poller-cron /etc/cron.d/$app
2017-02-05 16:11:01 +01:00
2017-07-22 00:24:08 +02:00
# Make app public
ynh_app_setting_set $app skipped_uris "/"
2018-04-30 20:24:17 +02:00
#=================================================
# STORE THE CHECKSUM OF THE CONFIG FILE
#=================================================
2017-02-17 15:45:54 +01:00
2018-04-30 20:24:17 +02:00
# Calculate and store the config file checksum into the app settings
ynh_store_file_checksum "$final_path/.htconfig.php"
2015-08-23 17:33:13 +02:00
2018-04-30 20:24:17 +02:00
#=================================================
# SETUP LOGROTATE
#=================================================
# Use logrotate to manage application logfile(s)
ynh_use_logrotate "$final_path/php.log"
2017-02-17 13:01:42 +01:00
2018-04-30 20:24:17 +02:00
# Reload services
systemctl reload nginx
2017-02-17 13:01:42 +01:00
sudo yunohost app ssowatconf