freedombone-app-syncthing 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Syncthing application
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2014-2016 Bob Mottram <bob@freedombone.net>
  17. #
  18. # This program is free software: you can redistribute it and/or modify
  19. # it under the terms of the GNU Affero General Public License as published by
  20. # the Free Software Foundation, either version 3 of the License, or
  21. # (at your option) any later version.
  22. #
  23. # This program is distributed in the hope that it will be useful,
  24. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. # GNU Affero General Public License for more details.
  27. #
  28. # You should have received a copy of the GNU Affero General Public License
  29. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  30. VARIANTS='full full-vim cloud'
  31. IN_DEFAULT_INSTALL=0
  32. SHOW_ON_ABOUT=0
  33. SYNCTHING_ID=
  34. SYNCTHING_CONFIG_PATH=/root/.config/syncthing
  35. SYNCTHING_CONFIG_FILE=$SYNCTHING_CONFIG_PATH/config.xml
  36. SYNCTHING_RELAY_SERVER='https://relays.syncthing.net/endpoint'
  37. SYNCTHING_RELEASES='https://api.github.com/repos/syncthing/syncthing/releases?per_page=30'
  38. SYNCTHING_PORT=22000
  39. SYNCTHING_SHARED_DATA=/var/lib/syncthing/SyncShared
  40. SYNCTHING_USER_IDS_FILE='.syncthingids'
  41. syncthing_variables=(SYNCTHING_ID
  42. SYNCTHING_CONFIG_PATH
  43. SYNCTHING_CONFIG_FILE
  44. SYNCTHING_RELAY_SERVER
  45. SYNCTHING_RELEASES
  46. SYNCTHING_PORT
  47. SYNCTHING_SHARED_DATA
  48. USB_MOUNT)
  49. function syncthing_create_ids_file {
  50. if [ ! -f ~/.syncthing-server-id ]; then
  51. return
  52. fi
  53. SYNCTHING_ID=$(cat ~/.syncthing-server-id)
  54. if [ ! -f $SYNCTHING_CONFIG_FILE ]; then
  55. echo $'# Your syncthing configuration file' > $SYNCTHING_CONFIG_FILE
  56. echo '#' >> $SYNCTHING_CONFIG_FILE
  57. echo $"# The ${PROJECT_NAME} syncthing ID is: $SYNCTHING_ID" >> $SYNCTHING_CONFIG_FILE
  58. echo '#' >> $SYNCTHING_CONFIG_FILE
  59. echo '# Paste the IDs of your devices below' >> $SYNCTHING_CONFIG_FILE
  60. echo '#' >> $SYNCTHING_CONFIG_FILE
  61. fi
  62. }
  63. function syncthing_manual_edit {
  64. if [ ! -f ~/.syncthing-server-id ]; then
  65. return
  66. fi
  67. syncthing_create_ids_file
  68. editor $SYNCTHING_CONFIG_FILE
  69. # force an update of the configuration
  70. touch ~/.syncthing-update
  71. }
  72. function syncthing_show_id {
  73. if [ ! -f ~/.syncthing-server-id ]; then
  74. return
  75. fi
  76. SYNCTHING_ID=$(cat ~/.syncthing-server-id)
  77. dialog --title $"Device ID for ${PROJECT_NAME}" \
  78. --backtitle $"Freedombone User Control Panel" \
  79. --msgbox $"In a desktop terminal press shift and select the ID below,\nthen right click and copy.\n\nWithin Connectbot select Menu/Copy and then highlight the ID below\n\n$SYNCTHING_ID" 12 78
  80. }
  81. function syncthing_add_id {
  82. if [ ! -f ~/.syncthing-server-id ]; then
  83. return
  84. fi
  85. syncthing_create_ids_file
  86. data=$(tempfile 2>/dev/null)
  87. trap "rm -f $data" 0 1 2 5 15
  88. dialog --backtitle $"Freedombone User Control Panel" \
  89. --title $"Add a Syncthing device ID" \
  90. --form $"Paste the device ID for your laptop/desktop/netbook/phone/tablet below" 9 80 2 \
  91. $"Device ID:" 1 1 "" 1 26 80 80 \
  92. $"Description (optional):" 2 1 "" 2 26 80 80 \
  93. 2> $data
  94. sel=$?
  95. case $sel in
  96. 1) return;;
  97. 255) return;;
  98. esac
  99. SYNCTHING_DEVICE_ID=$(cat $data | sed -n 1p)
  100. SYNCTHING_DESCRIPTION=$(cat $data | sed -n 2p)
  101. if [ ${#SYNCTHING_DEVICE_ID} -lt 10 ]; then
  102. return
  103. fi
  104. if [[ $SYNCTHING_DEVICE_ID == *"#"* || $SYNCTHING_DEVICE_ID == *"*"* || $SYNCTHING_DEVICE_ID == *'/'* || $SYNCTHING_DEVICE_ID != *"-"* ]]; then
  105. dialog --title $"Add a Syncthing device ID" \
  106. --backtitle $"Freedombone User Control Panel" \
  107. --msgbox $"That doesn't look like a device ID" 6 50
  108. return
  109. fi
  110. if grep -q "$SYNCTHING_DEVICE_ID" $SYNCTHING_CONFIG_FILE; then
  111. dialog --title $"Add a Syncthing device ID" \
  112. --backtitle $"Freedombone User Control Panel" \
  113. --msgbox $"That ID has already been added" 6 50
  114. return
  115. fi
  116. if [ ${#SYNCTHING_DESCRIPTION} -gt 0 ]; then
  117. echo "# $SYNCTHING_DESCRIPTION" >> $SYNCTHING_CONFIG_FILE
  118. fi
  119. echo "$SYNCTHING_DEVICE_ID" >> $SYNCTHING_CONFIG_FILE
  120. # force an update of the configuration
  121. touch ~/.syncthing-update
  122. dialog --title $"Add a Syncthing device ID" \
  123. --backtitle $"Freedombone User Control Panel" \
  124. --msgbox $"The ID was added" 6 50
  125. }
  126. function syncthing_remove_id {
  127. if [ ! -f ~/.syncthing-server-id ]; then
  128. return
  129. fi
  130. syncthing_create_ids_file
  131. data=$(tempfile 2>/dev/null)
  132. trap "rm -f $data" 0 1 2 5 15
  133. dialog --backtitle $"Freedombone User Control Panel" \
  134. --title $"Remove a Syncthing device ID" \
  135. --form $"Paste the device ID which is to be removed below" 8 80 1 \
  136. $"Device ID:" 1 1 "" 1 14 80 80 \
  137. 2> $data
  138. sel=$?
  139. case $sel in
  140. 1) return;;
  141. 255) return;;
  142. esac
  143. SYNCTHING_DEVICE_ID=$(cat $data | sed -n 1p)
  144. if [ ${#SYNCTHING_DEVICE_ID} -lt 10 ]; then
  145. return
  146. fi
  147. if [[ $SYNCTHING_DEVICE_ID == *"#"* || $SYNCTHING_DEVICE_ID == *"*"* || $SYNCTHING_DEVICE_ID == *'/'* || $SYNCTHING_DEVICE_ID != *"-"* ]]; then
  148. dialog --title $"Remove a Syncthing device ID" \
  149. --backtitle $"Freedombone User Control Panel" \
  150. --msgbox $"That doesn't look like a device ID" 6 50
  151. return
  152. fi
  153. if ! grep -q "$SYNCTHING_DEVICE_ID" $SYNCTHING_CONFIG_FILE; then
  154. dialog --title $"Remove a Syncthing device ID" \
  155. --backtitle $"Freedombone User Control Panel" \
  156. --msgbox $"That ID wasn't registered anyway" 6 50
  157. return
  158. fi
  159. sed -i "/$SYNCTHING_DEVICE_ID/d" $SYNCTHING_CONFIG_FILE
  160. # force an update of the configuration
  161. touch ~/.syncthing-update
  162. dialog --title $"Remove a Syncthing device ID" \
  163. --backtitle $"Freedombone User Control Panel" \
  164. --msgbox $"The ID was removed" 6 50
  165. }
  166. function run_client_syncthing {
  167. SYNCTHING_CONFIG_FILE=~/.syncthingids
  168. SYNCTHING_ID=$(cat ~/.syncthing-server-id)
  169. while true
  170. do
  171. data=$(tempfile 2>/dev/null)
  172. trap "rm -f $data" 0 1 2 5 15
  173. dialog --backtitle $"Freedombone User Control Panel" \
  174. --title $"File Synchronization" \
  175. --radiolist $"Choose an operation:" 12 70 6 \
  176. 1 $"Show device ID for ${PROJECT_NAME}" off \
  177. 2 $"Add an ID for another machine or device" off \
  178. 3 $"Remove an ID for another machine or device" off \
  179. 4 $"Manually edit device IDs" off \
  180. 5 $"Back to main menu" on 2> $data
  181. sel=$?
  182. case $sel in
  183. 1) break;;
  184. 255) break;;
  185. esac
  186. case $(cat $data) in
  187. 1) syncthing_show_id;;
  188. 2) syncthing_add_id;;
  189. 3) syncthing_remove_id;;
  190. 4) syncthing_manual_edit;;
  191. 5) break;;
  192. esac
  193. done
  194. }
  195. function install_interactive_syncthing {
  196. echo -n ''
  197. APP_INSTALLED=1
  198. }
  199. function reconfigure_syncthing {
  200. echo -n ''
  201. }
  202. function upgrade_syncthing {
  203. echo -n ''
  204. }
  205. function backup_local_syncthing {
  206. if [ -d /var/lib/syncthing/SyncShared ]; then
  207. function_check backup_directory_to_usb
  208. backup_directory_to_usb /var/lib/syncthing/SyncShared syncthingshared
  209. backup_directory_to_usb /root/.config/syncthing syncthingconfig
  210. fi
  211. for d in /home/*/ ; do
  212. USERNAME=$(echo "$d" | awk -F '/' '{print $3}')
  213. if [[ $(is_valid_user "$USERNAME") == "1" ]]; then
  214. if [ -d /home/$USERNAME/Sync ]; then
  215. echo $"Backing up syncthing files for $USERNAME"
  216. backup_directory_to_usb /home/$USERNAME/Sync syncthing/$USERNAME
  217. # ensure that device IDs will be backed up as part of user config settings
  218. if [ ! -d /home/$USERNAME/.config/syncthing ]; then
  219. mkdir -p /home/$USERNAME/.config/syncthing
  220. chown -R $USERNAME:$USERNAME /home/$USERNAME/.config
  221. fi
  222. if [ -f /home/$USERNAME/.syncthing-server-id ]; then
  223. cp /home/$USERNAME/.syncthing-server-id /home/$USERNAME/.config/syncthing
  224. chown -R $USERNAME:$USERNAME /home/$USERNAME/.config
  225. fi
  226. if [ -f /home/$USERNAME/.syncthingids ]; then
  227. cp /home/$USERNAME/.syncthingids /home/$USERNAME/.config/syncthing
  228. chown -R $USERNAME:$USERNAME /home/$USERNAME/.config
  229. fi
  230. fi
  231. fi
  232. done
  233. }
  234. function restore_local_syncthing {
  235. if [ -f /etc/systemd/system/syncthing.service ]; then
  236. systemctl stop syncthing
  237. systemctl stop cron
  238. fi
  239. temp_restore_dir=/root/tempsyncthing
  240. if [ -d $USB_MOUNT/backup/syncthingconfig ]; then
  241. echo $"Restoring syncthing configuration"
  242. function_check restore_directory_from_usb
  243. restore_directory_from_usb ${temp_restore_dir}config syncthingconfig
  244. cp -r ${temp_restore_dir}config/* /
  245. if [ ! "$?" = "0" ]; then
  246. set_user_permissions
  247. backup_unmount_drive
  248. systemctl start syncthing
  249. systemctl start cron
  250. exit 6833
  251. fi
  252. rm -rf ${temp_restore_dir}config
  253. fi
  254. if [ -d $USB_MOUNT/backup/syncthingshared ]; then
  255. echo $"Restoring syncthing shared files"
  256. restore_directory_from_usb ${temp_restore_dir}shared syncthingshared
  257. cp -r ${temp_restore_dir}shared/* /
  258. if [ ! "$?" = "0" ]; then
  259. set_user_permissions
  260. backup_unmount_drive
  261. systemctl start syncthing
  262. systemctl start cron
  263. exit 37904
  264. fi
  265. rm -rf ${temp_restore_dir}shared
  266. fi
  267. if [ -d $USB_MOUNT/backup/syncthing ]; then
  268. for d in $USB_MOUNT/backup/syncthing/*/ ; do
  269. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  270. if [[ $(is_valid_user "$USERNAME") == "1" ]]; then
  271. if [ ! -d /home/$USERNAME ]; then
  272. ${PROJECT_NAME}-adduser $USERNAME
  273. fi
  274. echo $"Restoring syncthing files for $USERNAME"
  275. restore_directory_from_usb ${temp_restore_dir} syncthing/$USERNAME
  276. cp -r ${temp_restore_dir}/home/$USERNAME/Sync /home/$USERNAME/
  277. if [ ! "$?" = "0" ]; then
  278. rm -rf ${temp_restore_dir}
  279. set_user_permissions
  280. backup_unmount_drive
  281. systemctl start syncthing
  282. systemctl start cron
  283. exit 68438
  284. fi
  285. rm -rf ${temp_restore_dir}
  286. # restore device IDs from config settings
  287. if [ -f /home/$USERNAME/.config/syncthing/.syncthing-server-id ]; then
  288. cp /home/$USERNAME/.config/syncthing/.syncthing-server-id /home/$USERNAME/.syncthing-server-id
  289. chown $USERNAME:$USERNAME /home/$USERNAME/.syncthing-server-id
  290. fi
  291. if [ -f /home/$USERNAME/.config/syncthing/.syncthingids ]; then
  292. cp /home/$USERNAME/.config/syncthing/.syncthingids /home/$USERNAME/.syncthingids
  293. chown $USERNAME:$USERNAME /home/$USERNAME/.syncthingids
  294. fi
  295. fi
  296. done
  297. fi
  298. if [ -f /etc/systemd/system/syncthing.service ]; then
  299. systemctl start syncthing
  300. systemctl start cron
  301. fi
  302. }
  303. function backup_remote_syncthing {
  304. if [ -d /root/.config/syncthing ]; then
  305. echo $"Backing up syncthing configuration"
  306. function_check backup_directory_to_friend
  307. backup_directory_to_friend /root/.config/syncthing syncthingconfig
  308. echo $"Backup of syncthing configuration complete"
  309. fi
  310. if [ -d /var/lib/syncthing/SyncShared ]; then
  311. echo $"Backing up syncthing shared files"
  312. function_check backup_directory_to_friend
  313. backup_directory_to_friend /var/lib/syncthing/SyncShared syncthingshared
  314. echo $"Backup of syncthing shared files complete"
  315. fi
  316. for d in /home/*/ ; do
  317. USERNAME=$(echo "$d" | awk -F '/' '{print $3}')
  318. if [[ $(is_valid_user "$USERNAME") == "1" ]]; then
  319. if [ -d /home/$USERNAME/Sync ]; then
  320. echo $"Backing up syncthing files for $USERNAME"
  321. backup_directory_to_friend /home/$USERNAME/Sync syncthing/$USERNAME
  322. # ensure that device IDs will be backed up as part of user config settings
  323. if [ ! -d /home/$USERNAME/.config/syncthing ]; then
  324. mkdir -p /home/$USERNAME/.config/syncthing
  325. chown -R $USERNAME:$USERNAME /home/$USERNAME/.config
  326. fi
  327. if [ -f /home/$USERNAME/.syncthing-server-id ]; then
  328. cp /home/$USERNAME/.syncthing-server-id /home/$USERNAME/.config/syncthing
  329. chown -R $USERNAME:$USERNAME /home/$USERNAME/.config
  330. fi
  331. if [ -f /home/$USERNAME/.syncthingids ]; then
  332. cp /home/$USERNAME/.syncthingids /home/$USERNAME/.config/syncthing
  333. chown -R $USERNAME:$USERNAME /home/$USERNAME/.config
  334. fi
  335. fi
  336. fi
  337. done
  338. }
  339. function restore_remote_syncthing {
  340. if [ -f /etc/systemd/system/syncthing.service ]; then
  341. systemctl stop syncthing
  342. systemctl stop cron
  343. fi
  344. if [ -d $SERVER_DIRECTORY/backup/syncthingconfig ]; then
  345. echo $"Restoring syncthing configuration"
  346. temp_restore_dir=/root/tempsyncthingconfig
  347. function_check restore_directory_from_friend
  348. restore_directory_from_friend $temp_restore_dir syncthingconfig
  349. cp -r $temp_restore_dir/* /
  350. if [ ! "$?" = "0" ]; then
  351. systemctl start syncthing
  352. systemctl start cron
  353. exit 6833
  354. fi
  355. rm -rf $temp_restore_dir
  356. fi
  357. if [ -d $SERVER_DIRECTORY/backup/syncthingshared ]; then
  358. echo $"Restoring syncthing shared files"
  359. temp_restore_dir=/root/tempsyncthingshared
  360. function_check restore_directory_from_friend
  361. restore_directory_from_friend $temp_restore_dir syncthingshared
  362. cp -r $temp_restore_dir/* /
  363. if [ ! "$?" = "0" ]; then
  364. systemctl start syncthing
  365. systemctl start cron
  366. exit 37904
  367. fi
  368. rm -rf $temp_restore_dir
  369. fi
  370. if [ -d $SERVER_DIRECTORY/backup/syncthing ]; then
  371. for d in $SERVER_DIRECTORY/backup/syncthing/*/ ; do
  372. USERNAME=$(echo "$d" | awk -F '/' '{print $6}')
  373. if [[ $(is_valid_user "$USERNAME") == "1" ]]; then
  374. if [ ! -d /home/$USERNAME ]; then
  375. ${PROJECT_NAME}-adduser $USERNAME
  376. fi
  377. echo $"Restoring syncthing files for $USERNAME"
  378. temp_restore_dir=/root/tempsyncthing
  379. function_check restore_directory_from_friend
  380. restore_directory_from_friend $temp_restore_dir syncthing/$USERNAME
  381. cp -r $temp_restore_dir/home/$USERNAME/Sync /home/$USERNAME/
  382. if [ ! "$?" = "0" ]; then
  383. rm -rf $temp_restore_dir
  384. systemctl start syncthing
  385. systemctl start cron
  386. exit 68438
  387. fi
  388. rm -rf $temp_restore_dir
  389. # restore device IDs from config settings
  390. if [ -f /home/$USERNAME/.config/syncthing/.syncthing-server-id ]; then
  391. cp /home/$USERNAME/.config/syncthing/.syncthing-server-id /home/$USERNAME/.syncthing-server-id
  392. chown $USERNAME:$USERNAME /home/$USERNAME/.syncthing-server-id
  393. fi
  394. if [ -f /home/$USERNAME/.config/syncthing/.syncthingids ]; then
  395. cp /home/$USERNAME/.config/syncthing/.syncthingids /home/$USERNAME/.syncthingids
  396. chown $USERNAME:$USERNAME /home/$USERNAME/.syncthingids
  397. fi
  398. echo $"Restore of syncthing files for $USERNAME complete"
  399. fi
  400. done
  401. fi
  402. if [ -f /etc/systemd/system/syncthing.service ]; then
  403. systemctl start syncthing
  404. systemctl start cron
  405. fi
  406. }
  407. function remove_syncthing {
  408. firewall_remove ${SYNCTHING_PORT}
  409. systemctl stop syncthing
  410. systemctl disable syncthing
  411. apt-get -yq remove --purge syncthing
  412. rm /etc/systemd/system/syncthing.service
  413. sed -i "/${PROJECT_NAME}-syncthing/d" /etc/crontab
  414. remove_completion_param install_syncthing
  415. remove_completion_param configure_firewall_for_syncthing
  416. systemctl restart cron
  417. }
  418. function configure_firewall_for_syncthing {
  419. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  420. return
  421. fi
  422. firewall_add Syncthing ${SYNCTHING_PORT}
  423. mark_completed $FUNCNAME
  424. }
  425. function install_syncthing {
  426. apt-get -yq install curl
  427. curl -s https://syncthing.net/release-key.txt | apt-key add -
  428. echo "deb http://apt.syncthing.net/ syncthing release" | tee /etc/apt/sources.list.d/syncthing.list
  429. apt-get update
  430. apt-get -yq install syncthing
  431. # This probably does need to run as root so that it can access the Sync directories
  432. # in each user's home directory
  433. echo '[Unit]' > /etc/systemd/system/syncthing.service
  434. echo 'Description=Syncthing - Open Source Continuous File Synchronization' >> /etc/systemd/system/syncthing.service
  435. echo 'Documentation=man:syncthing(1)' >> /etc/systemd/system/syncthing.service
  436. echo 'After=network.target' >> /etc/systemd/system/syncthing.service
  437. echo 'Wants=syncthing-inotify@.service' >> /etc/systemd/system/syncthing.service
  438. echo '' >> /etc/systemd/system/syncthing.service
  439. echo '[Service]' >> /etc/systemd/system/syncthing.service
  440. echo 'User=root' >> /etc/systemd/system/syncthing.service
  441. echo "Environment='all_proxy=socks5://localhost:9050'" >> /etc/systemd/system/syncthing.service
  442. echo 'ExecStart=/usr/bin/syncthing -no-browser -no-restart -logflags=0' >> /etc/systemd/system/syncthing.service
  443. echo 'Restart=on-failure' >> /etc/systemd/system/syncthing.service
  444. echo 'SuccessExitStatus=3 4' >> /etc/systemd/system/syncthing.service
  445. echo 'RestartForceExitStatus=3 4' >> /etc/systemd/system/syncthing.service
  446. echo '' >> /etc/systemd/system/syncthing.service
  447. echo '[Install]' >> /etc/systemd/system/syncthing.service
  448. echo 'WantedBy=multi-user.target' >> /etc/systemd/system/syncthing.service
  449. systemctl enable syncthing
  450. systemctl daemon-reload
  451. systemctl start syncthing
  452. function_check cron_add_mins
  453. cron_add_mins 1 "/usr/local/bin/${PROJECT_NAME}-syncthing > /dev/null"
  454. function_check configure_firewall_for_syncthing
  455. configure_firewall_for_syncthing
  456. APP_INSTALLED=1
  457. }
  458. # NOTE: deliberately no exit 0