freedombone-app-rocketchat 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. #!/bin/bash
  2. #
  3. # _____ _ _
  4. # | __|___ ___ ___ _| |___ _____| |_ ___ ___ ___
  5. # | __| _| -_| -_| . | . | | . | . | | -_|
  6. # |__| |_| |___|___|___|___|_|_|_|___|___|_|_|___|
  7. #
  8. # Freedom in the Cloud
  9. #
  10. # License
  11. # =======
  12. #
  13. # Copyright (C) 2018 Bob Mottram <bob@freedombone.net>
  14. #
  15. # This program is free software: you can redistribute it and/or modify
  16. # it under the terms of the GNU Affero General Public License as published by
  17. # the Free Software Foundation, either version 3 of the License, or
  18. # (at your option) any later version.
  19. #
  20. # This program is distributed in the hope that it will be useful,
  21. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. # GNU Affero General Public License for more details.
  24. #
  25. # You should have received a copy of the GNU Affero General Public License
  26. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  27. VARIANTS='full full-vim'
  28. IN_DEFAULT_INSTALL=0
  29. SHOW_ON_ABOUT=1
  30. NOT_ON_ARM=1
  31. ROCKETCHAT_DOMAIN_NAME=
  32. ROCKETCHAT_CODE=
  33. ROCKETCHAT_ONION_PORT=9722
  34. ROCKETCHAT_PORT_INTERNAL=3000
  35. rocketchat_variables=(ONION_ONLY
  36. ROCKETCHAT_DOMAIN_NAME
  37. ROCKETCHAT_CODE
  38. DDNS_PROVIDER
  39. MY_USERNAME)
  40. function logging_on_rocketchat {
  41. echo -n ''
  42. }
  43. function logging_off_rocketchat {
  44. echo -n ''
  45. }
  46. function remove_user_rocketchat {
  47. remove_username="$1"
  48. "${PROJECT_NAME}-pass" -u "$remove_username" --rmapp rocketchat
  49. }
  50. function add_user_rocketchat {
  51. new_username="$1"
  52. new_user_password="$2"
  53. "${PROJECT_NAME}-pass" -u "$new_username" -a rocketchat -p "$new_user_password"
  54. echo '0'
  55. }
  56. function install_interactive_rocketchat {
  57. if [ ! "$ONION_ONLY" ]; then
  58. ONION_ONLY='no'
  59. fi
  60. if [[ "$ONION_ONLY" != "no" ]]; then
  61. ROCKETCHAT_DOMAIN_NAME='rocketchat.local'
  62. write_config_param "ROCKETCHAT_DOMAIN_NAME" "$ROCKETCHAT_DOMAIN_NAME"
  63. else
  64. interactive_site_details "rocketchat" "ROCKETCHAT_DOMAIN_NAME" "ROCKETCHAT_CODE"
  65. fi
  66. APP_INSTALLED=1
  67. }
  68. function change_password_rocketchat {
  69. curr_username="$1"
  70. new_user_password="$2"
  71. read_config_param 'ROCKETCHAT_DOMAIN_NAME'
  72. "${PROJECT_NAME}-pass" -u "$curr_username" -a rocketchat -p "$new_user_password"
  73. }
  74. function reconfigure_rocketchat {
  75. # This is used if you need to switch identity. Dump old keys and generate new ones
  76. echo -n ''
  77. }
  78. function configure_interactive_rocketchat {
  79. W=(1 $"Option 1"
  80. 2 $"Option 2")
  81. while true
  82. do
  83. # shellcheck disable=SC2068
  84. selection=$(dialog --backtitle $"Freedombone Administrator Control Panel" --title $"rocketchat" --menu $"Choose an operation, or ESC for main menu:" 14 70 3 "${W[@]}" 3>&2 2>&1 1>&3)
  85. if [ ! "$selection" ]; then
  86. break
  87. fi
  88. case $selection in
  89. 1) # call some function for option 1
  90. ;;
  91. 2) # call some function for option 2
  92. ;;
  93. esac
  94. done
  95. }
  96. function upgrade_rocketchat {
  97. echo -n ''
  98. }
  99. function backup_local_rocketchat {
  100. ROCKETCHAT_DOMAIN_NAME='rocketchat'
  101. if grep -q "rocketchat domain" "$COMPLETION_FILE"; then
  102. ROCKETCHAT_DOMAIN_NAME=$(get_completion_param "rocketchat domain")
  103. fi
  104. source_directory=/var/snap/rocketchat-server
  105. suspend_site "${ROCKETCHAT_DOMAIN_NAME}"
  106. systemctl stop rocketchat
  107. dest_directory=rocketchat
  108. backup_directory_to_usb "$source_directory" $dest_directory
  109. restart_site
  110. systemctl start rocketchat
  111. }
  112. function restore_local_rocketchat {
  113. if ! grep -q "rocketchat domain" "$COMPLETION_FILE"; then
  114. return
  115. fi
  116. ROCKETCHAT_DOMAIN_NAME=$(get_completion_param "rocketchat domain")
  117. if [ ! "$ROCKETCHAT_DOMAIN_NAME" ]; then
  118. return
  119. fi
  120. suspend_site "${ROCKETCHAT_DOMAIN_NAME}"
  121. systemctl stop rocketchat
  122. temp_restore_dir=/root/temprocketchat
  123. rocketchat_dir=/var/snap/rocketchat-server
  124. restore_directory_from_usb $temp_restore_dir rocketchat
  125. if [ -d $temp_restore_dir ]; then
  126. if [ -d "$temp_restore_dir$rocketchat_dir" ]; then
  127. cp -rp "$temp_restore_dir$rocketchat_dir"/* "$rocketchat_dir"/
  128. else
  129. if [ ! -d "$rocketchat_dir" ]; then
  130. mkdir "$rocketchat_dir"
  131. fi
  132. cp -rp "$temp_restore_dir"/* "$rocketchat_dir"/
  133. fi
  134. rm -rf $temp_restore_dir
  135. fi
  136. systemctl start rocketchat
  137. restart_site
  138. }
  139. function backup_remote_rocketchat {
  140. ROCKETCHAT_DOMAIN_NAME='rocketchat'
  141. if grep -q "rocketchat domain" "$COMPLETION_FILE"; then
  142. ROCKETCHAT_DOMAIN_NAME=$(get_completion_param "rocketchat domain")
  143. fi
  144. source_directory=/var/snap/rocketchat-server
  145. suspend_site "${ROCKETCHAT_DOMAIN_NAME}"
  146. systemctl stop rocketchat
  147. dest_directory=rocketchat
  148. backup_directory_to_friend "$source_directory" $dest_directory
  149. systemctl start rocketchat
  150. restart_site
  151. }
  152. function restore_remote_rocketchat {
  153. if ! grep -q "rocketchat domain" "$COMPLETION_FILE"; then
  154. return
  155. fi
  156. ROCKETCHAT_DOMAIN_NAME=$(get_completion_param "rocketchat domain")
  157. if [ ! "$ROCKETCHAT_DOMAIN_NAME" ]; then
  158. return
  159. fi
  160. suspend_site "${ROCKETCHAT_DOMAIN_NAME}"
  161. systemctl stop rocketchat
  162. temp_restore_dir=/root/temprocketchat
  163. rocketchat_dir=/var/snap/rocketchat-server
  164. restore_directory_from_friend $temp_restore_dir rocketchat
  165. if [ -d $temp_restore_dir ]; then
  166. if [ -d "$temp_restore_dir$rocketchat_dir" ]; then
  167. cp -rp "$temp_restore_dir$rocketchat_dir"/* "$rocketchat_dir"/
  168. else
  169. if [ ! -d "$rocketchat_dir" ]; then
  170. mkdir "$rocketchat_dir"
  171. fi
  172. cp -rp $temp_restore_dir/* "$rocketchat_dir"/
  173. fi
  174. rm -rf $temp_restore_dir
  175. fi
  176. systemctl start rocketchat
  177. restart_site
  178. }
  179. function remove_rocketchat {
  180. nginx_dissite "$ROCKETCHAT_DOMAIN_NAME"
  181. remove_certs "$ROCKETCHAT_DOMAIN_NAME"
  182. remove_nodejs rocketchat
  183. if [ -d "/var/www/$ROCKETCHAT_DOMAIN_NAME" ]; then
  184. rm -rf "/var/www/$ROCKETCHAT_DOMAIN_NAME"
  185. fi
  186. if [ -f "/etc/nginx/sites-available/$ROCKETCHAT_DOMAIN_NAME" ]; then
  187. rm "/etc/nginx/sites-available/$ROCKETCHAT_DOMAIN_NAME"
  188. fi
  189. remove_onion_service rocketchat "${ROCKETCHAT_ONION_PORT}"
  190. if grep -q "rocketchat" /etc/crontab; then
  191. sed -i "/rocketchat/d" /etc/crontab
  192. fi
  193. remove_app rocketchat
  194. remove_completion_param install_rocketchat
  195. sed -i '/rocketchat/d' "$COMPLETION_FILE"
  196. remove_ddns_domain "$ROCKETCHAT_DOMAIN_NAME"
  197. remove_snap rocketchat-server
  198. }
  199. function install_rocketchat {
  200. install_snap rocketchat-server
  201. install_nodejs rocketchat
  202. if [ ! "$ROCKETCHAT_DOMAIN_NAME" ]; then
  203. echo $'No domain name was given'
  204. exit 3568356
  205. fi
  206. if [ -d "/var/www/$ROCKETCHAT_DOMAIN_NAME/htdocs" ]; then
  207. rm -rf "/var/www/$ROCKETCHAT_DOMAIN_NAME/htdocs"
  208. fi
  209. mkdir -p "/var/www/$ROCKETCHAT_DOMAIN_NAME/htdocs"
  210. chmod g+w "/var/www/$ROCKETCHAT_DOMAIN_NAME/htdocs"
  211. chown -R www-data:www-data "/var/www/$ROCKETCHAT_DOMAIN_NAME/htdocs"
  212. add_ddns_domain "$ROCKETCHAT_DOMAIN_NAME"
  213. ROCKETCHAT_ONION_HOSTNAME=$(add_onion_service rocketchat 80 "${ROCKETCHAT_ONION_PORT}")
  214. rocketchat_nginx_site=/etc/nginx/sites-available/$ROCKETCHAT_DOMAIN_NAME
  215. if [[ "$ONION_ONLY" == "no" ]]; then
  216. nginx_http_redirect "$ROCKETCHAT_DOMAIN_NAME" "index index.html"
  217. { echo 'server {';
  218. echo ' listen 443 ssl;';
  219. echo ' #listen [::]:443 ssl;';
  220. echo " server_name $ROCKETCHAT_DOMAIN_NAME;";
  221. echo ''; } >> "$rocketchat_nginx_site"
  222. nginx_compress "$ROCKETCHAT_DOMAIN_NAME"
  223. echo '' >> "$rocketchat_nginx_site"
  224. echo ' # Security' >> "$rocketchat_nginx_site"
  225. nginx_ssl "$ROCKETCHAT_DOMAIN_NAME"
  226. nginx_security_options "$ROCKETCHAT_DOMAIN_NAME"
  227. { echo ' add_header Strict-Transport-Security max-age=15768000;';
  228. echo '';
  229. echo ' # Logs';
  230. echo ' access_log /dev/null;';
  231. echo ' error_log /dev/null;';
  232. echo '';
  233. echo ' # Root';
  234. echo " root /var/www/$ROCKETCHAT_DOMAIN_NAME/htdocs;";
  235. echo '';
  236. echo ' index index.html;';
  237. echo ' # Location';
  238. echo ' location / {'; } >> "$rocketchat_nginx_site"
  239. nginx_limits "$ROCKETCHAT_DOMAIN_NAME" '15m'
  240. { echo " proxy_pass http://localhost:$ROCKETCHAT_PORT_INTERNAL;";
  241. echo ' proxy_http_version 1.1;';
  242. echo " proxy_set_header Upgrade \$http_upgrade;";
  243. echo " proxy_set_header Connection \"upgrade\";"
  244. echo " proxy_set_header Host \$http_host;"
  245. echo '';
  246. echo " proxy_set_header X-Real-IP \$remote_addr;";
  247. echo " proxy_set_header X-Forward-For \$proxy_add_x_forwarded_for;";
  248. echo ' proxy_set_header X-Forward-Proto http;';
  249. echo ' proxy_set_header X-Nginx-Proxy true;';
  250. echo '';
  251. echo ' proxy_redirect off;';
  252. echo ' }';
  253. echo '}'; } >> "$rocketchat_nginx_site"
  254. else
  255. echo -n '' > "$rocketchat_nginx_site"
  256. fi
  257. { echo 'server {';
  258. echo " listen 127.0.0.1:$ROCKETCHAT_ONION_PORT default_server;";
  259. echo " server_name $ROCKETCHAT_ONION_HOSTNAME;";
  260. echo ''; } >> "$rocketchat_nginx_site"
  261. nginx_compress "$ROCKETCHAT_DOMAIN_NAME"
  262. echo '' >> "$rocketchat_nginx_site"
  263. nginx_security_options "$ROCKETCHAT_DOMAIN_NAME"
  264. { echo '';
  265. echo ' # Logs';
  266. echo ' access_log /dev/null;';
  267. echo ' error_log /dev/null;';
  268. echo '';
  269. echo ' # Root';
  270. echo " root /var/www/$ROCKETCHAT_DOMAIN_NAME/htdocs;";
  271. echo '';
  272. echo ' index index.html;';
  273. echo ' # Location';
  274. echo ' location / {'; } >> "$rocketchat_nginx_site"
  275. nginx_limits "$ROCKETCHAT_DOMAIN_NAME" '15m'
  276. { echo " proxy_pass http://localhost:$ROCKETCHAT_PORT_INTERNAL;";
  277. echo ' proxy_http_version 1.1;';
  278. echo " proxy_set_header Upgrade \$http_upgrade;";
  279. echo " proxy_set_header Connection \"upgrade\";"
  280. echo " proxy_set_header Host \$http_host;"
  281. echo '';
  282. echo " proxy_set_header X-Real-IP \$remote_addr;";
  283. echo " proxy_set_header X-Forward-For \$proxy_add_x_forwarded_for;";
  284. echo ' proxy_set_header X-Forward-Proto http;';
  285. echo ' proxy_set_header X-Nginx-Proxy true;';
  286. echo '';
  287. echo ' proxy_redirect off;';
  288. echo ' }';
  289. echo '}'; } >> "$rocketchat_nginx_site"
  290. create_site_certificate "$ROCKETCHAT_DOMAIN_NAME" 'yes'
  291. nginx_ensite "$ROCKETCHAT_DOMAIN_NAME"
  292. systemctl restart nginx
  293. "${PROJECT_NAME}-pass" -u "$MY_USERNAME" -a rocketchat -p "$ROCKETCHAT_ADMIN_PASSWORD"
  294. set_completion_param "rocketchat domain" "$ROCKETCHAT_DOMAIN_NAME"
  295. APP_INSTALLED=1
  296. }
  297. # NOTE: deliberately there is no "exit 0"