freedombone-remote 9.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Creates an inventory of remote backup locations
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2015-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. NO_OF_ARGS=$#
  31. PROJECT_NAME='freedombone'
  32. export TEXTDOMAIN=${PROJECT_NAME}-remote
  33. export TEXTDOMAINDIR="/usr/share/locale"
  34. CONFIG_FILE=$HOME/${PROJECT_NAME}.cfg
  35. # User to create the list for
  36. MY_USERNAME=$USER
  37. # Filename of the remote backups list
  38. FRIENDS_SERVERS_LIST=
  39. # Minimum password length in characters
  40. MINIMUM_PASSWORD_LENGTH=$(cat /usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-passwords | grep 'MINIMUM_PASSWORD_LENGTH=' | head -n 1 | awk -F '=' '{print $2}')
  41. # How many remote locations were specified
  42. entering_remote_backups_ctr=0
  43. # Title shown
  44. TITLE='Remote Backup'
  45. # Whether to include the capability of adding reciprocal user accounts
  46. # such that whoever is running a remote server can also use your server to
  47. # store backups
  48. RECIPROCAL="no"
  49. function show_help {
  50. echo ''
  51. echo $"${PROJECT_NAME}-remote -u [username] -l [backup list filename] -m [min password length]"
  52. echo ''
  53. echo $'Creates an inventory of remote backup locations'
  54. echo ''
  55. echo ''
  56. echo $' -h --help Show help'
  57. echo $' -u --username User to create the backups.list file for'
  58. echo $' -l --list Remote backup list (usually /home/$USER/backup.list)'
  59. echo $' -m --min Minimum password length (characters)'
  60. echo $' -r --reciprocal Whether to add reciprocal user accounts'
  61. echo $' -t --title Title shown'
  62. echo ''
  63. exit 0
  64. }
  65. # Get the commandline options
  66. while [[ $# > 1 ]]
  67. do
  68. key="$1"
  69. case $key in
  70. -h|--help)
  71. show_help
  72. ;;
  73. # backup list filename
  74. # typically /home/$USER/backup.list
  75. -l|--list)
  76. shift
  77. FRIENDS_SERVERS_LIST="$1"
  78. ;;
  79. # username within /home
  80. -u|--user)
  81. shift
  82. MY_USERNAME="$1"
  83. ;;
  84. # Minimum password length
  85. -m|--min)
  86. shift
  87. MINIMUM_PASSWORD_LENGTH="$1"
  88. ;;
  89. # Title shown
  90. -t|--title)
  91. shift
  92. TITLE="$1"
  93. ;;
  94. # reciprocal user accounts
  95. -r|--reciprocal)
  96. shift
  97. RECIPROCAL="yes"
  98. ;;
  99. *)
  100. # unknown option
  101. ;;
  102. esac
  103. shift
  104. done
  105. function interactive_config_remote_backups {
  106. if [ ! $MY_USERNAME ]; then
  107. echo $'Please specify a username with the -u option'
  108. exit 7356
  109. fi
  110. if [ ! /home/$MY_USERNAME ]; then
  111. echo $"The user /home/$MY_USERNAME does not exist on the system"
  112. exit 3689
  113. fi
  114. if [ ! $FRIENDS_SERVERS_LIST ]; then
  115. FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
  116. fi
  117. # clear any existing list
  118. if [ -f $FRIENDS_SERVERS_LIST ]; then
  119. rm -f $FRIENDS_SERVERS_LIST
  120. touch $FRIENDS_SERVERS_LIST
  121. fi
  122. # number of entries made
  123. entering_remote_backups_ctr=1
  124. entering_remote_backups_done="no"
  125. remote_ssh_username=""
  126. remote_ssh_domain=""
  127. remote_ssh_port=""
  128. remote_ssh_password=""
  129. remote_ssh_reciprocal_username=""
  130. remote_ssh_reciprocal_password=""
  131. while [[ $entering_remote_backups_done == "no" ]]
  132. do
  133. data=$(tempfile 2>/dev/null)
  134. trap "rm -f $data" 0 1 2 5 15
  135. if [[ $RECIPROCAL == "yes" ]]; then
  136. dialog --backtitle "Freedombone Configuration" \
  137. --title "$TITLE ${entering_remote_backups_ctr}" \
  138. --form "\nPlease specify the SSH login details for the remote server\n\nThe reciprocal entries are optional, and can be used if you wish to set up a user account on this system for whoever runs the remote server to also use for backups" 20 50 8 \
  139. "Username:" 1 1 "$remote_ssh_username" 1 23 16 15 \
  140. "Domain:" 2 1 "$remote_ssh_domain" 2 23 16 15 \
  141. "SSH port:" 3 1 "2222" 3 23 5 4 \
  142. "Password:" 4 1 "$remote_ssh_password" 4 23 20 100 \
  143. "Reciprocal Username:" 5 1 "$remote_ssh_reciprocal_username" 5 23 20 100 \
  144. "Reciprocal Password:" 6 1 "$remote_ssh_reciprocal_password" 6 23 20 100 \
  145. 2> $data
  146. else
  147. dialog --backtitle "Freedombone Configuration" \
  148. --title "$TITLE ${entering_remote_backups_ctr}" \
  149. --form "\nPlease specify the SSH login details for the remote server" 15 50 4 \
  150. "Username:" 1 1 "$remote_ssh_username" 1 23 16 15 \
  151. "Domain:" 2 1 "$remote_ssh_domain" 2 23 16 15 \
  152. "SSH port:" 3 1 "2222" 3 23 5 4 \
  153. "Password:" 4 1 "$remote_ssh_password" 4 23 20 100 \
  154. 2> $data
  155. fi
  156. sel=$?
  157. case $sel in
  158. 1) entering_remote_backups_done="yes";;
  159. 255) entering_remote_backups_done="yes";;
  160. esac
  161. remote_ssh_username=$(cat $data | sed -n 1p)
  162. remote_ssh_domain=$(cat $data | sed -n 2p)
  163. remote_ssh_port=$(cat $data | sed -n 3p)
  164. remote_ssh_password=$(cat $data | sed -n 4p)
  165. remote_ssh_reciprocal_username=$(cat $data | sed -n 5p)
  166. remote_ssh_reciprocal_password=$(cat $data | sed -n 6p)
  167. if [[ $remote_ssh_username != "" && \
  168. $remote_ssh_domain != "" && \
  169. $remote_ssh_port != "" && \
  170. $remote_ssh_password != "" ]]; then
  171. if [ ${#remote_ssh_password} -lt $MINIMUM_PASSWORD_LENGTH ]; then
  172. dialog --title "Password quality check" --msgbox "The password given was too short. It must be at least $MINIMUM_PASSWORD_LENGTH characters" 6 40
  173. else
  174. if [[ $RECIPROCAL == "yes" ]]; then
  175. if [[ $remote_ssh_reciprocal_username != "" && \
  176. $remote_ssh_reciprocal_password != "" ]]; then
  177. if [ ${#remote_ssh_reciprocal_password} -lt $MINIMUM_PASSWORD_LENGTH ]; then
  178. dialog --title "Password quality check" --msgbox "The reciprocal password given was too short. It must be at least $MINIMUM_PASSWORD_LENGTH characters" 6 40
  179. else
  180. echo ${remote_ssh_reciprocal_username}:${remote_ssh_reciprocal_password}::::/home/${remote_ssh_reciprocal_username}:bash | newusers
  181. echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
  182. remote_ssh_username=""
  183. remote_ssh_domain=""
  184. remote_ssh_port=""
  185. remote_ssh_password=""
  186. remote_ssh_reciprocal_username=""
  187. remote_ssh_reciprocal_password=""
  188. entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
  189. fi
  190. else
  191. echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
  192. remote_ssh_username=""
  193. remote_ssh_domain=""
  194. remote_ssh_port=""
  195. remote_ssh_password=""
  196. remote_ssh_reciprocal_username=""
  197. remote_ssh_reciprocal_password=""
  198. entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
  199. fi
  200. else
  201. echo "$remote_ssh_username@$remote_ssh_domain $remote_ssh_port /home/$remote_ssh_username $remote_ssh_password" >> $FRIENDS_SERVERS_LIST
  202. remote_ssh_username=""
  203. remote_ssh_domain=""
  204. remote_ssh_port=""
  205. remote_ssh_password=""
  206. entering_remote_backups_ctr=$((entering_remote_backups_ctr + 1))
  207. fi
  208. fi
  209. else
  210. entering_remote_backups_done="yes"
  211. fi
  212. done
  213. if [ -f $FRIENDS_SERVERS_LIST ]; then
  214. chown $MY_USERNAME:$MY_USERNAME $FRIENDS_SERVERS_LIST
  215. fi
  216. }
  217. function show_result {
  218. clear
  219. if (( $entering_remote_backups_ctr < 2 )); then
  220. echo $'No remote backup locations were specified'
  221. exit 0
  222. fi
  223. if [ ! -f $FRIENDS_SERVERS_LIST ]; then
  224. echo $"No remote backups list found: $FRIENDS_SERVERS_LIST"
  225. exit 7358
  226. fi
  227. echo ''
  228. echo $"Remote backups list: $FRIENDS_SERVERS_LIST"
  229. echo ''
  230. echo $'Contents:'
  231. echo ''
  232. cat $FRIENDS_SERVERS_LIST
  233. echo ''
  234. }
  235. if [ ! $FRIENDS_SERVERS_LIST ]; then
  236. FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
  237. fi
  238. interactive_config_remote_backups
  239. show_result
  240. exit 0