.fonctions 14 KB

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