2016-06-15 23:56:45 +02:00
#!/bin/bash
2020-01-02 18:44:20 +01:00
#=================================================
# PERSONAL HELPERS
#=================================================
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
2017-12-16 23:22:54 +01:00
ynh_print_err " Espace insuffisant pour sauvegarder $file_to_analyse . "
ynh_print_err " Espace disponible: $( HUMAN_SIZE $free_space ) "
2017-03-19 19:16:10 +01:00
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
#=================================================
2018-07-13 17:33:54 +02:00
IS_PACKAGE_CHECK ( ) {
2020-01-02 18:44:20 +01:00
if [ ${ PACKAGE_CHECK_EXEC :- 0 } -eq 1 ]
then
return 0
else
return 1
fi
2018-09-30 11:52:12 +02:00
}
2017-03-21 00:44:14 +01:00
#=================================================
2019-01-13 19:10:28 +01:00
# FUTUR OFFICIAL HELPERS
2017-03-21 00:44:14 +01:00
#=================================================
2017-12-16 23:22:54 +01:00
# Install or update the main directory yunohost.multimedia
#
# usage: ynh_multimedia_build_main_dir
ynh_multimedia_build_main_dir ( ) {
2019-01-13 19:10:28 +01:00
local ynh_media_release = "v1.2"
local checksum = "806a827ba1902d6911095602a9221181"
2018-05-20 20:55:15 +02:00
2019-01-13 19:10:28 +01:00
# Download yunohost.multimedia scripts
2019-01-20 17:44:06 +01:00
wget -nv https://github.com/YunoHost-Apps/yunohost.multimedia/archive/${ ynh_media_release } .tar.gz
2018-05-20 20:55:15 +02:00
2019-01-13 19:10:28 +01:00
# Check the control sum
echo " ${ checksum } ${ ynh_media_release } .tar.gz " | md5sum -c --status \
|| ynh_die "Corrupt source"
2018-05-20 20:55:15 +02:00
2019-01-13 19:10:28 +01:00
# Check if the package acl is installed. Or install it.
ynh_package_is_installed 'acl' \
|| ynh_package_install acl
# Extract
mkdir yunohost.multimedia-master
tar -xf ${ ynh_media_release } .tar.gz -C yunohost.multimedia-master --strip-components 1
./yunohost.multimedia-master/script/ynh_media_build.sh
2017-12-16 23:22:54 +01:00
}
# Add a directory in yunohost.multimedia
# This "directory" will be a symbolic link to a existing directory.
#
# usage: ynh_multimedia_addfolder "Source directory" "Destination directory"
#
2018-07-13 17:33:54 +02:00
# | arg: -s, --source_dir= - Source directory - The real directory which contains your medias.
# | arg: -d, --dest_dir= - Destination directory - The name and the place of the symbolic link, relative to "/home/yunohost.multimedia"
2017-12-16 23:22:54 +01:00
ynh_multimedia_addfolder ( ) {
2018-07-13 17:33:54 +02:00
# Declare an array to define the options of this helper.
declare -Ar args_array = ( [ s] = source_dir = [ d] = dest_dir = )
local source_dir
local dest_dir
# Manage arguments with getopts
ynh_handle_getopts_args " $@ "
2017-12-16 23:22:54 +01:00
./yunohost.multimedia-master/script/ynh_media_addfolder.sh --source= " $source_dir " --dest= " $dest_dir "
}
# Move a directory in yunohost.multimedia, and replace by a symbolic link
#
# usage: ynh_multimedia_movefolder "Source directory" "Destination directory"
#
2018-07-13 17:33:54 +02:00
# | arg: -s, --source_dir= - Source directory - The real directory which contains your medias.
2017-12-16 23:22:54 +01:00
# It will be moved to "Destination directory"
# A symbolic link will replace it.
2018-07-13 17:33:54 +02:00
# | arg: -d, --dest_dir= - Destination directory - The new name and place of the directory, relative to "/home/yunohost.multimedia"
2017-12-16 23:22:54 +01:00
ynh_multimedia_movefolder ( ) {
2018-07-13 17:33:54 +02:00
# Declare an array to define the options of this helper.
declare -Ar args_array = ( [ s] = source_dir = [ d] = dest_dir = )
local source_dir
local dest_dir
# Manage arguments with getopts
ynh_handle_getopts_args " $@ "
2017-12-16 23:22:54 +01:00
./yunohost.multimedia-master/script/ynh_media_addfolder.sh --inv --source= " $source_dir " --dest= " $dest_dir "
}
# Allow an user to have an write authorisation in multimedia directories
#
# usage: ynh_multimedia_addaccess user_name
#
2018-07-13 17:33:54 +02:00
# | arg: -u, --user_name= - The name of the user which gain this access.
2017-12-16 23:22:54 +01:00
ynh_multimedia_addaccess ( ) {
2018-07-13 17:33:54 +02:00
# Declare an array to define the options of this helper.
declare -Ar args_array = ( [ u] = user_name = )
local user_name
# Manage arguments with getopts
ynh_handle_getopts_args " $@ "
2017-12-16 23:22:54 +01:00
groupadd -f multimedia
usermod -a -G multimedia $user_name
}
2019-01-30 19:58:36 +01:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
2017-12-16 23:22:54 +01:00
# Send an email to inform the administrator
#
2019-01-20 17:44:06 +01:00
# usage: ynh_send_readme_to_admin --app_message=app_message [--recipients=recipients] [--type=type]
2019-01-30 19:27:17 +01:00
# | arg: -m --app_message= - The file with the content to send to the administrator.
2018-07-13 17:33:54 +02:00
# | arg: -r, --recipients= - The recipients of this email. Use spaces to separate multiples recipients. - default: root
2017-12-16 23:22:54 +01:00
# 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"
2019-01-20 17:44:06 +01:00
# | arg: -t, --type= - Type of mail, could be 'backup', 'change_url', 'install', 'remove', 'restore', 'upgrade'
2017-12-16 23:22:54 +01:00
ynh_send_readme_to_admin( ) {
2018-07-13 17:33:54 +02:00
# Declare an array to define the options of this helper.
2019-01-20 17:44:06 +01:00
declare -Ar args_array = ( [ m] = app_message = [ r] = recipients = [ t] = type = )
2018-07-13 17:33:54 +02:00
local app_message
local recipients
2019-01-20 17:44:06 +01:00
local type
2018-07-13 17:33:54 +02:00
# Manage arguments with getopts
2019-01-30 19:27:17 +01:00
2018-07-13 17:33:54 +02:00
ynh_handle_getopts_args " $@ "
2019-01-30 19:27:17 +01:00
app_message = " ${ app_message :- } "
2019-01-20 17:44:06 +01:00
recipients = " ${ recipients :- root } "
type = " ${ type :- install } "
2017-12-16 23:22:54 +01:00
2019-01-30 19:27:17 +01:00
# Get the value of admin_mail_html
admin_mail_html = $( ynh_app_setting_get $app admin_mail_html)
admin_mail_html = " ${ admin_mail_html :- 0 } "
2017-12-16 23:22:54 +01:00
# 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 " )
2019-01-20 17:44:06 +01:00
# Subject base
local mail_subject = " ☁️🆈🅽🅷☁️: \` $app \` "
# Adapt the subject according to the type of mail required.
if [ " $type " = "backup" ] ; then
mail_subject = " $mail_subject has just been backup. "
elif [ " $type " = "change_url" ] ; then
mail_subject = " $mail_subject has just been moved to a new URL! "
elif [ " $type " = "remove" ] ; then
mail_subject = " $mail_subject has just been removed! "
elif [ " $type " = "restore" ] ; then
mail_subject = " $mail_subject has just been restored! "
elif [ " $type " = "upgrade" ] ; then
mail_subject = " $mail_subject has just been upgraded! "
else # install
mail_subject = " $mail_subject has just been installed! "
fi
2017-12-16 23:22:54 +01:00
local mail_message = " This is an automated message from your beloved YunoHost server.
2018-03-14 23:24:29 +01:00
Specific information for the application $app .
2017-12-16 23:22:54 +01:00
2019-01-30 19:27:17 +01:00
$( if [ -n " $app_message " ]
then
cat " $app_message "
else
echo "...No specific information..."
fi )
2017-12-16 23:22:54 +01:00
---
Automatic diagnosis data from YunoHost
2019-01-30 19:27:17 +01:00
__PRE_TAG1__$( yunohost tools diagnosis | grep -B 100 "services:" | sed '/services:/d' ) __PRE_TAG2__"
# Store the message into a file for further modifications.
echo " $mail_message " > mail_to_send
# If a html email is required. Apply html tags to the message.
if [ " $admin_mail_html " -eq 1 ]
then
# Insert 'br' tags at each ending of lines.
ynh_replace_string " $" "<br>" mail_to_send
# Insert starting HTML tags
sed --in-place '1s@^@<!DOCTYPE html>\n<html>\n<head></head>\n<body>\n@' mail_to_send
# Keep tabulations
ynh_replace_string " " "\ \ " mail_to_send
ynh_replace_string "\t" "\ \ " mail_to_send
# Insert url links tags
ynh_replace_string "__URL_TAG1__\(.*\)__URL_TAG2__\(.*\)__URL_TAG3__" "<a href=\"\2\">\1</a>" mail_to_send
# Insert pre tags
ynh_replace_string "__PRE_TAG1__" "<pre>" mail_to_send
ynh_replace_string "__PRE_TAG2__" "<\pre>" mail_to_send
# Insert finishing HTML tags
echo -e "\n</body>\n</html>" >> mail_to_send
# Otherwise, remove tags to keep a plain text.
else
# Remove URL tags
ynh_replace_string "__URL_TAG[1,3]__" "" mail_to_send
ynh_replace_string "__URL_TAG2__" ": " mail_to_send
# Remove PRE tags
ynh_replace_string "__PRE_TAG[1-2]__" "" mail_to_send
fi
2017-12-16 23:22:54 +01:00
2018-05-20 20:55:15 +02:00
# Define binary to use for mail command
if [ -e /usr/bin/bsd-mailx ]
then
local mail_bin = /usr/bin/bsd-mailx
else
local mail_bin = /usr/bin/mail.mailutils
fi
2019-01-30 19:27:17 +01:00
if [ " $admin_mail_html " -eq 1 ]
then
content_type = "text/html"
else
content_type = "text/plain"
fi
2017-12-16 23:22:54 +01:00
# Send the email to the recipients
2019-01-30 19:27:17 +01:00
cat mail_to_send | $mail_bin -a " Content-Type: $content_type ; charset=UTF-8 " -s " $mail_subject " " $recipients "
2017-12-16 23:22:54 +01:00
}
2017-12-05 19:36:40 +01:00
2018-03-14 23:24:29 +01:00
#=================================================
ynh_debian_release ( ) {
lsb_release --codename --short
}
is_stretch ( ) {
if [ " $( ynh_debian_release) " = = "stretch" ]
then
return 0
else
return 1
fi
}
is_jessie ( ) {
if [ " $( ynh_debian_release) " = = "jessie" ]
then
return 0
else
return 1
fi
}
2017-12-05 19:36:40 +01:00
#=================================================
2018-05-20 20:55:15 +02:00
ynh_maintenance_mode_ON ( ) {
2018-07-13 17:33:54 +02:00
# Load value of $path_url and $domain from the config if their not set
if [ -z $path_url ] ; then
path_url = $( ynh_app_setting_get $app path)
fi
if [ -z $domain ] ; then
domain = $( ynh_app_setting_get $app domain)
fi
2020-01-02 18:44:20 +01:00
mkdir -p /var/www/html/
2018-05-20 20:55:15 +02:00
# Create an html to serve as maintenance notice
echo " <!DOCTYPE html>
<html>
<head>
<meta http-equiv= "refresh" content = "3" >
<title>Your app $app is currently under maintenance!</title>
<style>
body {
width: 70em;
margin: 0 auto;
}
</style>
</head>
<body>
<h1>Your app $app is currently under maintenance!</h1>
<p>This app has been put under maintenance by your administrator at $( date) </p>
<p>Please wait until the maintenance operation is done . This page will be reloaded as soon as your app will be back.</p>
</body>
</html>" > " /var/www/html/maintenance.$app .html"
# Create a new nginx config file to redirect all access to the app to the maintenance notice instead.
echo " # All request to the app will be redirected to ${ path_url } _maintenance and fall on the maintenance notice
rewrite ^${ path_url } /( .*) $ ${ path_url } _maintenance/? redirect;
# Use another location, to not be in conflict with the original config file
location ${ path_url } _maintenance/ {
alias /var/www/html/ ;
try_files maintenance.$app .html = 503;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
} " > " /etc/nginx/conf.d/$domain .d/maintenance.$app .conf"
# The current config file will redirect all requests to the root of the app.
# To keep the full path, we can use the following rewrite rule:
# rewrite ^${path_url}/(.*)$ ${path_url}_maintenance/\$1? redirect;
# The difference will be in the $1 at the end, which keep the following queries.
# But, if it works perfectly for a html request, there's an issue with any php files.
# This files are treated as simple files, and will be downloaded by the browser.
# Would be really be nice to be able to fix that issue. So that, when the page is reloaded after the maintenance, the user will be redirected to the real page he was.
systemctl reload nginx
}
ynh_maintenance_mode_OFF ( ) {
2018-07-13 17:33:54 +02:00
# Load value of $path_url and $domain from the config if their not set
if [ -z $path_url ] ; then
path_url = $( ynh_app_setting_get $app path)
fi
if [ -z $domain ] ; then
domain = $( ynh_app_setting_get $app domain)
fi
2018-05-20 20:55:15 +02:00
# Rewrite the nginx config file to redirect from ${path_url}_maintenance to the real url of the app.
echo " rewrite ^ ${ path_url } _maintenance/(.*) $ ${ path_url } /\$1 redirect; " > " /etc/nginx/conf.d/ $domain .d/maintenance. $app .conf "
systemctl reload nginx
# Sleep 4 seconds to let the browser reload the pages and redirect the user to the app.
sleep 4
# Then remove the temporary files used for the maintenance.
rm " /var/www/html/maintenance. $app .html "
rm " /etc/nginx/conf.d/ $domain .d/maintenance. $app .conf "
systemctl reload nginx
}
2019-01-13 19:10:28 +01:00
#=================================================
2020-01-02 18:44:20 +01:00
# Create a changelog for an app after an upgrade from the file CHANGELOG.md.
2019-01-13 19:10:28 +01:00
#
2020-01-02 18:44:20 +01:00
# usage: ynh_app_changelog [--format=markdown/html/plain] [--output=changelog_file] --changelog=changelog_source]
# | arg: -f --format= - Format in which the changelog will be printed
# markdown: Default format.
# html: Turn urls into html format.
# plain: Plain text changelog
# | arg: -o --output= - Output file for the changelog file (Default ./changelog)
# | arg: -c --changelog= - CHANGELOG.md source (Default ../CHANGELOG.md)
2019-01-13 19:10:28 +01:00
#
2020-01-02 18:44:20 +01:00
# The changelog is printed into the file ./changelog and ./changelog_lite
ynh_app_changelog ( ) {
# Declare an array to define the options of this helper.
local legacy_args = foc
declare -Ar args_array = ( [ f] = format = [ o] = output = [ c] = changelog = )
local format
local output
local changelog
# Manage arguments with getopts
ynh_handle_getopts_args " $@ "
format = ${ format :- markdown }
output = ${ output :- changelog }
changelog = ${ changelog :- ../CHANGELOG.md }
local original_changelog = " $changelog "
local temp_changelog = "changelog_temp"
local final_changelog = " $output "
if [ ! -n " $original_changelog " ]
then
echo "No changelog available..." > " $final_changelog "
echo "No changelog available..." > " ${ final_changelog } _lite "
return 0
fi
local current_version = $( ynh_read_manifest --manifest= " /etc/yunohost/apps/ $YNH_APP_INSTANCE_NAME /manifest.json " --manifest_key= "version" )
local update_version = $( ynh_read_manifest --manifest= "../manifest.json" --manifest_key= "version" )
# Get the line of the version to update to into the changelog
local update_version_line = $( grep --max-count= 1 --line-number " ^## \[ $update_version " " $original_changelog " | cut -d':' -f1)
# If there's no entry for this version yet into the changelog
# Get the first available version
if [ -z " $update_version_line " ]
then
update_version_line = $( grep --max-count= 1 --line-number "^##" " $original_changelog " | cut -d':' -f1)
fi
# Get the length of the complete changelog.
local changelog_length = $( wc --lines " $original_changelog " | awk '{print $1}' )
# Cut the file before the version to update to.
tail --lines= $(( $changelog_length - $update_version_line + 1 )) " $original_changelog " > " $temp_changelog "
# Get the length of the troncated changelog.
changelog_length = $( wc --lines " $temp_changelog " | awk '{print $1}' )
# Get the line of the current version into the changelog
# Keep only the last line found
local current_version_line = $( grep --line-number " ^## \[ $current_version " " $temp_changelog " | cut -d':' -f1 | tail --lines= 1)
# If there's no entry for this version into the changelog
# Get the last available version
if [ -z " $current_version_line " ]
then
current_version_line = $( grep --line-number "^##" " $original_changelog " | cut -d':' -f1 | tail --lines= 1)
fi
# Cut the file before the current version.
# Then grep the previous version into the changelog to get the line number of the previous version
local previous_version_line = $( tail --lines= $(( $changelog_length - $current_version_line )) \
" $temp_changelog " | grep --max-count= 1 --line-number "^## " | cut -d':' -f1)
# If there's no previous version into the changelog
# Go until the end of the changelog
if [ -z " $previous_version_line " ]
then
previous_version_line = $changelog_length
fi
# Cut the file after the previous version to keep only the changelog between the current version and the version to update to.
head --lines= $(( $current_version_line + $previous_version_line - 1 )) " $temp_changelog " | tee " $final_changelog "
if [ " $format " = "html" ]
then
# Replace markdown links by html links
ynh_replace_string --match_string= "\[\(.*\)\](\(.*\)))" --replace_string= "<a href=\"\2\">\1</a>)" --target_file= " $final_changelog "
ynh_replace_string --match_string= "\[\(.*\)\](\(.*\))" --replace_string= "<a href=\"\2\">\1</a>" --target_file= " $final_changelog "
elif [ " $format " = "plain" ]
then
# Change title format.
ynh_replace_string --match_string= " ^##.*\[\(.*\)\](\(.*\)) - \(.*\) $" --replace_string= "## \1 (\3) - \2" --target_file= " $final_changelog "
# Change modifications lines format.
ynh_replace_string --match_string= "^\([-*]\).*\[\(.*\)\]\(.*\)" --replace_string= "\1 \2 \3" --target_file= " $final_changelog "
fi
# else markdown. As the file is already in markdown, nothing to do.
# Keep only important changes into the changelog
# Remove all minor changes
sed '/^-/d' " $final_changelog " > " ${ final_changelog } _lite "
# Remove all blank lines (to keep a clear workspace)
sed --in-place '/^$/d' " ${ final_changelog } _lite "
# Add a blank line at the end
echo "" >> " ${ final_changelog } _lite "
# Clean titles if there's no significative changes
local line
local previous_line = ""
while read line <& 3
do
if [ -n " $previous_line " ]
then
# Remove the line if it's a title or a blank line, and the previous one was a title as well.
if ( [ " ${ line : 0 : 1 } " = "#" ] || [ ${# line } -eq 0 ] ) && [ " ${ previous_line : 0 : 1 } " = "#" ]
then
ynh_replace_special_string --match_string= " ${ previous_line //[/. } " --replace_string= "" --target_file= " ${ final_changelog } _lite "
fi
fi
previous_line = " $line "
done 3< " ${ final_changelog } _lite "
# Remove all blank lines again
sed --in-place '/^$/d' " ${ final_changelog } _lite "
# Restore changelog format with blank lines
ynh_replace_string --match_string= "^##.*" --replace_string= "\n\n&\n" --target_file= " ${ final_changelog } _lite "
# Remove the 2 first blank lines
sed --in-place '1,2d' " ${ final_changelog } _lite "
# Add a blank line at the end
echo "" >> " ${ final_changelog } _lite "
# If changelog are empty, add an info
if [ $( wc --words " $final_changelog " | awk '{print $1}' ) -eq 0 ]
then
echo "No changes from the changelog..." > " $final_changelog "
fi
if [ $( wc --words " ${ final_changelog } _lite " | awk '{print $1}' ) -eq 0 ]
then
echo "No significative changes from the changelog..." > " ${ final_changelog } _lite "
fi
}
#=================================================
# Check the amount of available RAM
2019-01-13 19:10:28 +01:00
#
2020-01-02 18:44:20 +01:00
# usage: ynh_check_ram [--required=RAM required in Mb] [--no_swap|--only_swap] [--free_ram]
# | arg: -r, --required= - Amount of RAM required in Mb. The helper will return 0 is there's enough RAM, or 1 otherwise.
# If --required isn't set, the helper will print the amount of RAM, in Mb.
# | arg: -s, --no_swap - Ignore swap
# | arg: -o, --only_swap - Ignore real RAM, consider only swap.
# | arg: -f, --free_ram - Count only free RAM, not the total amount of RAM available.
ynh_check_ram ( ) {
2019-01-13 19:10:28 +01:00
# Declare an array to define the options of this helper.
2020-01-02 18:44:20 +01:00
declare -Ar args_array = ( [ r] = required = [ s] = no_swap [ o] = only_swap [ f] = free_ram )
local required
local no_swap
local only_swap
2019-01-13 19:10:28 +01:00
# Manage arguments with getopts
ynh_handle_getopts_args " $@ "
2020-01-02 18:44:20 +01:00
required = ${ required :- }
no_swap = ${ no_swap :- 0 }
only_swap = ${ only_swap :- 0 }
2019-01-13 19:10:28 +01:00
2020-01-02 18:44:20 +01:00
local total_ram = $( vmstat --stats --unit M | grep "total memory" | awk '{print $1}' )
local total_swap = $( vmstat --stats --unit M | grep "total swap" | awk '{print $1}' )
local total_ram_swap = $(( total_ram + total_swap ))
2019-01-13 19:10:28 +01:00
2020-01-02 18:44:20 +01:00
local free_ram = $( vmstat --stats --unit M | grep "free memory" | awk '{print $1}' )
local free_swap = $( vmstat --stats --unit M | grep "free swap" | awk '{print $1}' )
local free_ram_swap = $(( free_ram + free_swap ))
2019-01-13 19:10:28 +01:00
2020-01-02 18:44:20 +01:00
# Use the total amount of ram
local ram = $total_ram_swap
if [ $free_ram -eq 1 ]
then
# Use the total amount of free ram
ram = $free_ram_swap
if [ $no_swap -eq 1 ]
then
# Use only the amount of free ram
ram = $free_ram
elif [ $only_swap -eq 1 ]
then
# Use only the amount of free swap
ram = $free_swap
fi
else
if [ $no_swap -eq 1 ]
then
# Use only the amount of free ram
ram = $total_ram
elif [ $only_swap -eq 1 ]
then
# Use only the amount of free swap
ram = $total_swap
fi
2019-01-13 19:10:28 +01:00
fi
2020-01-02 18:44:20 +01:00
if [ -n " $required " ]
then
# Return 1 if the amount of ram isn't enough.
if [ $ram -lt $required ]
then
return 1
else
return 0
fi
2019-01-20 17:44:06 +01:00
2020-01-02 18:44:20 +01:00
# If no RAM is required, return the amount of available ram.
else
echo $ram
fi
2019-01-13 19:10:28 +01:00
}
2019-01-30 19:27:17 +01:00
#=================================================
2020-01-02 18:44:20 +01:00
# Define the values to configure php-fpm
2019-01-30 19:27:17 +01:00
#
2020-01-02 18:44:20 +01:00
# usage: ynh_get_scalable_phpfpm --usage=usage --footprint=footprint [--print]
# | arg: -f, --footprint - Memory footprint of the service (low/medium/high).
# low - Less than 20Mb of ram by pool.
# medium - Between 20Mb and 40Mb of ram by pool.
# high - More than 40Mb of ram by pool.
# Or specify exactly the footprint, the load of the service as Mb by pool instead of having a standard value.
# To have this value, use the following command and stress the service.
# watch -n0.5 ps -o user,cmd,%cpu,rss -u APP
2019-01-30 19:27:17 +01:00
#
2020-01-02 18:44:20 +01:00
# | arg: -u, --usage - Expected usage of the service (low/medium/high).
# low - Personal usage, behind the sso.
# medium - Low usage, few people or/and publicly accessible.
# high - High usage, frequently visited website.
2019-01-30 19:27:17 +01:00
#
2020-01-02 18:44:20 +01:00
# | arg: -p, --print - Print the result
2019-01-30 19:27:17 +01:00
#
2020-01-02 18:44:20 +01:00
#
#
# The footprint of the service will be used to defined the maximum footprint we can allow, which is half the maximum RAM.
# So it will be used to defined 'pm.max_children'
# A lower value for the footprint will allow more children for 'pm.max_children'. And so for
# 'pm.start_servers', 'pm.min_spare_servers' and 'pm.max_spare_servers' which are defined from the
# value of 'pm.max_children'
# NOTE: 'pm.max_children' can't exceed 4 times the number of processor's cores.
#
# The usage value will defined the way php will handle the children for the pool.
# A value set as 'low' will set the process manager to 'ondemand'. Children will start only if the
# service is used, otherwise no child will stay alive. This config gives the lower footprint when the
# service is idle. But will use more proc since it has to start a child as soon it's used.
# Set as 'medium', the process manager will be at dynamic. If the service is idle, a number of children
# equal to pm.min_spare_servers will stay alive. So the service can be quick to answer to any request.
# The number of children can grow if needed. The footprint can stay low if the service is idle, but
# not null. The impact on the proc is a little bit less than 'ondemand' as there's always a few
# children already available.
# Set as 'high', the process manager will be set at 'static'. There will be always as many children as
# 'pm.max_children', the footprint is important (but will be set as maximum a quarter of the maximum
# RAM) but the impact on the proc is lower. The service will be quick to answer as there's always many
# children ready to answer.
ynh_get_scalable_phpfpm ( ) {
local legacy_args = ufp
# Declare an array to define the options of this helper.
declare -Ar args_array = ( [ u] = usage = [ f] = footprint = [ p] = print )
local usage
local footprint
local print
# Manage arguments with getopts
ynh_handle_getopts_args " $@ "
# Set all characters as lowercase
footprint = ${ footprint ,, }
usage = ${ usage ,, }
print = ${ print :- 0 }
if [ " $footprint " = "low" ]
then
footprint = 20
elif [ " $footprint " = "medium" ]
then
footprint = 35
elif [ " $footprint " = "high" ]
then
footprint = 50
fi
# Define the way the process manager handle child processes.
if [ " $usage " = "low" ]
then
php_pm = ondemand
elif [ " $usage " = "medium" ]
then
php_pm = dynamic
elif [ " $usage " = "high" ]
then
php_pm = static
else
ynh_die --message= " Does not recognize ' $usage ' as an usage value. "
fi
# Get the total of RAM available, except swap.
local max_ram = $( ynh_check_ram --no_swap)
less0( ) {
# Do not allow value below 1
if [ $1 -le 0 ]
then
echo 1
else
echo $1
fi
}
# Define pm.max_children
# The value of pm.max_children is the total amount of ram divide by 2 and divide again by the footprint of a pool for this app.
# So if php-fpm start the maximum of children, it won't exceed half of the ram.
php_max_children = $(( $max_ram / 2 / $footprint ))
# If process manager is set as static, use half less children.
# Used as static, there's always as many children as the value of pm.max_children
if [ " $php_pm " = "static" ]
then
php_max_children = $(( $php_max_children / 2 ))
fi
php_max_children = $( less0 $php_max_children )
# To not overload the proc, limit the number of children to 4 times the number of cores.
local core_number = $( nproc)
local max_proc = $(( $core_number * 4 ))
if [ $php_max_children -gt $max_proc ]
then
php_max_children = $max_proc
fi
if [ " $php_pm " = "dynamic" ]
then
# Define pm.start_servers, pm.min_spare_servers and pm.max_spare_servers for a dynamic process manager
php_min_spare_servers = $(( $php_max_children / 8 ))
php_min_spare_servers = $( less0 $php_min_spare_servers )
php_max_spare_servers = $(( $php_max_children / 2 ))
php_max_spare_servers = $( less0 $php_max_spare_servers )
php_start_servers = $(( $php_min_spare_servers + ( $php_max_spare_servers - $php_min_spare_servers ) / 2 ))
php_start_servers = $( less0 $php_start_servers )
else
php_min_spare_servers = 0
php_max_spare_servers = 0
php_start_servers = 0
fi
if [ $print -eq 1 ]
then
ynh_debug --message= " Footprint= ${ footprint } Mb by pool. "
ynh_debug --message= " Process manager= $php_pm "
ynh_debug --message= " Max RAM= ${ max_ram } Mb "
if [ " $php_pm " != "static" ] ; then
ynh_debug --message= " \nMax estimated footprint= $(( $php_max_children * $footprint )) "
ynh_debug --message= " Min estimated footprint= $(( $php_min_spare_servers * $footprint )) "
fi
if [ " $php_pm " = "dynamic" ] ; then
ynh_debug --message= " Estimated average footprint= $(( $php_max_spare_servers * $footprint )) "
elif [ " $php_pm " = "static" ] ; then
ynh_debug --message= " Estimated footprint= $(( $php_max_children * $footprint )) "
fi
ynh_debug --message= "\nRaw php-fpm values:"
ynh_debug --message= " pm.max_children = $php_max_children "
if [ " $php_pm " = "dynamic" ] ; then
ynh_debug --message= " pm.start_servers = $php_start_servers "
ynh_debug --message= " pm.min_spare_servers = $php_min_spare_servers "
ynh_debug --message= " pm.max_spare_servers = $php_max_spare_servers "
fi
fi
}
2019-01-30 19:27:17 +01:00
2020-01-02 18:44:20 +01:00
#=================================================
2019-01-30 19:27:17 +01:00
2020-01-02 18:44:20 +01:00
# 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
sudo -u " $USER " " $@ "
fi
2019-01-30 19:27:17 +01:00
}