1
0

init.sh 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. #!/bin/bash
  2. #======================================
  3. # Author: ulyc
  4. #======================================
  5. set -eo pipefail
  6. red='\e[91m'
  7. green='\e[92m'
  8. yellow='\e[93m'
  9. magenta='\e[95m'
  10. cyan='\e[96m'
  11. none='\e[0m'
  12. _red() { echo -e "${red}$*${none}"; }
  13. _green() { echo -e "${green}$*${none}"; }
  14. _yellow() { echo -e "${yellow}$*${none}"; }
  15. _magenta() { echo -e "${magenta}$*${none}"; }
  16. _cyan() { echo -e "${cyan}$*${none}"; }
  17. domain_name="http://localhost"
  18. modules=""
  19. meta_module="meta.sr.ht"
  20. git_module="git.sr.ht"
  21. hg_module="hg.sr.ht"
  22. build_module="builds.sr.h"
  23. list_module="lists.sr.ht"
  24. man_module="man.sr.ht"
  25. paste_module="paste.sr.ht"
  26. todo_module="todo.sr.ht"
  27. function add_module() {
  28. read -r input
  29. echo
  30. if [[ "$input" -le 1 ]]; then
  31. modules=$modules" "$1
  32. echo -e "$yellow $1 is selected${none}"
  33. fi
  34. }
  35. function progress() {
  36. echo "$2 IS RUNNING..."
  37. printf "[▓"
  38. while kill -0 "$1" 2>/dev/null; do
  39. printf "▓"
  40. sleep 0.05
  41. done
  42. wait "$1"
  43. printf "▓] done!"
  44. }
  45. function generate_config() {
  46. service_key=$(grep <genkeys "Service" | awk -F: '{sub(/[[:blank:]]*/,"");print $2}')
  47. network_key=$(grep <genkeys "Network" | awk -F: '{sub(/[[:blank:]]*/,"");print $2}')
  48. webhook_key=$(grep <genkeys "Webhook Private" | awk -F: '{sub(/[[:blank:]]*/,"");print $2}')
  49. sed "s/{{SERVICE_KEY}}/$service_key/" ./template/config.ini.template >config.ini
  50. sed -i "s/{{NETWORK_KEY}}/$network_key/" config.ini
  51. sed -i "s/{{WEBHOOK_KEY}}/$webhook_key/" config.ini
  52. sed -i "s@{{DOMAIN}}@$domain_name@" config.ini
  53. }
  54. function generate_keys() {
  55. docker run sr.ht-base:dev sh -c 'srht-keygen service && srht-keygen network && srht-keygen webhook' | awk '{n[1]="Service";n[2]="Network";n[3]=n[4]="Webhook";print n[NR]" "$0 > "genkeys"}'
  56. }
  57. function build_base_image() {
  58. docker build -t sr.ht-base:dev ./base/ && echo
  59. }
  60. function generate_launch_shell() {
  61. m="$meta_module $1"
  62. m_count=$(echo "$m" | awk '{print NF}')
  63. echo "$m" | awk '{ gsub(/\./,"");for (i=1; i<=NF; i++) print "/usr/bin/gunicorn "$i ".app:app -b 0.0.0.0:500" i > "start.sh" }'
  64. sed "s/{{PORTS}}/5001-500$m_count:5001-500$m_count/" ./template/docker-compose.yml.template >docker-compose.yml
  65. }
  66. function select_version_control() {
  67. # Git or Mercurial or Both
  68. echo -e "Select your distributed version control system ${cyan}1.Git${none} or ${cyan}2.Mercurial${none} or ${cyan}3.Both${none}?"
  69. read -r version_control_system_input
  70. echo
  71. if [[ "$version_control_system_input" -le 1 ]]; then
  72. modules=$modules" "$git_module
  73. echo -e "$yellow $modules is selected${none}"
  74. elif [[ "$version_control_system_input" -le 2 ]]; then
  75. modules=$modules" "$hg_module
  76. echo -e "$yellow $modules is selected${none}"
  77. else
  78. modules=$modules' '$git_module' '$hg_module
  79. echo -e "$yellow $modules are selected${none}"
  80. fi
  81. }
  82. function advance_config() {
  83. # CI
  84. # builds.sr.ht
  85. echo -e "Do you want to use ${cyan} Sourcehut CI ${none}? ${cyan}1.Yes${none} or ${cyan}2.No${none}?"
  86. add_module "$build_module"
  87. echo -e "Do you want to use ${cyan}Mailing list service${none}? ${cyan}1.Yes${none} or ${cyan}2.No${none}?"
  88. add_module "$list_module"
  89. # wiki service
  90. # man.sr.ht
  91. echo -e "Do you want to use ${cyan}Wiki service${none}? ${cyan}1.Yes${none} or ${cyan}2.No${none}?"
  92. add_module "$man_module"
  93. # Syntax highlighting
  94. # paste.sr.ht
  95. echo -e "Do you want to use ${cyan}Syntax highlighting${none}? ${cyan}1.Yes${none} or ${cyan}2.No${none}?"
  96. add_module "$paste_module"
  97. # issue and bug tracker service
  98. # todo.sr.ht
  99. echo -e "Do you want to use ${cyan}issue and bug tracker service${none}? ${cyan}1.Yes${none} or ${cyan}2.No${none}?"
  100. add_module "$todo_module"
  101. }
  102. function select_mode() {
  103. min_mode="Minimal Installation(Install only required modules)"
  104. max_mod="Maximize Installation(Install all modules)"
  105. adv_mod="Advanced Mode(Choose your own personalized modules)"
  106. quit="Quit"
  107. mode=("$min_mode" "$max_mod" "$adv_mod" "$quit")
  108. PS3="Select the installation mode: "
  109. select item in "${mode[@]}"; do
  110. case $item in
  111. "$min_mode")
  112. echo "$item"
  113. select_version_control
  114. break
  115. ;;
  116. "$max_mod")
  117. echo "$item"
  118. modules=$modules"$git_module $hg_module $build_module $list_module $man_module $paste_module $todo_module"
  119. break
  120. ;;
  121. "$adv_mod")
  122. echo "$item"
  123. advance_config
  124. break
  125. ;;
  126. "$quit")
  127. exit
  128. ;;
  129. quit)
  130. break
  131. ;;
  132. *)
  133. echo "Invalid option $REPLY"
  134. ;;
  135. esac
  136. done
  137. }
  138. ## Start
  139. select_mode
  140. # Set Domain
  141. echo -e "Set your ${cyan} Domain name ${none} or ${cyan}s (skip)${none}?"
  142. read -r domain_input
  143. echo
  144. if [[ "$domain_input" == 's' ]] || [[ -z "$null" ]]; then
  145. echo -e "$yellow skip${none}"
  146. else
  147. domain_name=$domain_input
  148. fi
  149. echo
  150. echo
  151. generate_launch_shell "$modules" &
  152. progress $! "🤖 Generate Launch Shell"
  153. echo
  154. echo
  155. sed "s/{{MODULES}}/$modules/" ./template/Dockerfile.template >Dockerfile &
  156. progress $! "🐋 Generate Dockerfile"
  157. echo
  158. echo
  159. build_base_image &
  160. progress $! "🐋 Build Base Image"
  161. echo
  162. echo
  163. generate_keys &
  164. progress $! "🔒 Generate Keys"
  165. echo
  166. echo
  167. echo -e "$(<genkeys)"
  168. echo -e "${yellow}Distribute the webhook public key to anyone who would want to verify ${none}"
  169. echo -e "${yellow}webhook payloads from your service.${none}"
  170. echo -e "${yellow}you can see generated keys in the 'genkeys' file ${none}"
  171. echo
  172. echo
  173. generate_config
  174. progress $! "🔧 Generate Config"
  175. echo
  176. echo
  177. # TODO modules config
  178. # TODO Database secret