freedombone-app-scuttlebot 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # scuttlebot pub application. Enables nat traversal for SSB.
  12. # https://scuttlebot.io
  13. #
  14. # License
  15. # =======
  16. #
  17. # Copyright (C) 2017 Bob Mottram <bob@freedombone.net>
  18. #
  19. # This program is free software: you can redistribute it and/or modify
  20. # it under the terms of the GNU Affero General Public License as published by
  21. # the Free Software Foundation, either version 3 of the License, or
  22. # (at your option) any later version.
  23. #
  24. # This program is distributed in the hope that it will be useful,
  25. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  27. # GNU Affero General Public License for more details.
  28. #
  29. # You should have received a copy of the GNU Affero General Public License
  30. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  31. VARIANTS='full full-vim social'
  32. IN_DEFAULT_INSTALL=0
  33. SHOW_ON_ABOUT=0
  34. SHOW_ICANN_ADDRESS_ON_ABOUT=0
  35. SCUTTLEBOT_DOMAIN_NAME=
  36. SCUTTLEBOT_CODE=
  37. SCUTTLEBOT_VERSION='10.4.6'
  38. SCUTTLEBOT_PORT=8010
  39. SCUTTLEBOT_ONION_PORT=8623
  40. GIT_SSB_PORT=7718
  41. NGINX_GIT_SSB_PORT=7719
  42. scuttlebot_variables=(MY_USERNAME
  43. DEFAULT_DOMAIN_NAME
  44. SYSTEM_TYPE)
  45. function logging_on_scuttlebot {
  46. echo -n ''
  47. }
  48. function logging_off_scuttlebot {
  49. echo -n ''
  50. }
  51. function scuttlebot_create_invite {
  52. invite_string=$(su -c "sbot invite.create 1" - scuttlebot | sed 's/"//g')
  53. clear
  54. echo -e '\n\nYour Scuttlebot invite code is:\n\n'${invite_string}'\n\n'
  55. read -n1 -r -p $"Press any key to continue..." key
  56. }
  57. function configure_interactive_scuttlebot {
  58. while true
  59. do
  60. data=$(tempfile 2>/dev/null)
  61. trap "rm -f $data" 0 1 2 5 15
  62. dialog --backtitle $"Freedombone Control Panel" \
  63. --title $"Scuttlebot" \
  64. --radiolist $"Choose an operation:" 10 50 2 \
  65. 1 $"Create an invite" off \
  66. 2 $"Exit" on 2> $data
  67. sel=$?
  68. case $sel in
  69. 1) return;;
  70. 255) return;;
  71. esac
  72. case $(cat $data) in
  73. 1) scuttlebot_create_invite;;
  74. 2) break;;
  75. esac
  76. done
  77. }
  78. function remove_user_scuttlebot {
  79. remove_username="$1"
  80. }
  81. function add_user_scuttlebot {
  82. new_username="$1"
  83. new_user_password="$2"
  84. echo '0'
  85. }
  86. function install_interactive_scuttlebot {
  87. if [[ $ONION_ONLY != "no" ]]; then
  88. SCUTTLEBOT_DOMAIN_NAME='scuttlebot.local'
  89. write_config_param "SCUTTLEBOT_DOMAIN_NAME" "$SCUTTLEBOT_DOMAIN_NAME"
  90. else
  91. function_check interactive_site_details
  92. interactive_site_details scuttlebot
  93. fi
  94. APP_INSTALLED=1
  95. }
  96. function change_password_scuttlebot {
  97. new_username="$1"
  98. new_user_password="$2"
  99. echo '0'
  100. }
  101. function reconfigure_scuttlebot {
  102. if [ -d /etc/scuttlebot/.ssb ]; then
  103. systemctl stop scuttlebot
  104. rm -rf /etc/scuttlebot/.ssb
  105. systemctl start scuttlebot
  106. fi
  107. }
  108. function upgrade_scuttlebot {
  109. if ! grep -q 'scuttlebot version:' $COMPLETION_FILE; then
  110. return
  111. fi
  112. CURR_SCUTTLEBOT_VERSION=$(get_completion_param "scuttlebot version")
  113. echo "scuttlebot current version: ${CURR_SCUTTLEBOT_VERSION}"
  114. echo "scuttlebot app version: ${SCUTTLEBOT_VERSION}"
  115. if [[ "${CURR_SCUTTLEBOT_VERSION}" == "${SCUTTLEBOT_VERSION}" ]]; then
  116. return
  117. fi
  118. npm upgrade -g scuttlebot@${SCUTTLEBOT_VERSION} --save
  119. if [ ! "$?" = "0" ]; then
  120. return
  121. fi
  122. sed -i "s|scuttlebot version.*|scuttlebot version:${SCUTTLEBOT_VERSION}|g" ${COMPLETION_FILE}
  123. }
  124. function backup_local_scuttlebot {
  125. if [ -d /etc/scuttlebot/.ssb ]; then
  126. systemctl stop scuttlebot
  127. function_check backup_directory_to_usb
  128. backup_directory_to_usb /etc/scuttlebot/.ssb scuttlebot
  129. systemctl start scuttlebot
  130. fi
  131. }
  132. function restore_local_scuttlebot {
  133. if [ -d /etc/scuttlebot ]; then
  134. systemctl stop scuttlebot
  135. temp_restore_dir=/root/tempscuttlebot
  136. function_check restore_directory_from_usb
  137. restore_directory_from_usb $temp_restore_dir scuttlebot
  138. if [ -d $temp_restore_dir/etc/scuttlebot/.ssb ]; then
  139. cp -r $temp_restore_dir/etc/scuttlebot/.ssb /etc/scuttlebot/
  140. else
  141. cp -r $temp_restore_dir/* /etc/scuttlebot/.ssb/*
  142. fi
  143. systemctl start scuttlebot
  144. rm -rf $temp_restore_dir
  145. fi
  146. }
  147. function backup_remote_scuttlebot {
  148. if [ -d /etc/scuttlebot/.ssb ]; then
  149. systemctl stop scuttlebot
  150. function_check backup_directory_to_friend
  151. backup_directory_to_friend /etc/scuttlebot/.ssb scuttlebot
  152. systemctl start scuttlebot
  153. fi
  154. }
  155. function restore_remote_scuttlebot {
  156. if [ -d /etc/scuttlebot ]; then
  157. systemctl stop scuttlebot
  158. temp_restore_dir=/root/tempscuttlebot
  159. function_check restore_directory_from_friend
  160. restore_directory_from_friend $temp_restore_dir scuttlebot
  161. if [ -d $temp_restore_dir/etc/scuttlebot/.ssb ]; then
  162. cp -r $temp_restore_dir/etc/scuttlebot/.ssb /etc/scuttlebot/
  163. else
  164. cp -r $temp_restore_dir/* /etc/scuttlebot/.ssb/*
  165. fi
  166. systemctl start scuttlebot
  167. rm -rf $temp_restore_dir
  168. fi
  169. }
  170. function remove_scuttlebot {
  171. firewall_remove ${SCUTTLEBOT_PORT}
  172. firewall_remove ${GIT_SSB_PORT}
  173. nginx_dissite ${SCUTTLEBOT_DOMAIN_NAME}
  174. rm /etc/nginx/sites-available/${SCUTTLEBOT_DOMAIN_NAME}
  175. systemctl stop scuttlebot
  176. systemctl disable scuttlebot
  177. rm /etc/systemd/system/scuttlebot.service
  178. systemctl daemon-reload
  179. userdel -r scuttlebot
  180. if [ -d /etc/scuttlebot ]; then
  181. rm -rf /etc/scuttlebot
  182. fi
  183. remove_completion_param install_scuttlebot
  184. sed -i '/scuttlebot /d' $COMPLETION_FILE
  185. }
  186. function scuttlebot_git_setup {
  187. if [[ "$1" == "mesh" ]]; then
  188. git_ssb_nginx_site=$rootdir/etc/nginx/sites-available/git_ssb
  189. echo 'server {' > $git_ssb_nginx_site
  190. echo " listen $NGINX_GIT_SSB_PORT default_server;" >> $git_ssb_nginx_site
  191. echo " server_name P${PEER_ID}.local;" >> $git_ssb_nginx_site
  192. echo '' >> $git_ssb_nginx_site
  193. echo ' access_log /dev/null;' >> $git_ssb_nginx_site
  194. echo ' error_log /dev/null;' >> $git_ssb_nginx_site
  195. echo '' >> $git_ssb_nginx_site
  196. echo ' add_header X-XSS-Protection "1; mode=block";' >> $git_ssb_nginx_site
  197. echo ' add_header X-Content-Type-Options nosniff;' >> $git_ssb_nginx_site
  198. echo ' add_header X-Frame-Options SAMEORIGIN;' >> $git_ssb_nginx_site
  199. else
  200. git_ssb_nginx_site=/etc/nginx/sites-available/${SCUTTLEBOT_DOMAIN_NAME}
  201. function_check nginx_http_redirect
  202. nginx_http_redirect $SCUTTLEBOT_DOMAIN_NAME "index index.html"
  203. echo 'server {' >> $git_ssb_nginx_site
  204. echo ' listen 443 ssl;' >> $git_ssb_nginx_site
  205. echo ' listen [::]:443 ssl;' >> $git_ssb_nginx_site
  206. echo " server_name $SCUTTLEBOT_DOMAIN_NAME;" >> $git_ssb_nginx_site
  207. echo '' >> $git_ssb_nginx_site
  208. function_check nginx_compress
  209. nginx_compress $SCUTTLEBOT_DOMAIN_NAME
  210. echo '' >> $git_ssb_nginx_site
  211. echo ' # Security' >> $git_ssb_nginx_site
  212. function_check nginx_ssl
  213. nginx_ssl $SCUTTLEBOT_DOMAIN_NAME
  214. function_check nginx_disable_sniffing
  215. nginx_disable_sniffing $SCUTTLEBOT_DOMAIN_NAME
  216. fi
  217. echo '' >> $git_ssb_nginx_site
  218. echo ' location = / {' >> $git_ssb_nginx_site
  219. echo " proxy_pass http://localhost:${GIT_SSB_PORT};" >> $git_ssb_nginx_site
  220. echo ' proxy_set_header X-Real-IP $remote_addr;' >> $git_ssb_nginx_site
  221. echo ' proxy_set_header Host $host;' >> $git_ssb_nginx_site
  222. echo ' proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;' >> $git_ssb_nginx_site
  223. echo ' proxy_http_version 1.1;' >> $git_ssb_nginx_site
  224. echo ' proxy_set_header Upgrade $http_upgrade;' >> $git_ssb_nginx_site
  225. echo ' proxy_set_header Connection upgrade;' >> $git_ssb_nginx_site
  226. echo ' }' >> $git_ssb_nginx_site
  227. echo '}' >> $git_ssb_nginx_site
  228. if [ $SCUTTLEBOT_ONION_HOSTNAME ]; then
  229. echo '' >> $git_ssb_nginx_site
  230. echo 'server {' >> $git_ssb_nginx_site
  231. echo " listen 127.0.0.1:${SCUTTLEBOT_ONION_PORT} default_server;" >> $git_ssb_nginx_site
  232. echo " server_name ${SCUTTLEBOT_ONION_HOSTNAME};" >> $git_ssb_nginx_site
  233. echo '' >> $git_ssb_nginx_site
  234. echo ' access_log /dev/null;' >> $git_ssb_nginx_site
  235. echo ' error_log /dev/null;' >> $git_ssb_nginx_site
  236. echo '' >> $git_ssb_nginx_site
  237. echo ' add_header X-XSS-Protection "1; mode=block";' >> $git_ssb_nginx_site
  238. echo ' add_header X-Content-Type-Options nosniff;' >> $git_ssb_nginx_site
  239. echo ' add_header X-Frame-Options SAMEORIGIN;' >> $git_ssb_nginx_site
  240. echo '' >> $git_ssb_nginx_site
  241. echo ' location = / {' >> $git_ssb_nginx_site
  242. echo " proxy_pass http://localhost:${GIT_SSB_PORT};" >> $git_ssb_nginx_site
  243. echo ' proxy_set_header X-Real-IP $remote_addr;' >> $git_ssb_nginx_site
  244. echo ' proxy_set_header Host $host;' >> $git_ssb_nginx_site
  245. echo ' proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;' >> $git_ssb_nginx_site
  246. echo ' proxy_http_version 1.1;' >> $git_ssb_nginx_site
  247. echo ' proxy_set_header Upgrade $http_upgrade;' >> $git_ssb_nginx_site
  248. echo ' proxy_set_header Connection upgrade;' >> $git_ssb_nginx_site
  249. echo ' }' >> $git_ssb_nginx_site
  250. echo '}' >> $git_ssb_nginx_site
  251. fi
  252. nginx_ensite git_ssb
  253. }
  254. function mesh_install_scuttlebot {
  255. SCUTTLEBOT_ONION_HOSTNAME=
  256. get_npm_arch
  257. cat <<EOF > $rootdir/usr/bin/install_scuttlebot
  258. #!/bin/bash
  259. npm install --arch=$NPM_ARCH -g scuttlebot@${SCUTTLEBOT_VERSION}
  260. npm install --arch=$NPM_ARCH -g git-ssb
  261. npm install --arch=$NPM_ARCH -g git-remote-ssb
  262. EOF
  263. chroot "$rootdir" /bin/chmod +x /usr/bin/install_scuttlebot
  264. chroot "$rootdir" /usr/bin/install_scuttlebot
  265. rm $rootdir/usr/bin/install_scuttlebot
  266. if [ ! -f $rootdir/usr/local/bin/sbot ]; then
  267. echo $'Scuttlebot was not installed'
  268. exit 528253
  269. fi
  270. if [ ! -d $rootdir/etc/scuttlebot ]; then
  271. mkdir -p $rootdir/etc/scuttlebot
  272. fi
  273. # an unprivileged user to run as
  274. chroot "$rootdir" useradd -d /etc/scuttlebot/ scuttlebot
  275. # daemon
  276. echo '[Unit]' > $rootdir/etc/systemd/system/scuttlebot.service
  277. echo 'Description=Scuttlebot (messaging system)' >> $rootdir/etc/systemd/system/scuttlebot.service
  278. echo 'After=syslog.target' >> $rootdir/etc/systemd/system/scuttlebot.service
  279. echo 'After=network.target' >> $rootdir/etc/systemd/system/scuttlebot.service
  280. echo '' >> $rootdir/etc/systemd/system/scuttlebot.service
  281. echo '[Service]' >> $rootdir/etc/systemd/system/scuttlebot.service
  282. echo 'Type=simple' >> $rootdir/etc/systemd/system/scuttlebot.service
  283. echo 'User=scuttlebot' >> $rootdir/etc/systemd/system/scuttlebot.service
  284. echo 'Group=scuttlebot' >> $rootdir/etc/systemd/system/scuttlebot.service
  285. echo "WorkingDirectory=/etc/scuttlebot" >> $rootdir/etc/systemd/system/scuttlebot.service
  286. echo 'ExecStart=/usr/local/bin/sbot server' >> $rootdir/etc/systemd/system/scuttlebot.service
  287. echo 'Restart=always' >> $rootdir/etc/systemd/system/scuttlebot.service
  288. echo 'Environment="USER=scuttlebot"' >> $rootdir/etc/systemd/system/scuttlebot.service
  289. echo '' >> $rootdir/etc/systemd/system/scuttlebot.service
  290. echo '[Install]' >> $rootdir/etc/systemd/system/scuttlebot.service
  291. echo 'WantedBy=multi-user.target' >> $rootdir/etc/systemd/system/scuttlebot.service
  292. scuttlebot_git_setup mesh
  293. }
  294. function install_scuttlebot {
  295. function_check install_nodejs
  296. install_nodejs scuttlebot
  297. npm install -g scuttlebot@${SCUTTLEBOT_VERSION}
  298. if [ ! -f /usr/local/bin/sbot ]; then
  299. exit 528253
  300. fi
  301. npm install -g git-ssb
  302. npm install -g git-remote-ssb
  303. if [ ! -d /etc/scuttlebot ]; then
  304. mkdir -p /etc/scuttlebot
  305. fi
  306. # an unprivileged user to run as
  307. useradd -d /etc/scuttlebot/ scuttlebot
  308. # daemon
  309. echo '[Unit]' > /etc/systemd/system/scuttlebot.service
  310. echo 'Description=Scuttlebot (messaging system)' >> /etc/systemd/system/scuttlebot.service
  311. echo 'After=syslog.target' >> /etc/systemd/system/scuttlebot.service
  312. echo 'After=network.target' >> /etc/systemd/system/scuttlebot.service
  313. echo '' >> /etc/systemd/system/scuttlebot.service
  314. echo '[Service]' >> /etc/systemd/system/scuttlebot.service
  315. echo 'Type=simple' >> /etc/systemd/system/scuttlebot.service
  316. echo 'User=scuttlebot' >> /etc/systemd/system/scuttlebot.service
  317. echo 'Group=scuttlebot' >> /etc/systemd/system/scuttlebot.service
  318. echo "WorkingDirectory=/etc/scuttlebot" >> /etc/systemd/system/scuttlebot.service
  319. echo 'ExecStart=/usr/local/bin/sbot server' >> /etc/systemd/system/scuttlebot.service
  320. echo 'Restart=always' >> /etc/systemd/system/scuttlebot.service
  321. echo 'Environment="USER=scuttlebot"' >> /etc/systemd/system/scuttlebot.service
  322. echo '' >> /etc/systemd/system/scuttlebot.service
  323. echo '[Install]' >> /etc/systemd/system/scuttlebot.service
  324. echo 'WantedBy=multi-user.target' >> /etc/systemd/system/scuttlebot.service
  325. chown -R scuttlebot:scuttlebot /etc/scuttlebot
  326. # files gw_name myhostname mdns4_minimal [NOTFOUND=return] dns
  327. sed -i "s|hosts:.*|hosts: files mdns4_minimal dns mdns4 mdns|g" /etc/nsswitch.conf
  328. # start the daemon
  329. systemctl enable scuttlebot.service
  330. systemctl daemon-reload
  331. systemctl start scuttlebot.service
  332. sleep 3
  333. if [ ! -d /etc/scuttlebot/.ssb ]; then
  334. echo $'Scuttlebot config not generated'
  335. exit 73528
  336. fi
  337. echo '{' > /etc/scuttlebot/.ssb/config
  338. echo " \"host\": \"${DEFAULT_DOMAIN_NAME}\"," >> /etc/scuttlebot/.ssb/config
  339. echo " \"port\": ${SCUTTLEBOT_PORT}," >> /etc/scuttlebot/.ssb/config
  340. echo ' "timeout": 30000,' >> /etc/scuttlebot/.ssb/config
  341. echo ' "pub": true,' >> /etc/scuttlebot/.ssb/config
  342. echo ' "local": true,' >> /etc/scuttlebot/.ssb/config
  343. echo ' "friends": {' >> /etc/scuttlebot/.ssb/config
  344. echo ' "dunbar": 150,' >> /etc/scuttlebot/.ssb/config
  345. echo ' "hops": 3' >> /etc/scuttlebot/.ssb/config
  346. echo ' },' >> /etc/scuttlebot/.ssb/config
  347. echo ' "gossip": {' >> /etc/scuttlebot/.ssb/config
  348. echo ' "connections": 2' >> /etc/scuttlebot/.ssb/config
  349. echo ' },' >> /etc/scuttlebot/.ssb/config
  350. echo ' "master": [],' >> /etc/scuttlebot/.ssb/config
  351. echo ' "logging": {' >> /etc/scuttlebot/.ssb/config
  352. echo ' "level": "error"' >> /etc/scuttlebot/.ssb/config
  353. echo ' }' >> /etc/scuttlebot/.ssb/config
  354. echo '}' >> /etc/scuttlebot/.ssb/config
  355. chown scuttlebot:scuttlebot /etc/scuttlebot/.ssb/config
  356. systemctl restart scuttlebot.service
  357. firewall_add scuttlebot ${SCUTTLEBOT_PORT}
  358. firewall_add git_ssb ${GIT_SSB_PORT}
  359. SCUTTLEBOT_ONION_HOSTNAME=$(add_onion_service scuttlebot 80 ${SCUTTLEBOT_ONION_PORT})
  360. scuttlebot_git_setup
  361. systemctl restart nginx
  362. if ! grep -q "scuttlebot version:" ${COMPLETION_FILE}; then
  363. echo "scuttlebot version:${SCUTTLEBOT_VERSION}" >> ${COMPLETION_FILE}
  364. else
  365. sed -i "s|scuttlebot version.*|scuttlebot version:${SCUTTLEBOT_VERSION}|g" ${COMPLETION_FILE}
  366. fi
  367. APP_INSTALLED=1
  368. }
  369. # NOTE: deliberately no exit 0