install.sh 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. #!/bin/bash
  2. if [ ! -n "$BASH" ]; then
  3. echo "Non-bash shell detected, fixing..."
  4. bash -c '. <('"$(command -v curl >/dev/null && echo 'curl -Ls' || echo 'wget -qO-')"' https://github.com/hikariatama/Hikka/master/install.sh) '"$*"
  5. exit $?
  6. fi
  7. # Modified version of https://stackoverflow.com/a/3330834/5509575
  8. sp='/-\|'
  9. spin() {
  10. printf '\b%.1s' "$sp"
  11. sp=${sp#?}${sp%???}
  12. }
  13. endspin() {
  14. printf '\r%s\n' "$@"
  15. }
  16. runin() {
  17. # Runs the arguments and spins once per line of stdout (tee'd to logfile), also piping stderr to logfile
  18. { "$@" 2>>../hikka-install.log || return $?; } | while read -r line; do
  19. spin
  20. printf "%s\n" "$line" >>../hikka-install.log
  21. done
  22. }
  23. runout() {
  24. # Runs the arguments and spins once per line of stdout (tee'd to logfile), also piping stderr to logfile
  25. { "$@" 2>>hikka-install.log || return $?; } | while read -r line; do
  26. spin
  27. printf "%s\n" "$line" >>hikka-install.log
  28. done
  29. }
  30. errorin() {
  31. endspin "$@"
  32. cat ../hikka-install.log
  33. }
  34. errorout() {
  35. endspin "$@"
  36. cat hikka-install.log
  37. }
  38. ##############################################################################
  39. clear
  40. clear
  41. # Adapted from https://github.com/Silejonu/bash_loading_animations/blob/main/bash_loading_animations.sh
  42. BLA_metro=('[ ]' '[= ]' '[== ]' '[=== ]' '[==== ]' '[===== ]' '[ ===== ]' '[ ======]' '[ =====]' '[ ====]' '[ ===]' '[ ==]' '[ =]' '[ ]' '[ ======]' '[ ===== ]' '[===== ]' '[==== ]' '[=== ]' '[== ]' '[= ]' '[ ]')
  43. BLA::play_loading_animation_loop() {
  44. while true ; do
  45. for frame in ${!BLA_metro[*]} ; do
  46. printf "\r%s" " ${BLA_metro[$frame]}"
  47. sleep "0.05"
  48. done
  49. done
  50. }
  51. BLA::start_loading_animation() {
  52. tput civis # Hide the terminal cursor
  53. BLA::play_loading_animation_loop &
  54. BLA_loading_animation_pid="${!}"
  55. }
  56. BLA::stop_loading_animation() {
  57. kill "${BLA_loading_animation_pid}" &> /dev/null
  58. printf "\r%s" " "
  59. printf "\n"
  60. tput cnorm # Restore the terminal cursor
  61. }
  62. printf "\n\e[1;35;47m \e[0m"
  63. printf "\n\e[1;35;47m █ █ █ █▄▀ █▄▀ ▄▀█ \e[0m"
  64. printf "\n\e[1;35;47m █▀█ █ █ █ █ █ █▀█ \e[0m"
  65. printf "\n\e[1;35;47m \e[0m"
  66. printf "\n\n\e[3;34;40m Installing...\e[0m\n\n"
  67. BLA::start_loading_animation
  68. ##############################################################################
  69. spin
  70. touch hikka-install.log
  71. if [ ! x"$SUDO_USER" = x"" ]; then
  72. chown "$SUDO_USER:" hikka-install.log
  73. fi
  74. if [ ! x"" = x"$DYNO" ] && ! command -v python >/dev/null; then
  75. # We are running in a heroku dyno without python, time to get ugly!
  76. runout git clone https://github.com/heroku/heroku-buildpack-python || {
  77. endspin "Bootstrap download failed!"
  78. BLA::stop_loading_animation
  79. exit 1
  80. }
  81. rm -rf .heroku .cache .profile.d requirements.txt runtime.txt .env
  82. mkdir .cache .env
  83. echo "python-3.9.6" >runtime.txt
  84. echo "pip" >requirements.txt
  85. STACK=heroku-18 runout bash heroku-buildpack-python/bin/compile /app /app/.cache /app/.env ||
  86. {
  87. endspin "Bootstrap install failed!"
  88. BLA::stop_loading_animation
  89. exit 1
  90. }
  91. rm -rf .cache
  92. export PATH="/app/.heroku/python/bin:$PATH" # Prefer the bootstrapped python, incl. pip, over the system one.
  93. fi
  94. if [ -d "Hikka/hikka" ]; then
  95. cd Hikka || {
  96. endspin "Error: Install git package and re-run installer"
  97. BLA::stop_loading_animation
  98. exit 6
  99. }
  100. DIR_CHANGED="yes"
  101. fi
  102. if [ -f ".setup_complete" ] || [ -d "hikka" -a ! x"" = x"$DYNO" ]; then
  103. # If hikka is already installed by this script, or its in Heroku and installed
  104. PYVER=""
  105. if echo "$OSTYPE" | grep -qE '^linux-gnu.*'; then
  106. PYVER="3"
  107. fi
  108. endspin "Existing installation detected"
  109. clear
  110. banner
  111. "python$PYVER" -m hikka "$@"
  112. BLA::stop_loading_animation
  113. exit $?
  114. elif [ "$DIR_CHANGED" = "yes" ]; then
  115. cd ..
  116. fi
  117. ##############################################################################
  118. echo "Installing..." >hikka-install.log
  119. if echo "$OSTYPE" | grep -qE '^linux-gnu.*' && [ -f '/etc/debian_version' ]; then
  120. PKGMGR="apt install -y"
  121. if [ ! "$(whoami)" = "root" ]; then
  122. # Relaunch as root, preserving arguments
  123. if command -v sudo >/dev/null; then
  124. endspin "Restarting as root..."
  125. echo "Relaunching" >>hikka-install.log
  126. sudo "$BASH" -c '. <('"$(command -v curl >/dev/null && echo 'curl -Ls' || echo 'wget -qO-')"' https://github.com/hikariatama/Hikka/master/install.sh) '"$*"
  127. BLA::stop_loading_animation
  128. exit $?
  129. else
  130. PKGMGR="true"
  131. fi
  132. else
  133. runout dpkg --configure -a
  134. runout apt update
  135. fi
  136. PYVER="3"
  137. elif echo "$OSTYPE" | grep -qE '^linux-gnu.*' && [ -f '/etc/arch-release' ]; then
  138. PKGMGR="pacman -Sy --noconfirm"
  139. if [ ! "$(whoami)" = "root" ]; then
  140. # Relaunch as root, preserving arguments
  141. if command -v sudo >/dev/null; then
  142. endspin "Restarting as root..."
  143. echo "Relaunching" >>hikka-install.log
  144. sudo "$BASH" -c '. <('"$(command -v curl >/dev/null && echo 'curl -Ls' || echo 'wget -qO-')"' https://github.com/hikariatama/Hikka/master/install.sh) '"$*"
  145. BLA::stop_loading_animation
  146. exit $?
  147. else
  148. PKGMGR="true"
  149. fi
  150. fi
  151. PYVER="3"
  152. elif echo "$OSTYPE" | grep -qE '^linux-android.*'; then
  153. runout apt update
  154. PKGMGR="apt install -y"
  155. PYVER=""
  156. elif echo "$OSTYPE" | grep -qE '^darwin.*'; then
  157. if ! command -v brew >/dev/null; then
  158. ruby <(curl -fsSk https://raw.github.com/mxcl/homebrew/go)
  159. fi
  160. PKGMGR="brew install"
  161. PYVER="3"
  162. else
  163. endspin "Unrecognised OS. Please follow https://t.me/hikka_talks"
  164. BLA::stop_loading_animation
  165. exit 1
  166. fi
  167. ##############################################################################
  168. runout $PKGMGR "python$PYVER" git || { # skipcq
  169. errorout "Core install failed."
  170. BLA::stop_loading_animation
  171. exit 2
  172. }
  173. if echo "$OSTYPE" | grep -qE '^linux-gnu.*'; then
  174. runout $PKGMGR "python$PYVER-dev" # skipcq
  175. runout $PKGMGR "python$PYVER-pip" # skipcq
  176. runout $PKGMGR python3 python3-pip git python3-dev libwebp-dev libz-dev libjpeg-dev libopenjp2-7 libtiff5 ffmpeg imamgemagick libffi-dev libcairo2 # skipcq
  177. elif echo "$OSTYPE" | grep -qE '^linux-android.*'; then
  178. runout $PKGMGR openssl libjpeg-turbo libwebp libffi libcairo build-essential libxslt libiconv # skipcq
  179. elif echo "$OSTYPE" | grep -qE '^darwin.*'; then
  180. runout $PKGMGR jpeg webp # skipcq
  181. fi
  182. runout $PKGMGR neofetch dialog # skipcq
  183. ##############################################################################
  184. SUDO_CMD=""
  185. if [ ! x"$SUDO_USER" = x"" ]; then
  186. if command -v sudo >/dev/null; then
  187. SUDO_CMD="sudo -u $SUDO_USER "
  188. fi
  189. fi
  190. # shellcheck disable=SC2086
  191. ${SUDO_CMD}rm -rf Hikka
  192. # shellcheck disable=SC2086
  193. runout ${SUDO_CMD}git clone https://github.com/hikariatama/Hikka/ || {
  194. errorout "Clone failed."
  195. BLA::stop_loading_animation
  196. exit 3
  197. }
  198. cd Hikka || {
  199. endspin "Error: Install git package and re-run installer"
  200. BLA::stop_loading_animation
  201. exit 7
  202. }
  203. # shellcheck disable=SC2086
  204. runin ${SUDO_CMD}"python$PYVER" -m pip install --upgrade pip setuptools wheel --user
  205. # shellcheck disable=SC2086
  206. runin ${SUDO_CMD}"python$PYVER" -m pip install -r requirements.txt --upgrade --user --no-warn-script-location --disable-pip-version-check || {
  207. errorin "Requirements failed!"
  208. BLA::stop_loading_animation
  209. exit 4
  210. }
  211. endspin "Installation successful. Launching setup interface..."
  212. rm -f ../hikka-install.log
  213. touch .setup_complete
  214. BLA::stop_loading_animation
  215. # shellcheck disable=SC2086,SC2015
  216. ${SUDO_CMD}"python$PYVER" -m hikka "$@" || {
  217. echo "Python scripts failed"
  218. exit 5
  219. }