1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lutim_ynh.git synced 2024-09-03 19:36:24 +02:00
lutim_ynh/scripts/_common.sh

222 lines
7 KiB
Bash
Raw Normal View History

2016-06-15 23:56:45 +02:00
#!/bin/bash
2017-03-19 19:16:10 +01:00
#=================================================
# DISPLAYING
#=================================================
NO_PRINT () { # Supprime l'affichage dans stdout pour la commande en argument.
set +x
$@
set -x
2016-06-15 23:56:45 +02:00
}
2017-03-19 19:16:10 +01:00
WARNING () { # Écrit sur le canal d'erreur pour passer en warning.
$@ >&2
2016-06-15 23:56:45 +02:00
}
2017-03-19 19:16:10 +01:00
SUPPRESS_WARNING () { # Force l'écriture sur la sortie standard
$@ 2>&1
2016-06-15 23:56:45 +02:00
}
2017-03-19 19:16:10 +01:00
QUIET () { # Redirige la sortie standard dans /dev/null
$@ > /dev/null
2016-06-15 23:56:45 +02:00
}
2017-03-19 19:16:10 +01:00
ALL_QUIET () { # Redirige la sortie standard et d'erreur dans /dev/null
$@ > /dev/null 2>&1
2016-06-15 23:56:45 +02:00
}
2017-03-19 19:16:10 +01:00
#=================================================
# BACKUP
#=================================================
HUMAN_SIZE () { # Transforme une taille en Ko en une taille lisible pour un humain
human=$(numfmt --to=iec --from-unit=1K $1)
echo $human
}
CHECK_SIZE () { # Vérifie avant chaque backup que l'espace est suffisant
file_to_analyse=$1
2017-09-05 00:25:58 +02:00
backup_size=$(du --summarize "$file_to_analyse" | cut -f1)
free_space=$(df --output=avail "/home/yunohost.backup" | sed 1d)
2017-03-19 19:16:10 +01:00
if [ $free_space -le $backup_size ]
then
WARNING echo "Espace insuffisant pour sauvegarder $file_to_analyse."
WARNING echo "Espace disponible: $(HUMAN_SIZE $free_space)"
ynh_die "Espace nécessaire: $(HUMAN_SIZE $backup_size)"
fi
}
#=================================================
2017-05-24 16:48:26 +02:00
# PACKAGE CHECK BYPASSING...
2017-03-19 19:16:10 +01:00
#=================================================
2017-05-24 16:48:26 +02:00
IS_PACKAGE_CHECK () { # Détermine une exécution en conteneur (Non testé)
return $(uname -n | grep -c 'pchecker_lxc')
2017-03-19 19:16:10 +01:00
}
2017-03-21 00:44:14 +01:00
#=================================================
2017-05-24 16:48:26 +02:00
# NODEJS
2017-03-21 00:44:14 +01:00
#=================================================
2017-05-24 16:48:26 +02:00
# INFOS
2017-06-13 17:11:57 +02:00
# n (Node version management) utilise la variable PATH pour stocker le path de la version de node à utiliser.
2017-05-24 16:48:26 +02:00
# C'est ainsi qu'il change de version
2017-06-13 17:11:57 +02:00
# ynh_install_nodejs installe la version de nodejs demandée en argument, avec n
2017-05-24 16:48:26 +02:00
# ynh_use_nodejs active une version de nodejs dans le script courant
# 3 variables sont mises à disposition, et 2 sont stockées dans la config de l'app
# - nodejs_path: Le chemin absolu de cette version de node
2017-06-13 17:11:57 +02:00
# Utilisé pour des appels directs à node.
2017-05-24 16:48:26 +02:00
# - nodejs_version: Simplement le numéro de version de nodejs pour cette application
# - nodejs_use_version: Un alias pour charger une version de node dans le shell courant.
# Utilisé pour démarrer un service ou un script qui utilise node ou npm
# Dans ce cas, c'est $PATH qui contient le chemin de la version de node. Il doit être propagé sur les autres shell si nécessaire.
2017-06-13 17:11:57 +02:00
n_install_dir="/opt/node_n"
2017-09-05 00:25:58 +02:00
node_version_path="/opt/node_n/n/versions/node"
# N_PREFIX est le dossier de n, il doit être chargé dans les variables d'environnement pour n.
export N_PREFIX="$n_install_dir"
2017-05-24 16:48:26 +02:00
ynh_use_nodejs () {
nodejs_version=$(ynh_app_setting_get $app nodejs_version)
2017-09-05 00:25:58 +02:00
load_n_path="[[ :$PATH: == *\":$n_install_dir/bin:\"* ]] || PATH=\"$n_install_dir/bin:$PATH\"; N_PREFIX="$n_install_dir""
2017-06-13 17:11:57 +02:00
2017-09-05 00:25:58 +02:00
nodejs_use_version="$n_install_dir/bin/n -q $nodejs_version"
2017-05-24 16:48:26 +02:00
2017-06-13 17:11:57 +02:00
# "Load" a version of node
eval $load_n_path; $nodejs_use_version
# Get the absolute path of this version of node
nodejs_path="$(n bin $nodejs_version)"
# Make an alias for node use
ynh_node_exec="eval $load_n_path; n use $nodejs_version"
2017-05-24 16:48:26 +02:00
}
ynh_install_nodejs () {
2017-06-13 17:11:57 +02:00
# Use n, https://github.com/tj/n to manage the nodejs versions
2017-09-05 00:25:58 +02:00
nodejs_version="$1"
2017-06-13 17:11:57 +02:00
local n_install_script="https://git.io/n-install"
2017-05-24 16:48:26 +02:00
2017-06-13 17:11:57 +02:00
# Create $n_install_dir
2017-09-05 00:25:58 +02:00
mkdir -p "$n_install_dir"
2017-05-24 16:48:26 +02:00
2017-06-13 17:11:57 +02:00
# Load n path in PATH
2017-09-05 00:25:58 +02:00
CLEAR_PATH="$n_install_dir/bin:$PATH"
# Remove /usr/local/bin in PATH in case of node has already setup.
PATH=$(echo $CLEAR_PATH | sed 's@/usr/local/bin:@@')
# Move an existing node binary, to avoid to block n.
test -x /usr/bin/node && mv /usr/bin/node /usr/bin/node_n
test -x /usr/bin/npm && mv /usr/bin/npm /usr/bin/npm_n
2017-05-24 16:48:26 +02:00
2017-06-13 17:11:57 +02:00
# If n is not previously setup, install it
n --version > /dev/null 2>&1 || \
( echo "Installation of N - Node.js version management" >&2; \
2017-09-05 00:25:58 +02:00
curl -sL $n_install_script | N_PREFIX=$N_PREFIX bash -s -- -y - 2>&1 )
# Modify the default N_PREFIX in n script
ynh_replace_string "^N_PREFIX=\${N_PREFIX-.*}$" "N_PREFIX=\${N_PREFIX-$N_PREFIX}" "$n_install_dir/bin/n"
# Restore /usr/local/bin in PATH
PATH=$CLEAR_PATH
# And replace the old node binary.
test -x /usr/bin/node_n && mv /usr/bin/node_n /usr/bin/node
test -x /usr/bin/npm_n && mv /usr/bin/npm_n /usr/bin/npm
# Install the requested version of nodejs
n $nodejs_version
2017-05-24 16:48:26 +02:00
2017-09-05 00:25:58 +02:00
# Find the last "real" version for this major version of node.
real_nodejs_version=$(find $node_version_path/$nodejs_version* -maxdepth 0 | sort --version-sort | tail --lines=1)
real_nodejs_version=$(basename $real_nodejs_version)
2017-05-24 16:48:26 +02:00
2017-09-05 00:25:58 +02:00
# Create a symbolic link for this major version. If the file doesn't already exist
if [ ! -e "$node_version_path/$nodejs_version" ]
then
ln --symbolic --force --no-target-directory $node_version_path/$real_nodejs_version $node_version_path/$nodejs_version
fi
2017-05-24 16:48:26 +02:00
2017-06-13 17:11:57 +02:00
# Store the ID of this app and the version of node requested for it
2017-09-05 00:25:58 +02:00
echo "$YNH_APP_ID:$nodejs_version" | tee --append "$n_install_dir/ynh_app_version"
2017-05-24 16:48:26 +02:00
2017-06-13 17:11:57 +02:00
# Store nodejs_version into the config of this app
2017-05-24 16:48:26 +02:00
ynh_app_setting_set $app nodejs_version $nodejs_version
2017-09-05 00:25:58 +02:00
# Build the update script and set the cronjob
ynh_cron_upgrade_node
2017-05-24 16:48:26 +02:00
ynh_use_nodejs
}
ynh_remove_nodejs () {
2017-06-13 17:11:57 +02:00
ynh_use_nodejs
2017-05-24 16:48:26 +02:00
# Remove the line for this app
2017-09-05 00:25:58 +02:00
sed --in-place "/$YNH_APP_ID:$nodejs_version/d" "$n_install_dir/ynh_app_version"
2017-05-24 16:48:26 +02:00
# If none another app uses this version of nodejs, remove it.
2017-06-13 17:11:57 +02:00
if ! grep --quiet "$nodejs_version" "$n_install_dir/ynh_app_version"
2017-05-24 16:48:26 +02:00
then
2017-06-13 17:11:57 +02:00
n rm $nodejs_version
2017-05-24 16:48:26 +02:00
fi
2017-06-13 17:11:57 +02:00
# If none another app uses n, remove n
if [ ! -s "$n_install_dir/ynh_app_version" ]
2017-05-24 16:48:26 +02:00
then
2017-06-13 17:11:57 +02:00
ynh_secure_remove "$n_install_dir"
2017-09-05 00:25:58 +02:00
ynh_secure_remove "/usr/local/n"
sed --in-place "/N_PREFIX/d" /root/.bashrc
2017-03-19 19:16:10 +01:00
fi
}
2017-09-05 00:25:58 +02:00
ynh_cron_upgrade_node () {
# Build the update script
cat > "$n_install_dir/node_update.sh" << EOF
#!/bin/bash
2017-03-19 19:16:10 +01:00
2017-09-05 00:25:58 +02:00
version_path="$node_version_path"
n_install_dir="$n_install_dir"
2017-03-19 19:16:10 +01:00
2017-09-05 00:25:58 +02:00
# Log the date
date
2017-03-19 19:16:10 +01:00
2017-09-05 00:25:58 +02:00
# List all real installed version of node
all_real_version="\$(find \$version_path/* -maxdepth 0 -type d | sed "s@\$version_path/@@g")"
2017-03-19 19:16:10 +01:00
2017-09-05 00:25:58 +02:00
# Keep only the major version number of each line
all_real_version=\$(echo "\$all_real_version" | sed 's/\..*\$//')
2017-03-19 19:16:10 +01:00
2017-09-05 00:25:58 +02:00
# Remove double entries
all_real_version=\$(echo "\$all_real_version" | sort --unique)
2017-03-19 19:16:10 +01:00
2017-09-05 00:25:58 +02:00
# Read each major version
while read version
do
echo "Update of the version \$version"
sudo \$n_install_dir/bin/n \$version
2017-03-19 19:16:10 +01:00
2017-09-05 00:25:58 +02:00
# Find the last "real" version for this major version of node.
real_nodejs_version=\$(find \$version_path/\$version* -maxdepth 0 | sort --version-sort | tail --lines=1)
real_nodejs_version=\$(basename \$real_nodejs_version)
2017-03-19 19:16:10 +01:00
2017-09-05 00:25:58 +02:00
# Update the symbolic link for this version
sudo ln --symbolic --force --no-target-directory \$version_path/\$real_nodejs_version \$version_path/\$version
done <<< "\$(echo "\$all_real_version")"
2017-03-19 19:16:10 +01:00
EOF
2016-11-08 13:08:16 +01:00
2017-09-05 00:25:58 +02:00
chmod +x "$n_install_dir/node_update.sh"
2017-03-19 19:16:10 +01:00
2017-09-05 00:25:58 +02:00
# Build the cronjob
cat > "/etc/cron.daily/node_update" << EOF
#!/bin/bash
2017-05-24 16:48:26 +02:00
2017-09-05 00:25:58 +02:00
$n_install_dir/node_update.sh >> $n_install_dir/node_update.log
EOF
2017-05-24 16:48:26 +02:00
2017-09-05 00:25:58 +02:00
chmod +x "/etc/cron.daily/node_update"
2017-05-24 16:48:26 +02:00
}