2
0

upgrade 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. # Load common variables for all scripts.
  8. source _variables
  9. source _common.sh
  10. source /usr/share/yunohost/helpers
  11. #=================================================
  12. # LOAD SETTINGS
  13. #=================================================
  14. ynh_script_progression --message="Loading installation settings..." --weight=3
  15. app=$YNH_APP_INSTANCE_NAME
  16. final_path=$(ynh_app_setting_get --app=$app --key=final_path)
  17. frequency="$(ynh_app_setting_get --app=$app --key=frequency)"
  18. encrypt=$(ynh_app_setting_get --app=$app --key=encrypt)
  19. core_backup=$(ynh_app_setting_get --app=$app --key=core_backup)
  20. apps_backup=$(ynh_app_setting_get --app=$app --key=apps_backup)
  21. overwrite_cron=$(ynh_app_setting_get --app=$app --key=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="Ensuring 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=$app --key=encrypt --value=$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=$app --key=core_backup --value=$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=$app --key=apps_backup --value=$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=$app --key=overwrite_cron --value=$overwrite_cron
  54. fi
  55. admin_mail_html=$(ynh_app_setting_get --app=$app --key=admin_mail_html)
  56. # If admin_mail_html doesn't exist, create it
  57. if [ -z "$admin_mail_html" ]; then
  58. admin_mail_html=1
  59. ynh_app_setting_set --app=$app --key=admin_mail_html --value=$admin_mail_html
  60. fi
  61. #=================================================
  62. # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
  63. #=================================================
  64. ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=2
  65. # Backup the current version of the app
  66. ynh_backup_before_upgrade
  67. ynh_clean_setup () {
  68. # restore it if the upgrade fails
  69. ynh_restore_upgradebackup
  70. }
  71. # Exit if an error occurs during the execution of the script
  72. ynh_abort_if_errors
  73. #=================================================
  74. # STANDARD UPGRADE STEPS
  75. #=================================================
  76. # DOWNLOAD, CHECK AND UNPACK SOURCE
  77. #=================================================
  78. if [ "$upgrade_type" == "UPGRADE_APP" ]
  79. then
  80. ynh_script_progression --message="Upgrading source files..." --weight=2
  81. # Download, check integrity, uncompress and patch the source from app.src
  82. ynh_setup_source --dest_dir="$final_path"
  83. fi
  84. #=================================================
  85. # UPGRADE DEPENDENCIES
  86. #=================================================
  87. ynh_script_progression --message="Upgrading dependencies..." --weight=8
  88. ynh_install_app_dependencies $app_depencencies
  89. #=================================================
  90. # SPECIFIC UPGRADE
  91. #=================================================
  92. # UPDATE THE CRON FILE
  93. #=================================================
  94. ynh_script_progression --message="Updating the cron file..."
  95. # Overwrite the cron file only if it's allowed
  96. if [ $overwrite_cron -eq 1 ]
  97. then
  98. # Verify the checksum and backup the file if it's different
  99. ynh_backup_if_checksum_is_different --file="/etc/cron.d/$app"
  100. cp ../conf/cron /etc/cron.d/$app
  101. ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file=/etc/cron.d/$app
  102. ynh_replace_string --match_string="__APP__" --replace_string=$app --target_file=/etc/cron.d/$app
  103. if [ "$frequency" = "Daily" ]; then
  104. cron_freq="0 2 * * *"
  105. run_freq="every day"
  106. elif [ "$frequency" = "Each 3 days" ]; then
  107. cron_freq="0 2 */3 * *"
  108. run_freq="each 3 days"
  109. elif [ "$frequency" = "Weekly" ]; then
  110. cron_freq="0 2 * * 0"
  111. run_freq="once a week on sunday"
  112. elif [ "$frequency" = "Biweekly" ]; then
  113. cron_freq="0 2 * * 0/2"
  114. run_freq="one sunday out of two"
  115. else # Monthly
  116. cron_freq="0 2 1 * *"
  117. run_freq="once a month on the first sunday"
  118. fi
  119. ynh_replace_string --match_string="__FREQUENCY__" --replace_string="$cron_freq" --target_file=/etc/cron.d/$app
  120. # Recalculate and store the config file checksum into the app settings
  121. ynh_store_file_checksum --file="/etc/cron.d/$app"
  122. fi
  123. #=================================================
  124. # SETUP LOGROTATE
  125. #=================================================
  126. ynh_script_progression --message="Upgrading logrotate configuration..."
  127. # Use logrotate to manage app-specific logfile(s)
  128. ynh_use_logrotate --non-append
  129. #=================================================
  130. # GENERIC FINALIZATION
  131. #=================================================
  132. # SECURE FILES AND DIRECTORIES
  133. #=================================================
  134. # Set permissions on app files
  135. chown -R root: $final_path
  136. #=================================================
  137. # SEND A README FOR THE ADMIN
  138. #=================================================
  139. # Get main domain and buid the url of the admin panel of the app.
  140. admin_panel="https://$(grep portal_domain /etc/ssowat/conf.json | cut -d'"' -f4)/yunohost/admin/#/apps/$app"
  141. # Build the changelog
  142. ynh_app_changelog || true
  143. echo "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 __URL_TAG1__documentation__URL_TAG2__https://github.com/maniackcrudelis/archivist/blob/master/Configuration.md__URL_TAG3__ about the configuration of archivist for more information.
  146. You can configure this app easily by using the experimental __URL_TAG1__config-panel feature__URL_TAG2__$admin_panel/config-panel__URL_TAG3__.
  147. You can also find some specific actions for this app by using the experimental __URL_TAG1__action feature__URL_TAG2__$admin_panel/actions__URL_TAG3__.
  148. If you're facing an issue or want to improve this app, please open a new issue in this __URL_TAG1__project__URL_TAG2__https://github.com/YunoHost-Apps/archivist_ynh__URL_TAG3__.
  149. ---
  150. Changelog since your last upgrade:
  151. $(cat changelog)" > mail_to_send
  152. ynh_send_readme_to_admin --app_message="mail_to_send" --recipients="root" --type=upgrade
  153. #=================================================
  154. # END OF SCRIPT
  155. #=================================================
  156. ynh_script_progression --message="Upgrade of $app completed" --last