upgrade 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source _common.sh
  8. source /usr/share/yunohost/helpers
  9. # Load common variables for all scripts.
  10. source _variables
  11. #=================================================
  12. # LOAD SETTINGS
  13. #=================================================
  14. ynh_script_progression --message="Load settings" --weight=3
  15. app=$YNH_APP_INSTANCE_NAME
  16. final_path=$(ynh_app_setting_get $app final_path)
  17. frequency="$(ynh_app_setting_get $app frequency)"
  18. encrypt=$(ynh_app_setting_get $app encrypt)
  19. core_backup=$(ynh_app_setting_get $app core_backup)
  20. apps_backup=$(ynh_app_setting_get $app apps_backup)
  21. overwrite_cron=$(ynh_app_setting_get $app overwrite_cron)
  22. #=================================================
  23. # CHECK VERSION
  24. #=================================================
  25. upgrade_type=$(ynh_check_app_version_changed)
  26. #=================================================
  27. # ENSURE DOWNWARD COMPATIBILITY
  28. #=================================================
  29. ynh_script_progression --message="Ensure downward compatibility"
  30. # If encrypt doesn't exist, create it
  31. if [ -z "$encrypt" ]; then
  32. encrypt="$(grep "^encrypt=" "$final_path/Backup_list.conf" | cut -d= -f2)"
  33. if [ "$encrypt" = true ]; then
  34. encrypt=1
  35. else
  36. encrypt=0
  37. fi
  38. ynh_app_setting_set $app encrypt $encrypt
  39. fi
  40. # If core_backup doesn't exist, create it
  41. if [ -z "$core_backup" ]; then
  42. core_backup="$(grep "^ynh_core_backup=" "$final_path/Backup_list.conf" | cut -d= -f2)"
  43. ynh_app_setting_set $app core_backup $core_backup
  44. fi
  45. # If apps_backup doesn't exist, create it
  46. if [ -z "$apps_backup" ]; then
  47. apps_backup="$(grep --count --max-count=1 "^ynh_app_backup=" "$final_path/Backup_list.conf")"
  48. ynh_app_setting_set $app apps_backup $apps_backup
  49. fi
  50. # If overwrite_cron doesn't exist, create it
  51. if [ -z "$overwrite_cron" ]; then
  52. overwrite_cron=1
  53. ynh_app_setting_set $app overwrite_cron $overwrite_cron
  54. fi
  55. #=================================================
  56. # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
  57. #=================================================
  58. ynh_script_progression --message="Backup the app before upgrading" --weight=2
  59. # Backup the current version of the app
  60. ynh_backup_before_upgrade
  61. ynh_clean_setup () {
  62. # restore it if the upgrade fails
  63. ynh_restore_upgradebackup
  64. }
  65. # Exit if an error occurs during the execution of the script
  66. ynh_abort_if_errors
  67. #=================================================
  68. # STANDARD UPGRADE STEPS
  69. #=================================================
  70. # DOWNLOAD, CHECK AND UNPACK SOURCE
  71. #=================================================
  72. if [ "$upgrade_type" == "UPGRADE_APP" ]
  73. then
  74. ynh_script_progression --message="Download, check and unpack source" --weight=2
  75. # Download, check integrity, uncompress and patch the source from app.src
  76. ynh_setup_source "$final_path"
  77. fi
  78. #=================================================
  79. # UPGRADE DEPENDENCIES
  80. #=================================================
  81. ynh_script_progression --message="Upgrade dependencies" --weight=8
  82. ynh_install_app_dependencies $app_depencencies
  83. #=================================================
  84. # SPECIFIC UPGRADE
  85. #=================================================
  86. # STRETCH COMPATIBILITY
  87. #=================================================
  88. if is_stretch
  89. then
  90. ynh_replace_string "yunohost backup create --ignore-apps" "yunohost backup create" "$final_path/archivist.sh"
  91. ynh_replace_string "yunohost backup create --ignore-system" "yunohost backup create" "$final_path/archivist.sh"
  92. fi
  93. #=================================================
  94. # UPDATE THE CRON FILE
  95. #=================================================
  96. ynh_script_progression --message="Update the cron file"
  97. # Overwrite the cron file only if it's allowed
  98. if [ $overwrite_cron -eq 1 ]
  99. then
  100. # Verify the checksum and backup the file if it's different
  101. ynh_backup_if_checksum_is_different "/etc/cron.d/$app"
  102. cp ../conf/cron /etc/cron.d/$app
  103. ynh_replace_string "__FINALPATH__" "$final_path" /etc/cron.d/$app
  104. ynh_replace_string "__APP__" "$app" /etc/cron.d/$app
  105. if [ "$frequency" = "Daily" ]; then
  106. cron_freq="0 2 * * *"
  107. run_freq="every day"
  108. elif [ "$frequency" = "Each 3 days" ]; then
  109. cron_freq="0 2 */3 * *"
  110. run_freq="each 3 days"
  111. elif [ "$frequency" = "Weekly" ]; then
  112. cron_freq="0 2 * * 0"
  113. run_freq="once a week on sunday"
  114. elif [ "$frequency" = "Biweekly" ]; then
  115. cron_freq="0 2 * * 0/2"
  116. run_freq="one sunday out of two"
  117. else # Monthly
  118. cron_freq="0 2 1 * *"
  119. run_freq="once a month on the first sunday"
  120. fi
  121. ynh_replace_string "__FREQUENCY__" "$cron_freq" /etc/cron.d/$app
  122. # Recalculate and store the config file checksum into the app settings
  123. ynh_store_file_checksum "/etc/cron.d/$app"
  124. fi
  125. #=================================================
  126. # SETUP LOGROTATE
  127. #=================================================
  128. ynh_script_progression --message="Reconfigure logrotate"
  129. # Use logrotate to manage app-specific logfile(s)
  130. ynh_use_logrotate --non-append
  131. #=================================================
  132. # GENERIC FINALIZATION
  133. #=================================================
  134. # SECURE FILES AND DIRECTORIES
  135. #=================================================
  136. # Set permissions on app files
  137. chown -R root: $final_path
  138. #=================================================
  139. # SEND A README FOR THE ADMIN
  140. #=================================================
  141. # Get main domain and buid the url of the admin panel of the app.
  142. admin_panel="https://$(grep portal_domain /etc/ssowat/conf.json | cut -d'"' -f4)/yunohost/admin/#/apps/$app"
  143. message="Archivist is going to run $run_freq.
  144. If you want to change the frequency, have a look to the file /etc/cron.d/$app.
  145. Please read the documentation (https://github.com/maniackcrudelis/archivist/blob/master/Configuration.md) about the configuration of archivist for more information.
  146. You can configure this app easily by using the experimental config-panel feature: $admin_panel/config-panel.
  147. You can also find some specific actions for this app by using the experimental action feature: $admin_panel/actions.
  148. If you're facing an issue or want to improve this app, please open a new issue in this project: https://github.com/YunoHost-Apps/archivist_ynh"
  149. ynh_send_readme_to_admin --app_message="$message" --recipients="root" --type="upgrade"
  150. #=================================================
  151. # END OF SCRIPT
  152. #=================================================
  153. ynh_script_progression --message="Upgrade completed" --last