2017-02-02 03:37:01 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
2017-02-02 03:37:01 +01:00
|
|
|
# App package root directory should be the parent folder
|
|
|
|
PKG_DIR=$(cd ../; pwd)
|
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
pkg_dependencies="php5-cli php5-imap"
|
2017-02-02 03:37:01 +01:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
set_permissions () {
|
2017-02-02 03:37:01 +01:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_set_default_perm $final_path
|
|
|
|
find $final_path -type f -name "*.php" -print0 | xargs -0 chmod 400 \
|
|
|
|
|| echo "No file to modify"
|
|
|
|
#chown root: $final_path/application/config/config.php
|
|
|
|
chmod -R u+w $final_path/tmp
|
|
|
|
chmod -R u+w $final_path/templates
|
|
|
|
chmod -R u+w $final_path/upload
|
|
|
|
chmod -R u+w $final_path/application/config/
|
2017-02-02 03:37:01 +01:00
|
|
|
}
|
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
#=================================================
|
|
|
|
# COMMON HELPERS
|
|
|
|
#=================================================
|
|
|
|
ynh_set_default_perm () {
|
|
|
|
local DIRECTORY=$1
|
|
|
|
# Set permissions
|
|
|
|
chown -R $app:www-data $DIRECTORY
|
|
|
|
chmod -R 440 $DIRECTORY
|
|
|
|
find $DIRECTORY -type d -print0 | xargs -0 chmod 550 \
|
|
|
|
|| echo "No file to modify"
|
|
|
|
|
|
|
|
}
|
|
|
|
ynh_check_var () {
|
|
|
|
test -n "$1" || ynh_die "$2"
|
2017-02-02 03:37:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ynh_export () {
|
|
|
|
local ynh_arg=""
|
|
|
|
for var in $@;
|
|
|
|
do
|
|
|
|
ynh_arg=$(echo $var | awk '{print toupper($0)}')
|
2018-03-13 21:49:11 +01:00
|
|
|
if [ "$var" == "path_url" ]; then
|
|
|
|
ynh_arg="PATH"
|
|
|
|
fi
|
2017-02-02 03:37:01 +01:00
|
|
|
ynh_arg="YNH_APP_ARG_$ynh_arg"
|
|
|
|
export $var=${!ynh_arg}
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Check the path doesn't exist
|
|
|
|
# usage: ynh_local_path_available PATH
|
|
|
|
ynh_local_path_available () {
|
|
|
|
if [ -e "$1" ]
|
|
|
|
then
|
|
|
|
ynh_die "This path '$1' already contains a folder"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Save listed var in YunoHost app settings
|
|
|
|
# usage: ynh_save_args VARNAME1 [VARNAME2 [...]]
|
|
|
|
ynh_save_args () {
|
|
|
|
for var in $@;
|
|
|
|
do
|
2018-03-13 21:49:11 +01:00
|
|
|
local setting_var="$var"
|
|
|
|
if [ "$var" == "path_url" ]; then
|
|
|
|
setting_var="path"
|
|
|
|
fi
|
|
|
|
ynh_app_setting_set $app $setting_var ${!var}
|
2017-02-02 03:37:01 +01:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Execute a command as another user
|
|
|
|
# usage: ynh_exec_as USER COMMAND [ARG ...]
|
|
|
|
ynh_exec_as() {
|
|
|
|
local USER=$1
|
|
|
|
shift 1
|
|
|
|
|
|
|
|
if [[ $USER = $(whoami) ]]; then
|
|
|
|
eval "$@"
|
|
|
|
else
|
|
|
|
# use sudo twice to be root and be allowed to use another user
|
|
|
|
sudo sudo -u "$USER" "$@"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-02-06 23:40:55 +01:00
|
|
|
|
|
|
|
# TODO support SOURCE_ID
|
|
|
|
ynh_save_persistent () {
|
|
|
|
local TYPE=$1
|
|
|
|
local DIR=/tmp/ynh-persistent/$TYPE/$app/app
|
2018-03-13 21:49:11 +01:00
|
|
|
mkdir -p $DIR
|
|
|
|
touch $DIR/dir_names
|
2017-02-06 23:40:55 +01:00
|
|
|
shift
|
|
|
|
i=1
|
|
|
|
for PERSISTENT_DIR in $@;
|
|
|
|
do
|
|
|
|
if [ -e $local_path/$PERSISTENT_DIR ]; then
|
2018-03-13 21:49:11 +01:00
|
|
|
mv $local_path/$PERSISTENT_DIR $DIR/$i
|
|
|
|
echo -n '$PERSISTENT_DIR ' >> $DIR/dir_names
|
2017-02-06 23:40:55 +01:00
|
|
|
((i++))
|
|
|
|
fi
|
|
|
|
done
|
2017-02-02 03:37:01 +01:00
|
|
|
}
|
|
|
|
|
2017-02-06 23:40:55 +01:00
|
|
|
# TODO support SOURCE_ID
|
|
|
|
ynh_restore_persistent () {
|
|
|
|
local TYPE=$1
|
|
|
|
local DIR=/tmp/ynh-persistent/$TYPE/$app/app
|
|
|
|
shift
|
|
|
|
if [ -d $DIR ]; then
|
|
|
|
i=1
|
|
|
|
for PERSISTENT_DIR in $(cat $DIR/dir_names);
|
|
|
|
do
|
|
|
|
if [ "$TYPE" = "modules" ]; then
|
|
|
|
for updated_subdir in $(ls $local_path/$PERSISTENT_DIR);
|
|
|
|
do
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_secure_remove $DIR/$i/$updated_subdir
|
2017-02-06 23:40:55 +01:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
if [ -d $DIR/$i ]; then
|
2018-03-13 21:49:11 +01:00
|
|
|
mv $DIR/$i/* $local_path/$PERSISTENT_DIR/ 2> /dev/null || true
|
2017-02-06 23:40:55 +01:00
|
|
|
else
|
2018-03-13 21:49:11 +01:00
|
|
|
mv $DIR/$i $local_path/$PERSISTENT_DIR 2> /dev/null || true
|
2017-02-06 23:40:55 +01:00
|
|
|
fi
|
|
|
|
((i++))
|
|
|
|
done
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_secure_remove $DIR
|
2017-02-06 23:40:55 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
}
|
2017-02-02 03:37:01 +01:00
|
|
|
ynh_mv_to_home () {
|
|
|
|
local APP_PATH="/home/yunohost.app/$app/"
|
|
|
|
local DATA_PATH="$1"
|
2018-03-13 21:49:11 +01:00
|
|
|
mkdir -p "$APP_PATH"
|
|
|
|
chown $app: "$APP_PATH"
|
2017-02-02 03:37:01 +01:00
|
|
|
ynh_exec_as "$app" mv "$DATA_PATH" "$APP_PATH"
|
|
|
|
ynh_exec_as "$app" ln -s "$APP_PATH$DATA_PATH" "$DATA_PATH"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-02-06 00:29:42 +01:00
|
|
|
ynh_sso_access () {
|
2017-02-07 00:28:03 +01:00
|
|
|
ynh_app_setting_set $app unprotected_uris "/"
|
2017-02-06 00:29:42 +01:00
|
|
|
|
|
|
|
if [[ $is_public -eq 0 ]]; then
|
2017-02-07 00:28:03 +01:00
|
|
|
ynh_app_setting_set $app protected_uris "$1"
|
2017-02-06 00:29:42 +01:00
|
|
|
fi
|
2018-03-13 21:49:11 +01:00
|
|
|
yunohost app ssowatconf
|
2017-02-06 00:29:42 +01:00
|
|
|
}
|
2017-02-02 03:37:01 +01:00
|
|
|
|
2017-02-06 23:40:55 +01:00
|
|
|
ynh_exit_if_up_to_date () {
|
|
|
|
if [ "${version}" = "${last_version}" ]; then
|
|
|
|
info "Up-to-date, nothing to do"
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_die "Up-to-date, nothing to do" 0
|
2017-02-06 23:40:55 +01:00
|
|
|
fi
|
2017-02-05 23:38:38 +01:00
|
|
|
}
|
|
|
|
|
2017-02-07 02:00:05 +01:00
|
|
|
log() {
|
2017-02-06 23:40:55 +01:00
|
|
|
echo "${1}"
|
|
|
|
}
|
|
|
|
|
2017-02-07 02:00:05 +01:00
|
|
|
info() {
|
2017-02-06 23:40:55 +01:00
|
|
|
log "[INFO] ${1}"
|
|
|
|
}
|
|
|
|
|
2017-02-07 02:00:05 +01:00
|
|
|
warn() {
|
2017-02-06 23:40:55 +01:00
|
|
|
log "[WARN] ${1}"
|
|
|
|
}
|
|
|
|
|
2017-02-07 02:00:05 +01:00
|
|
|
err() {
|
2017-02-06 23:40:55 +01:00
|
|
|
log "[ERR] ${1}"
|
|
|
|
}
|
|
|
|
|
2017-02-07 02:00:05 +01:00
|
|
|
to_logs() {
|
2017-02-06 23:40:55 +01:00
|
|
|
|
|
|
|
# When yunohost --verbose or bash -x
|
|
|
|
if $_ISVERBOSE; then
|
|
|
|
cat
|
|
|
|
else
|
|
|
|
cat > /dev/null
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
ynh_read_json () {
|
|
|
|
sudo python3 -c "import sys, json;print(json.load(open('$1'))['$2'])"
|
|
|
|
}
|
|
|
|
|
|
|
|
ynh_read_manifest () {
|
2017-02-08 19:14:48 +01:00
|
|
|
if [ -f '../manifest.json' ] ; then
|
|
|
|
ynh_read_json '../manifest.json' "$1"
|
|
|
|
else
|
|
|
|
ynh_read_json '../settings/manifest.json' "$1"
|
|
|
|
fi
|
2017-02-06 23:40:55 +01:00
|
|
|
}
|
2017-02-05 23:38:38 +01:00
|
|
|
|
2017-02-02 03:37:01 +01:00
|
|
|
|
|
|
|
ynh_configure () {
|
|
|
|
local TEMPLATE=$1
|
|
|
|
local DEST=$2
|
2017-02-02 11:14:25 +01:00
|
|
|
type j2 2>/dev/null || sudo pip install j2cli
|
2017-02-02 03:37:01 +01:00
|
|
|
j2 "${PKG_DIR}/conf/$TEMPLATE.j2" > "${PKG_DIR}/conf/$TEMPLATE"
|
|
|
|
sudo cp "${PKG_DIR}/conf/$TEMPLATE" "$DEST"
|
|
|
|
}
|
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_add_nginx_config () {
|
|
|
|
finalnginxconf="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
ynh_backup_if_checksum_is_different "$finalnginxconf"
|
|
|
|
ynh_configure nginx.conf "$finalnginxconf"
|
|
|
|
ynh_store_file_checksum "$finalnginxconf"
|
|
|
|
service nginx reload
|
|
|
|
}
|
|
|
|
|
|
|
|
ynh_add_fpm_config () {
|
|
|
|
# Configure PHP-FPM 7.0 by default
|
|
|
|
local fpm_config_dir="/etc/php/7.0/fpm"
|
|
|
|
local fpm_service="php7.0-fpm"
|
|
|
|
# Configure PHP-FPM 5 on Debian Jessie
|
|
|
|
if is_jessie; then
|
|
|
|
fpm_config_dir="/etc/php5/fpm"
|
|
|
|
fpm_service="php5-fpm"
|
|
|
|
fi
|
|
|
|
ynh_app_setting_set $app fpm_config_dir "$fpm_config_dir"
|
|
|
|
ynh_app_setting_set $app fpm_service "$fpm_service"
|
|
|
|
finalphpconf="$fpm_config_dir/pool.d/$app.conf"
|
|
|
|
ynh_backup_if_checksum_is_different "$finalphpconf"
|
|
|
|
ynh_configure php-fpm.conf "$finalphpconf"
|
|
|
|
sudo chown root: "$finalphpconf"
|
|
|
|
ynh_store_file_checksum "$finalphpconf"
|
|
|
|
|
2018-03-14 01:54:43 +01:00
|
|
|
if [ -e "../conf/php-fpm.ini.j2" ]
|
2018-03-13 21:49:11 +01:00
|
|
|
then
|
|
|
|
finalphpini="$fpm_config_dir/conf.d/20-$app.ini"
|
|
|
|
ynh_backup_if_checksum_is_different "$finalphpini"
|
|
|
|
ynh_configure php-fpm.ini "$finalphpini"
|
|
|
|
chown root: "$finalphpini"
|
|
|
|
ynh_store_file_checksum "$finalphpini"
|
|
|
|
fi
|
|
|
|
systemctl reload $fpm_service
|
|
|
|
}
|
|
|
|
|
|
|
|
# Send an email to inform the administrator
|
2017-02-02 03:37:01 +01:00
|
|
|
#
|
2018-03-13 21:49:11 +01:00
|
|
|
# usage: ynh_send_readme_to_admin app_message [recipients]
|
|
|
|
# | arg: app_message - The message to send to the administrator.
|
|
|
|
# | arg: recipients - The recipients of this email. Use spaces to separate multiples recipients. - default: root
|
|
|
|
# example: "root admin@domain"
|
|
|
|
# If you give the name of a YunoHost user, ynh_send_readme_to_admin will find its email adress for you
|
|
|
|
# example: "root admin@domain user1 user2"
|
|
|
|
ynh_send_readme_to_admin() {
|
|
|
|
local app_message="${1:-...No specific information...}"
|
|
|
|
local recipients="${2:-root}"
|
|
|
|
|
|
|
|
# Retrieve the email of users
|
|
|
|
find_mails () {
|
|
|
|
local list_mails="$1"
|
|
|
|
local mail
|
|
|
|
local recipients=" "
|
|
|
|
# Read each mail in argument
|
|
|
|
for mail in $list_mails
|
|
|
|
do
|
|
|
|
# Keep root or a real email address as it is
|
|
|
|
if [ "$mail" = "root" ] || echo "$mail" | grep --quiet "@"
|
|
|
|
then
|
|
|
|
recipients="$recipients $mail"
|
|
|
|
else
|
|
|
|
# But replace an user name without a domain after by its email
|
|
|
|
if mail=$(ynh_user_get_info "$mail" "mail" 2> /dev/null)
|
|
|
|
then
|
|
|
|
recipients="$recipients $mail"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo "$recipients"
|
|
|
|
}
|
|
|
|
recipients=$(find_mails "$recipients")
|
|
|
|
|
|
|
|
local mail_subject="☁️🆈🅽🅷☁️: \`$app\` was just installed!"
|
|
|
|
|
|
|
|
local mail_message="This is an automated message from your beloved YunoHost server.
|
|
|
|
Specific information for the application $app.
|
|
|
|
$app_message
|
|
|
|
---
|
|
|
|
Automatic diagnosis data from YunoHost
|
|
|
|
$(yunohost tools diagnosis | grep -B 100 "services:" | sed '/services:/d')"
|
|
|
|
|
|
|
|
# Send the email to the recipients
|
|
|
|
echo "$mail_message" | mail -a "Content-Type: text/plain; charset=UTF-8" -s "$mail_subject" "$recipients"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Exit without error if the package is up to date
|
2017-02-02 03:37:01 +01:00
|
|
|
#
|
2018-03-13 21:49:11 +01:00
|
|
|
# This helper should be used to avoid an upgrade of a package
|
|
|
|
# when it's not needed.
|
|
|
|
#
|
|
|
|
# To force an upgrade, even if the package is up to date,
|
|
|
|
# you have to set the variable YNH_FORCE_UPGRADE before.
|
|
|
|
# example: sudo YNH_FORCE_UPGRADE=1 yunohost app upgrade MyApp
|
|
|
|
#
|
|
|
|
# usage: ynh_abort_if_up_to_date
|
|
|
|
ynh_abort_if_up_to_date () {
|
|
|
|
local force_upgrade=${YNH_FORCE_UPGRADE:-0}
|
|
|
|
local package_check=${PACKAGE_CHECK_EXEC:-0}
|
|
|
|
|
|
|
|
local version=$(ynh_read_manifest "/etc/yunohost/apps/$YNH_APP_INSTANCE_NAME/manifest.json" "version" || echo 1.0)
|
|
|
|
local last_version=$(ynh_read_manifest "../manifest.json" "version" || echo 1.0)
|
|
|
|
if [ "$version" = "$last_version" ]
|
|
|
|
then
|
|
|
|
if [ "$force_upgrade" != "0" ]
|
|
|
|
then
|
|
|
|
echo "Upgrade forced by YNH_FORCE_UPGRADE." >&2
|
|
|
|
unset YNH_FORCE_UPGRADE
|
|
|
|
elif [ "$package_check" != "0" ]
|
|
|
|
then
|
|
|
|
echo "Upgrade forced for package check." >&2
|
|
|
|
else
|
|
|
|
ynh_die "Up-to-date, nothing to do" 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Remove any logs for all the following commands.
|
|
|
|
#
|
|
|
|
# usage: ynh_print_OFF
|
|
|
|
# WARNING: You should be careful with this helper, and never forgot to use ynh_print_ON as soon as possible to restore the logging.
|
|
|
|
ynh_print_OFF () {
|
|
|
|
set +x
|
2017-02-02 03:37:01 +01:00
|
|
|
}
|
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
# Restore the logging after ynh_print_OFF
|
2017-02-02 03:37:01 +01:00
|
|
|
#
|
2018-03-13 21:49:11 +01:00
|
|
|
# usage: ynh_print_ON
|
|
|
|
ynh_print_ON () {
|
|
|
|
set -x
|
|
|
|
# Print an echo only for the log, to be able to know that ynh_print_ON has been called.
|
|
|
|
echo ynh_print_ON > /dev/null
|
2017-02-02 03:37:01 +01:00
|
|
|
}
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_version_gt() { test "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1"; }
|
2017-02-02 03:37:01 +01:00
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
# In upgrade script allow to test if the app is less than or equal a specific version
|
|
|
|
#
|
|
|
|
# usage: ynh_version_le "0.5"
|
|
|
|
ynh_version_le() {
|
|
|
|
local version=$(ynh_read_manifest "/etc/yunohost/apps/$YNH_APP_INSTANCE_NAME/manifest.json" "version" || echo 1.0)
|
|
|
|
ynh_version_gt "$1" "${version}"
|
2017-02-02 03:37:01 +01:00
|
|
|
}
|
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
ynh_debian_release () {
|
|
|
|
lsb_release --codename --short
|
2017-02-02 03:37:01 +01:00
|
|
|
}
|
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
is_stretch () {
|
|
|
|
if [ "$(ynh_debian_release)" == "stretch" ]
|
|
|
|
then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
2017-02-02 03:37:01 +01:00
|
|
|
}
|
|
|
|
|
2018-03-13 21:49:11 +01:00
|
|
|
is_jessie () {
|
|
|
|
if [ "$(ynh_debian_release)" == "jessie" ]
|
|
|
|
then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
2017-02-02 03:37:01 +01:00
|
|
|
}
|
|
|
|
|