update_bb.sh 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. #!/bin/bash
  2. # LinuxGSM update_bb.sh module
  3. # Author: Daniel Gibbs
  4. # Contributors: https://linuxgsm.com/contrib
  5. # Website: https://linuxgsm.com
  6. # Description: Handles updating of BrainBread servers.
  7. moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
  8. fn_update_dl() {
  9. # Download and extract files to serverfiles.
  10. fn_fetch_file "${remotebuildurl}" "" "" "" "${tmpdir}" "${remotebuildfilename}" "nochmodx" "norun" "force" "${remotebuildhash}"
  11. fn_dl_extract "${tmpdir}" "${remotebuildfilename}" "${serverfiles}"
  12. echo "${remotebuild}" > "${serverfiles}/build.txt"
  13. fn_clear_tmp
  14. }
  15. fn_update_localbuild() {
  16. # Gets local build info.
  17. fn_print_dots "Checking local build: ${remotelocation}"
  18. # Uses build file to get local build.
  19. localbuild=$(head -n 1 "${serverfiles}/build.txt" 2> /dev/null)
  20. if [ -z "${localbuild}" ]; then
  21. fn_print_error "Checking local build: ${remotelocation}: missing local build info"
  22. fn_script_log_error "Missing local build info"
  23. fn_script_log_error "Set localbuild to 0"
  24. localbuild="0"
  25. else
  26. fn_print_ok "Checking local build: ${remotelocation}"
  27. fn_script_log_pass "Checking local build"
  28. fi
  29. }
  30. fn_update_remotebuild() {
  31. # Gets remote build info.
  32. apiurl="https://api.github.com/repos/IronOak-Studios/BrainBread/releases/latest"
  33. remotebuildresponse=$(curl -s "${apiurl}")
  34. remotebuildfilename=$(echo "${remotebuildresponse}" | jq -r '.assets[] | select(.name | test("linuxserver\\.tar\\.gz$")) | .name' | head -n 1)
  35. remotebuildurl=$(echo "${remotebuildresponse}" | jq -r '.assets[] | select(.name | test("linuxserver\\.tar\\.gz$")) | .browser_download_url' | head -n 1)
  36. remotebuildhash=$(echo "${remotebuildresponse}" | jq -r '.assets[] | select(.name | test("linuxserver\\.tar\\.gz$")) | .digest' | sed 's/^sha256://g' | head -n 1)
  37. remotebuild=$(echo "${remotebuildresponse}" | jq -r '.tag_name')
  38. if [ -z "${remotebuildhash}" ] || [ "${remotebuildhash}" == "null" ]; then
  39. remotebuildhash="nohash"
  40. fi
  41. if [ "${firstcommandname}" != "INSTALL" ]; then
  42. fn_print_dots "Checking remote build: ${remotelocation}"
  43. # Checks if remotebuild variable has been set.
  44. if [ -z "${remotebuild}" ] || [ "${remotebuild}" == "null" ] || [ -z "${remotebuildurl}" ] || [ "${remotebuildurl}" == "null" ] || [ -z "${remotebuildfilename}" ] || [ "${remotebuildfilename}" == "null" ]; then
  45. fn_print_fail "Checking remote build: ${remotelocation}"
  46. fn_script_log_fail "Checking remote build"
  47. core_exit.sh
  48. else
  49. fn_print_ok "Checking remote build: ${remotelocation}"
  50. fn_script_log_pass "Checking remote build"
  51. fi
  52. else
  53. # Checks if remotebuild variable has been set.
  54. if [ -z "${remotebuild}" ] || [ "${remotebuild}" == "null" ] || [ -z "${remotebuildurl}" ] || [ "${remotebuildurl}" == "null" ] || [ -z "${remotebuildfilename}" ] || [ "${remotebuildfilename}" == "null" ]; then
  55. fn_print_failure "Unable to get remote build"
  56. fn_script_log_fail "Unable to get remote build"
  57. core_exit.sh
  58. fi
  59. fi
  60. }
  61. fn_update_compare() {
  62. fn_print_dots "Checking for update: ${remotelocation}"
  63. # Update has been found or force update.
  64. if [ "${localbuild}" != "${remotebuild}" ] || [ "${forceupdate}" == "1" ]; then
  65. # Create update lockfile.
  66. date '+%s' > "${lockdir:?}/update.lock"
  67. fn_print_ok_nl "Checking for update: ${remotelocation}"
  68. fn_print "\n"
  69. fn_print_nl "${bold}${underline}Update${default} available"
  70. fn_print_nl "* Local build: ${red}${localbuild}${default}"
  71. fn_print_nl "* Remote build: ${green}${remotebuild}${default}"
  72. if [ -n "${branch}" ]; then
  73. fn_print_nl "* Branch: ${branch}"
  74. fi
  75. if [ -f "${rootdir}/.dev-debug" ]; then
  76. fn_print_nl "Remote build info"
  77. fn_print_nl "* apiurl: ${apiurl}"
  78. fn_print_nl "* remotebuildfilename: ${remotebuildfilename}"
  79. fn_print_nl "* remotebuildurl: ${remotebuildurl}"
  80. fn_print_nl "* remotebuildhash: ${remotebuildhash}"
  81. fn_print_nl "* remotebuild: ${remotebuild}"
  82. fi
  83. fn_print "\n"
  84. fn_script_log_info "Update available"
  85. fn_script_log_info "Local build: ${localbuild}"
  86. fn_script_log_info "Remote build: ${remotebuild}"
  87. if [ -n "${branch}" ]; then
  88. fn_script_log_info "Branch: ${branch}"
  89. fi
  90. fn_script_log_info "${localbuild} > ${remotebuild}"
  91. if [ "${commandname}" == "UPDATE" ]; then
  92. date +%s > "${lockdir:?}/last-updated.lock"
  93. unset updateonstart
  94. check_status.sh
  95. # If server stopped.
  96. if [ "${status}" == "0" ]; then
  97. fn_update_dl
  98. if [ "${localbuild}" == "0" ]; then
  99. exitbypass=1
  100. command_start.sh
  101. fn_firstcommand_reset
  102. exitbypass=1
  103. fn_sleep_time_5
  104. command_stop.sh
  105. fn_firstcommand_reset
  106. fi
  107. # If server started.
  108. else
  109. fn_print_restart_warning
  110. exitbypass=1
  111. command_stop.sh
  112. fn_firstcommand_reset
  113. exitbypass=1
  114. fn_update_dl
  115. exitbypass=1
  116. command_start.sh
  117. fn_firstcommand_reset
  118. fi
  119. unset exitbypass
  120. alert="update"
  121. elif [ "${commandname}" == "CHECK-UPDATE" ]; then
  122. alert="check-update"
  123. fi
  124. alert.sh
  125. else
  126. fn_print_ok_nl "Checking for update: ${remotelocation}"
  127. fn_print "\n"
  128. fn_print_nl "${bold}${underline}No update${default} available"
  129. fn_print_nl "* Local build: ${green}${localbuild}${default}"
  130. fn_print_nl "* Remote build: ${green}${remotebuild}${default}"
  131. if [ -n "${branch}" ]; then
  132. fn_print_nl "* Branch: ${branch}"
  133. fi
  134. fn_print "\n"
  135. fn_script_log_info "No update available"
  136. fn_script_log_info "Local build: ${localbuild}"
  137. fn_script_log_info "Remote build: ${remotebuild}"
  138. if [ -n "${branch}" ]; then
  139. fn_script_log_info "Branch: ${branch}"
  140. fi
  141. if [ -f "${rootdir}/.dev-debug" ]; then
  142. fn_print_nl "Remote build info"
  143. fn_print_nl "* apiurl: ${apiurl}"
  144. fn_print_nl "* remotebuildfilename: ${remotebuildfilename}"
  145. fn_print_nl "* remotebuildurl: ${remotebuildurl}"
  146. fn_print_nl "* remotebuildhash: ${remotebuildhash}"
  147. fn_print_nl "* remotebuild: ${remotebuild}"
  148. fi
  149. fi
  150. }
  151. # The location where the builds are checked and downloaded.
  152. remotelocation="github.com"
  153. if [ "${firstcommandname}" == "INSTALL" ]; then
  154. fn_update_remotebuild
  155. fn_update_dl
  156. else
  157. # BrainBread requires both Steam app updates and GitHub package updates.
  158. update_steamcmd.sh
  159. fn_print_dots "Checking for update"
  160. fn_print_dots "Checking for update: ${remotelocation}"
  161. fn_script_log_info "Checking for update: ${remotelocation}"
  162. fn_update_localbuild
  163. fn_update_remotebuild
  164. fn_update_compare
  165. fi