2017-04-26 19:01:53 +02:00
#
# Common variables
#
# Package version
2017-08-21 21:56:55 +02:00
VERSION = "2017-08-19"
2017-04-26 19:01:53 +02:00
# Full sources tarball URL
2017-08-04 23:22:29 +02:00
SOURCE_URL = " https://github.com/RSS-Bridge/rss-bridge/archive/ ${ VERSION } .tar.gz "
2017-04-26 19:01:53 +02:00
# Full sources tarball checksum
2017-08-21 21:56:55 +02:00
SOURCE_SHA256 = "176385ef1e0cc1ac929498515c446778027ae292635bf6addfec61eab3833b67"
2017-04-26 19:01:53 +02:00
# App package root directory should be the parent folder
PKGDIR = $( cd ../; pwd )
#
# Common helpers
#
# Source app helpers
. /usr/share/yunohost/helpers
# Execute a command as another user
# usage: exec_as USER COMMAND [ARG ...]
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
}
# Execute a command through the wallabag console
# usage: exec_console AS_USER WORKDIR COMMAND [ARG ...]
exec_console( ) {
local AS_USER = $1
local WORKDIR = $2
shift 2
exec_as " $AS_USER " php " $WORKDIR /bin/console " --no-interaction --env= prod " $@ "
}
# Download and extract sources to the given directory
# usage: extract_sources DESTDIR [AS_USER]
extract_sources( ) {
local DESTDIR = $1
local AS_USER = ${ 2 :- $USER }
# retrieve and extract Roundcube tarball
wb_tarball = "/tmp/sources.tar.gz"
rm -f " $wb_tarball "
wget -q -O " $wb_tarball " " $SOURCE_URL " \
|| ynh_die "Unable to download sources tarball"
echo " $SOURCE_SHA256 $wb_tarball " | sha256sum -c >/dev/null \
|| ynh_die "Invalid checksum of downloaded tarball"
exec_as " $AS_USER " tar xf " $wb_tarball " -C " $DESTDIR " --strip-components 1 \
|| ynh_die "Unable to extract sources tarball"
rm -f " $wb_tarball "
}
HUMAN_SIZE ( ) { # Transforms a Kb-based size to a human-readable size
human = $( numfmt --to= iec --from-unit= 1K $1 )
echo $human
}
WARNING ( ) { # Print on error output
$@ >& 2
}
QUIET ( ) { # redirect standard output to /dev/null
$@ > /dev/null
}
CHECK_SIZE ( ) { # Check if enough disk space available on backup storage
file_to_analyse = $1
backup_size = $( sudo du --summarize " $file_to_analyse " | cut -f1)
free_space = $( sudo df --output= avail "/home/yunohost.backup" | sed 1d)
if [ $free_space -le $backup_size ]
then
WARNING echo " Not enough backup disk space for: $file_to_analyse . "
WARNING echo " Space available: $( HUMAN_SIZE $free_space ) "
ynh_die " Space needed: $( HUMAN_SIZE $backup_size ) "
fi
}
CHECK_USER ( ) { # Check user validity
# $1 = User
ynh_user_exists " $1 " || ynh_die "Wrong user"
}
CHECK_DOMAINPATH ( ) { # Check domain/path availability
sudo yunohost app checkurl $domain $path_url -a $app
}
CHECK_FINALPATH ( ) { # Check if destination directory already exists
final_path = " /var/www/ $app "
test ! -e " $final_path " || ynh_die "This path already contains a folder"
}
BACKUP_FAIL_UPGRADE ( ) {
WARNING echo "Upgrade failed."
app_bck = ${ app //_/- } # Replace all '_' by '-'
if sudo yunohost backup list | grep -q $app_bck -pre-upgrade$backup_number ; then # Check if existing archive before removing app and restoring
sudo yunohost app remove $app # Remove app before restoring it
sudo yunohost backup restore --ignore-hooks $app_bck -pre-upgrade$backup_number --apps $app --force # Restore the backup if upgrade failed
ynh_die "The app was restored to the way it was before the failed upgrade."
fi
}
BACKUP_BEFORE_UPGRADE ( ) { # Backup the current version of the app, restore it if the upgrade fails
backup_number = 1
old_backup_number = 2
app_bck = ${ app //_/- } # Replace all '_' by '-'
if sudo yunohost backup list | grep -q $app_bck -pre-upgrade1; then # Check for existing archive numbered 1
backup_number = 2 # And change archive number to 2
old_backup_number = 1
fi
sudo yunohost backup create --ignore-hooks --apps $app --name $app_bck -pre-upgrade$backup_number # Create a backup different from the existing one
if [ " $? " -eq 0 ] ; then # If backup succfessful, delete former archive
if sudo yunohost backup list | grep -q $app_bck -pre-upgrade$old_backup_number ; then # Check for existing archive before removing it
QUIET sudo yunohost backup delete $app_bck -pre-upgrade$old_backup_number
fi
else # If backup failed
ynh_die "Backup failed, the upgrade process was aborted."
fi
}
#=================================================
# FUTURE YUNOHOST HELPERS - TO BE REMOVED LATER
#=================================================
# Normalize the url path syntax
# Handle the slash at the beginning of path and its absence at ending
# Return a normalized url path
#
# example: url_path=$(ynh_normalize_url_path $url_path)
# ynh_normalize_url_path example -> /example
# ynh_normalize_url_path /example -> /example
# ynh_normalize_url_path /example/ -> /example
# ynh_normalize_url_path / -> /
#
# usage: ynh_normalize_url_path path_to_normalize
# | arg: url_path_to_normalize - URL path to normalize before using it
ynh_normalize_url_path ( ) {
path_url = $1
test -n " $path_url " || ynh_die "ynh_normalize_url_path expect a URL path as first argument and received nothing."
if [ " ${ path_url : 0 : 1 } " != "/" ] ; then # If the first character is not a /
path_url = " / $path_url " # Add / at begin of path variable
fi
if [ " ${ path_url : ${# path_url } -1 } " = = "/" ] && [ ${# path_url } -gt 1 ] ; then # If the last character is a / and that not the only character.
path_url = " ${ path_url : 0 : ${# path_url } -1 } " # Delete the last character
fi
echo $path_url
}
# Manage a fail of the script
#
# Print a warning to inform that the script was failed
# Execute the ynh_clean_setup function if used in the app script
#
# usage of ynh_clean_setup function
# This function provide a way to clean some residual of installation that not managed by remove script.
# To use it, simply add in your script:
# ynh_clean_setup () {
# instructions...
# }
# This function is optionnal.
#
# Usage: ynh_exit_properly is used only by the helper ynh_abort_if_errors.
# You must not use it directly.
ynh_exit_properly ( ) {
exit_code = $?
if [ " $exit_code " -eq 0 ] ; then
exit 0 # Exit without error if the script ended correctly
fi
trap '' EXIT # Ignore new exit signals
set +eu # Do not exit anymore if a command fail or if a variable is empty
echo -e " !!\n $app 's script has encountered an error. Its execution was cancelled.\n!! " >& 2
if type -t ynh_clean_setup > /dev/null; then # Check if the function exist in the app script.
ynh_clean_setup # Call the function to do specific cleaning for the app.
fi
ynh_die # Exit with error status
}
# Exit if an error occurs during the execution of the script.
#
# Stop immediatly the execution if an error occured or if a empty variable is used.
# The execution of the script is derivate to ynh_exit_properly function before exit.
#
# Usage: ynh_abort_if_errors
ynh_abort_if_errors ( ) {
set -eu # Exit if a command fail, and if a variable is used unset.
trap ynh_exit_properly EXIT # Capturing exit signals on shell script
}
# Substitute/replace a string by another in a file
#
# usage: ynh_replace_string match_string replace_string target_file
# | arg: match_string - String to be searched and replaced in the file
# | arg: replace_string - String that will replace matches
# | arg: target_file - File in which the string will be replaced.
ynh_replace_string ( ) {
delimit = @
match_string = ${ 1 // ${ delimit } / " \\ ${ delimit } " } # Escape the delimiter if it's in the string.
replace_string = ${ 2 // ${ delimit } / " \\ ${ delimit } " }
workfile = $3
sudo sed --in-place " s ${ delimit } ${ match_string } ${ delimit } ${ replace_string } ${ delimit } g " " $workfile "
}
# Remove a file or a directory securely
#
# usage: ynh_secure_remove path_to_remove
# | arg: path_to_remove - File or directory to remove
ynh_secure_remove ( ) {
path_to_remove = $1
forbidden_path = " \
/var/www \
/home/yunohost.app"
if [ [ " $forbidden_path " = ~ " $path_to_remove " \
# Match all paths or subpaths in $forbidden_path
|| " $path_to_remove " = ~ ^/[ [ :alnum:] ] +$ \
# Match all first level paths from / (Like /var, /root, etc...)
|| " ${ path_to_remove : ${# path_to_remove } -1 } " = "/" ] ]
# Match if the path finishes by /. Because it seems there is an empty variable
then
echo " Avoid deleting $path_to_remove . " >& 2
else
if [ -e " $path_to_remove " ]
then
sudo rm -R " $path_to_remove "
else
echo " $path_to_remove wasn't deleted because it doesn't exist. " >& 2
fi
fi
}
# Create a system user
#
# usage: ynh_system_user_create user_name [home_dir]
# | arg: user_name - Name of the system user that will be create
# | arg: home_dir - Path of the home dir for the user. Usually the final path of the app. If this argument is omitted, the user will be created without home
ynh_system_user_create ( ) {
if ! ynh_system_user_exists " $1 " # Check if the user exists on the system
then # If the user doesn't exist
if [ $# -ge 2 ] ; then # If a home dir is mentioned
user_home_dir = " -d $2 "
else
user_home_dir = "--no-create-home"
fi
sudo useradd $user_home_dir --system --user-group $1 --shell /usr/sbin/nologin || ynh_die " Unable to create $1 system account "
fi
}
# Delete a system user
#
# usage: ynh_system_user_delete user_name
# | arg: user_name - Name of the system user that will be create
ynh_system_user_delete ( ) {
if ynh_system_user_exists " $1 " # Check if the user exists on the system
then
echo " Remove the user $1 " >& 2
sudo userdel $1
else
echo " The user $1 was not found " >& 2
fi
2017-08-04 23:22:29 +02:00
}
# Remove a file or a directory securely
#
# usage: ynh_secure_remove path_to_remove
# | arg: path_to_remove - File or directory to remove
ynh_secure_remove ( ) {
path_to_remove = $1
forbidden_path = " \
/var/www \
/home/yunohost.app"
if [ [ " $forbidden_path " = ~ " $path_to_remove " \
# Match all paths or subpaths in $forbidden_path
|| " $path_to_remove " = ~ ^/[ [ :alnum:] ] +$ \
# Match all first level paths from / (Like /var, /root, etc...)
|| " ${ path_to_remove : ${# path_to_remove } -1 } " = "/" ] ]
# Match if the path finishes by /. Because it seems there is an empty variable
then
echo " Avoid deleting $path_to_remove . " >& 2
else
if [ -e " $path_to_remove " ]
then
sudo rm -R " $path_to_remove "
else
echo " $path_to_remove wasn't deleted because it doesn't exist. " >& 2
fi
fi
2017-04-26 19:01:53 +02:00
}