.fonctions 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. #!/bin/bash
  2. #=================================================
  3. # CHECKING
  4. #=================================================
  5. ynh_version="2.4"
  6. YNH_VERSION () { # Renvoi le numéro de version de la moulinette Yunohost
  7. ynh_version=$(sudo yunohost -v | grep "moulinette:" | cut -d' ' -f2 | cut -d'.' -f1,2)
  8. }
  9. CHECK_USER () { # Vérifie la validité de l'user admin
  10. # $1 = Variable de l'user admin.
  11. ynh_user_exists "$1" || ynh_die "Wrong user"
  12. }
  13. CHECK_DOMAINPATH () { # Vérifie la disponibilité du path et du domaine.
  14. sudo yunohost app checkurl $domain$path_url -a $app
  15. }
  16. CHECK_FINALPATH () { # Vérifie que le dossier de destination n'est pas déjà utilisé.
  17. final_path=/var/www/$app
  18. test ! -e "$final_path" || ynh_die "This path already contains a folder"
  19. }
  20. #=================================================
  21. # DISPLAYING
  22. #=================================================
  23. NO_PRINT () { # Supprime l'affichage dans stdout pour la commande en argument.
  24. set +x
  25. eval "$@"
  26. set -x
  27. }
  28. WARNING () { # Écrit sur le canal d'erreur pour passer en warning.
  29. eval "$@" >&2
  30. }
  31. SUPPRESS_WARNING () { # Force l'écriture sur la sortie standard
  32. eval "$@" 2>&1
  33. }
  34. QUIET () { # Redirige la sortie standard dans /dev/null
  35. eval "$@" > /dev/null
  36. }
  37. ALL_QUIET () { # Redirige la sortie standard et d'erreur dans /dev/null
  38. eval "$@" > /dev/null 2>&1
  39. }
  40. #=================================================
  41. # SETUP
  42. #=================================================
  43. SETUP_SOURCE () { # Télécharge la source, décompresse et copie dans $final_path
  44. src_url=$(cat ../conf/app.src | grep SOURCE_URL | cut -d= -f2)
  45. src_checksum=$(cat ../conf/app.src | grep SOURCE_SUM | cut -d= -f2)
  46. # Download sources from the upstream
  47. wget -nv -O source.zip $src_url
  48. # Vérifie la somme de contrôle de la source téléchargée.
  49. echo "$src_checksum source.zip" | md5sum -c --status || ynh_die "Corrupt source"
  50. # Extract source into the app dir
  51. sudo mkdir -p $final_path
  52. sudo mv source.zip $final_path/source.zip
  53. pushd $final_path
  54. sudo unzip source.zip
  55. sudo rm Install_PrestaShop.html index.php
  56. sudo unzip prestashop.zip
  57. sudo rm prestashop.zip
  58. }
  59. POOL_FPM () { # Créer le fichier de configuration du pool php-fpm et le configure.
  60. sed -i "s@__NAMETOCHANGE__@$app@g" ../conf/php-fpm.conf
  61. sed -i "s@__FINALPATH__@$final_path@g" ../conf/php-fpm.conf
  62. sed -i "s@__USER__@$app@g" ../conf/php-fpm.conf
  63. finalphpconf=/etc/php5/fpm/pool.d/$app.conf
  64. sudo cp ../conf/php-fpm.conf $finalphpconf
  65. sudo chown root: $finalphpconf
  66. finalphpini=/etc/php5/fpm/conf.d/20-$app.ini
  67. sudo cp ../conf/php-fpm.ini $finalphpini
  68. sudo chown root: $finalphpini
  69. sudo service php5-fpm reload
  70. }
  71. YNH_CURL () {
  72. data_post=$1
  73. url_access=$2
  74. sleep 1
  75. SUPPRESS_WARNING curl -kL -H \"Host: $domain\" --resolve $domain:443:127.0.0.1 --data \"$data_post\" \"https://localhost$path_url$url_access\"
  76. }
  77. #=================================================
  78. # REMOVE
  79. #=================================================
  80. REMOVE_NGINX_CONF () { # Suppression de la configuration nginx
  81. if [ -e "/etc/nginx/conf.d/$domain.d/$app.conf" ]; then # Delete nginx config
  82. echo "Delete nginx config"
  83. sudo rm "/etc/nginx/conf.d/$domain.d/$app.conf"
  84. sudo service nginx reload
  85. fi
  86. }
  87. REMOVE_FPM_CONF () { # Suppression de la configuration du pool php-fpm
  88. if [ -e "/etc/php5/fpm/pool.d/$app.conf" ]; then # Delete fpm config
  89. echo "Delete fpm config"
  90. sudo rm "/etc/php5/fpm/pool.d/$app.conf"
  91. fi
  92. if [ -e "/etc/php5/fpm/conf.d/20-$app.ini" ]; then # Delete php config
  93. echo "Delete php config"
  94. sudo rm "/etc/php5/fpm/conf.d/20-$app.ini"
  95. fi
  96. sudo service php5-fpm reload
  97. }
  98. SECURE_REMOVE () { # Suppression de dossier avec vérification des variables
  99. chaine="$1" # L'argument doit être donné entre quotes simple '', pour éviter d'interpréter les variables.
  100. no_var=0
  101. while (echo "$chaine" | grep -q '\$') # Boucle tant qu'il y a des $ dans la chaine
  102. do
  103. no_var=1
  104. global_var=$(echo "$chaine" | cut -d '$' -f 2) # Isole la première variable trouvée.
  105. only_var=\$$(expr "$global_var" : '\([A-Za-z0-9_]*\)') # Isole complètement la variable en ajoutant le $ au début et en gardant uniquement le nom de la variable. Se débarrasse surtout du / et d'un éventuel chemin derrière.
  106. real_var=$(eval "echo ${only_var}") # `eval "echo ${var}` permet d'interpréter une variable contenue dans une variable.
  107. if test -z "$real_var" || [ "$real_var" = "/" ]; then
  108. WARNING echo "Variable $only_var is empty, suppression of $chaine cancelled."
  109. return 1
  110. fi
  111. chaine=$(echo "$chaine" | sed "s@$only_var@$real_var@") # remplace la variable par sa valeur dans la chaine.
  112. done
  113. if [ "$no_var" -eq 1 ]
  114. then
  115. if [ -e "$chaine" ]; then
  116. echo "Delete directory $chaine"
  117. sudo rm -r "$chaine"
  118. fi
  119. return 0
  120. else
  121. WARNING echo "No detected variable."
  122. return 1
  123. fi
  124. }
  125. REMOVE_SYS_USER () { # Supprime l'utilisateur système dédié à l'app
  126. if ynh_system_user_exists "$app" # Test l'existence de l'utilisateur
  127. then
  128. sudo userdel $app
  129. fi
  130. }
  131. #=================================================
  132. # BACKUP
  133. #=================================================
  134. BACKUP_FAIL_UPGRADE () {
  135. WARNING echo "Upgrade failed."
  136. if ALL_QUIET sudo yunohost backup list | grep -q $app-before-upgrade$backup_number; then # Vérifie l'existence de l'archive avant de supprimer l'application et de restaurer
  137. sudo yunohost app remove $app # Supprime l'application avant de la restaurer.
  138. sudo yunohost backup restore --ignore-hooks $app-before-upgrade$backup_number --apps $app --force # Restore the backup if upgrade failed
  139. ynh_die "The app was restored to the way it was before the failed upgrade."
  140. fi
  141. }
  142. BACKUP_BEFORE_UPGRADE () { # Backup the current version of the app, restore it if the upgrade fails
  143. backup_number=1
  144. old_backup_number=2
  145. if ALL_QUIET sudo yunohost backup list | grep -q $app-before-upgrade1; then # Vérifie l'existence d'une archive déjà numéroté à 1.
  146. backup_number=2 # Et passe le numéro de l'archive à 2
  147. old_backup_number=1
  148. fi
  149. sudo yunohost backup create --ignore-hooks --apps $app --name $app-before-upgrade$backup_number # Créer un backup différent de celui existant.
  150. if [ "$?" -eq 0 ]; then # Si le backup est un succès, supprime l'archive précédente.
  151. if ALL_QUIET sudo yunohost backup list | grep -q $app-before-upgrade$old_backup_number; then # Vérifie l'existence de l'ancienne archive avant de la supprimer, pour éviter une erreur.
  152. QUIET sudo yunohost backup delete $app-before-upgrade$old_backup_number
  153. fi
  154. else # Si le backup a échoué
  155. ynh_die "Backup failed, the upgrade process was aborted."
  156. fi
  157. }
  158. #=================================================
  159. # CONFIGURATION
  160. #=================================================
  161. STORE_MD5_CONFIG () { # Enregistre la somme de contrôle du fichier de config
  162. # $1 = Nom du fichier de conf pour le stockage dans settings.yml
  163. # $2 = Nom complet et chemin du fichier de conf.
  164. ynh_app_setting_set $app $1_file_md5 $(sudo md5sum "$2" | cut -d' ' -f1)
  165. }
  166. CHECK_MD5_CONFIG () { # Créé un backup du fichier de config si il a été modifié.
  167. # $1 = Nom du fichier de conf pour le stockage dans settings.yml
  168. # $2 = Nom complet et chemin du fichier de conf.
  169. if [ "$(ynh_app_setting_get $app $1_file_md5)" != $(sudo md5sum "$2" | cut -d' ' -f1) ]; then
  170. sudo cp -a "$2" "$2.backup.$(date '+%d.%m.%y_%Hh%M,%Ss')" # Si le fichier de config a été modifié, créer un backup.
  171. fi
  172. }
  173. #=================================================
  174. #=================================================
  175. # FUTUR YNH HELPERS
  176. #=================================================
  177. # Importer ce fichier de fonction avant celui des helpers officiel
  178. # Ainsi, les officiels prendront le pas sur ceux-ci le cas échéant
  179. #=================================================
  180. # Ignore the yunohost-cli log to prevent errors with conditionals commands
  181. # usage: ynh_no_log COMMAND
  182. # Simply duplicate the log, execute the yunohost command and replace the log without the result of this command
  183. # It's a very badly hack...
  184. ynh_no_log() {
  185. ynh_cli_log=/var/log/yunohost/yunohost-cli.log
  186. sudo cp -a ${ynh_cli_log} ${ynh_cli_log}-move
  187. eval $@
  188. exit_code=$?
  189. sudo mv ${ynh_cli_log}-move ${ynh_cli_log}
  190. return $?
  191. }
  192. # Normalize the url path syntax
  193. # Handle the slash at the beginning of path and its absence at ending
  194. # Return a normalized url path
  195. #
  196. # example: url_path=$(ynh_normalize_url_path $url_path)
  197. # ynh_normalize_url_path example -> /example
  198. # ynh_normalize_url_path /example -> /example
  199. # ynh_normalize_url_path /example/ -> /example
  200. #
  201. # usage: ynh_normalize_url_path path_to_normalize
  202. # | arg: url_path_to_normalize - URL path to normalize before using it
  203. ynh_normalize_url_path () {
  204. path_url=$1
  205. test -n "$path_url" || ynh_die "ynh_normalize_url_path expect a URL path as first argument and received nothing."
  206. if [ "${path_url:0:1}" != "/" ]; then # If the first character is not a /
  207. path_url="/$path_url" # Add / at begin of path variable
  208. fi
  209. if [ "${path_url:${#path_url}-1}" == "/" ] && [ ${#path_url} -gt 1 ]; then # If the last character is a / and that not the only character.
  210. path_url="${path_url:0:${#path_url}-1}" # Delete the last character
  211. fi
  212. echo $path_url
  213. }
  214. # Create a database, an user and its password. Then store the password in the app's config
  215. #
  216. # User of database will be store in db_user's variable.
  217. # Name of database will be store in db_name's variable.
  218. # And password in db_pwd's variable.
  219. #
  220. # usage: ynh_mysql_generate_db user name
  221. # | arg: user - Owner of the database
  222. # | arg: name - Name of the database
  223. ynh_mysql_generate_db () {
  224. db_pwd=$(ynh_string_random) # Generate a random password
  225. ynh_mysql_create_db "$2" "$1" "$db_pwd" # Create the database
  226. ynh_app_setting_set $app mysqlpwd $db_pwd # Store the password in the app's config
  227. }
  228. # Remove a database if it exist and the associated user
  229. #
  230. # usage: ynh_mysql_remove_db user name
  231. # | arg: user - Proprietary of the database
  232. # | arg: name - Name of the database
  233. ynh_mysql_remove_db () {
  234. if mysqlshow -u root -p$(sudo cat $MYSQL_ROOT_PWD_FILE) | grep -q "^| $2"; then # Check if the database exist
  235. echo "Remove database $2" >&2
  236. ynh_mysql_drop_db $2 # Remove the database
  237. ynh_mysql_drop_user $1 # Remove the associated user to database
  238. else
  239. echo "Database $2 not found" >&2
  240. fi
  241. }
  242. # Correct the name given in argument for mariadb
  243. #
  244. # Avoid invalid name for your database
  245. #
  246. # Exemple: dbname=$(ynh_make_valid_dbid $app)
  247. #
  248. # usage: ynh_make_valid_dbid name
  249. # | arg: name - name to correct
  250. # | ret: the corrected name
  251. ynh_make_valid_dbid () {
  252. dbid=${1//[-.]/_} # Mariadb doesn't support - and . in the name of databases. It will be replace by _
  253. echo $dbid
  254. }
  255. # Manage a fail of the script
  256. #
  257. # Print a warning to inform that the script was failed
  258. # Execute the ynh_clean_setup function if used in the app script
  259. #
  260. # usage of ynh_clean_setup function
  261. # This function provide a way to clean some residual of installation that not managed by remove script.
  262. # To use it, simply add in your script:
  263. # ynh_clean_setup () {
  264. # instructions...
  265. # }
  266. # This function is optionnal.
  267. #
  268. # Usage: ynh_exit_properly is used only by the helper ynh_check_error.
  269. # You must not use it directly.
  270. ynh_exit_properly () {
  271. exit_code=$?
  272. if [ "$exit_code" -eq 0 ]; then
  273. exit 0 # Exit without error if the script ended correctly
  274. fi
  275. trap '' EXIT # Ignore new exit signals
  276. set +eu # Do not exit anymore if a command fail or if a variable is empty
  277. echo -e "!!\n $app's script has encountered an error. Its execution was cancelled.\n!!" >&2
  278. if type -t ynh_clean_setup > /dev/null; then # Check if the function exist in the app script.
  279. ynh_clean_setup # Call the function to do specific cleaning for the app.
  280. fi
  281. ynh_die # Exit with error status
  282. }
  283. # Exit if an error occurs during the execution of the script.
  284. #
  285. # Stop immediatly the execution if an error occured or if a empty variable is used.
  286. # The execution of the script is derivate to ynh_exit_properly function before exit.
  287. #
  288. # Usage: ynh_check_error
  289. ynh_check_error () {
  290. set -eu # Exit if a command fail, and if a variable is used unset.
  291. trap ynh_exit_properly EXIT # Capturing exit signals on shell script
  292. }
  293. # Install dependencies with a equivs control file
  294. #
  295. # usage: ynh_app_dependencies dep [dep [...]]
  296. # | arg: dep - the package name to install in dependence
  297. ynh_app_dependencies () {
  298. dependencies=$@
  299. manifest_path="../manifest.json"
  300. if [ ! -e "$manifest_path" ]; then
  301. manifest_path="../settings/manifest.json" # Into the restore script, the manifest is not at the same place
  302. fi
  303. version=$(sudo python3 -c "import sys, json;print(json.load(open(\"$manifest_path\"))['version'])") # Retrieve the version number in the manifest file.
  304. dep_app=${app//_/-} # Replace all '_' by '-'
  305. cat > ./${dep_app}-ynh-deps.control << EOF # Make a control file for equivs-build
  306. Section: misc
  307. Priority: optional
  308. Package: ${dep_app}-ynh-deps
  309. Version: ${version}
  310. Depends: ${dependencies}
  311. Architecture: all
  312. Description: Fake package for ${app} (YunoHost app) dependencies
  313. This meta-package is only responsible of installing its dependencies.
  314. EOF
  315. ynh_package_install_from_equivs ./${dep_app}-ynh-deps.control \
  316. || ynh_die "Unable to install dependencies" # Install the fake package and its dependencies
  317. }
  318. # Remove fake package and its dependencies
  319. #
  320. # Dependencies will removed only if no other package need them.
  321. #
  322. # usage: ynh_remove_app_dependencies
  323. ynh_remove_app_dependencies () {
  324. dep_app=${app/_/-} # Replace all '_' by '-'
  325. ynh_package_autoremove ${dep_app}-ynh-deps # Remove the fake package and its dependencies if they not still used.
  326. }
  327. # Use logrotate to manage the logfile
  328. #
  329. # usage: ynh_use_logrotate [logfile]
  330. # | arg: logfile - absolute path of logfile
  331. #
  332. # If no argument provided, a standard directory will be use. /var/log/${app}
  333. # You can provide a path with the directory only or with the logfile.
  334. # /parentdir/logdir/
  335. # /parentdir/logdir/logfile.log
  336. #
  337. # It's possible to use this helper several times, each config will added to same logrotate config file.
  338. ynh_use_logrotate () {
  339. if [ -n "$1" ]; then
  340. if [ "$(echo ${1##*.})" == "log" ]; then # Keep only the extension to check if it's a logfile
  341. logfile=$1 # In this case, focus logrotate on the logfile
  342. else
  343. logfile=$1/.log # Else, uses the directory and all logfile into it.
  344. fi
  345. else
  346. logfile="/var/log/${app}/.log" # Without argument, use a defaut directory in /var/log
  347. fi
  348. cat > ./${app}-logrotate << EOF # Build a config file for logrotate
  349. $logfile {
  350. # Rotate if the logfile exceeds 100Mo
  351. size 100M
  352. # Keep 12 old log maximum
  353. rotate 12
  354. # Compress the logs with gzip
  355. compress
  356. # Compress the log at the next cycle. So keep always 2 non compressed logs
  357. delaycompress
  358. # Copy and truncate the log to allow to continue write on it. Instead of move the log.
  359. copytruncate
  360. # Do not do an error if the log is missing
  361. missingok
  362. # Not rotate if the log is empty
  363. notifempty
  364. # Keep old logs in the same dir
  365. noolddir
  366. }
  367. EOF
  368. sudo mkdir -p $(dirname "$logfile") # Create the log directory, if not exist
  369. cat ${app}-logrotate | sudo tee -a /etc/logrotate.d/$app > /dev/null # Append this config to the others for this app. If a config file already exist
  370. }
  371. # Remove the app's logrotate config.
  372. #
  373. # usage: ynh_remove_logrotate
  374. ynh_remove_logrotate () {
  375. if [ -e "/etc/logrotate.d/$app" ]; then
  376. sudo rm "/etc/logrotate.d/$app"
  377. fi
  378. }
  379. # Find a free port and return it
  380. #
  381. # example: port=$(ynh_find_port 8080)
  382. #
  383. # usage: ynh_find_port begin_port
  384. # | arg: begin_port - port to start to search
  385. ynh_find_port () {
  386. port=$1
  387. test -n "$port" || ynh_die "The argument of ynh_find_port must be a valid port."
  388. while netcat -z 127.0.0.1 $port # Check if the port is free
  389. do
  390. port=$((port+1)) # Else, pass to next port
  391. done
  392. echo $port
  393. }