freedombone-selector 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Add or remove apps
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2015-2016 Bob Mottram <bob@robotics.uk.to>
  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. PROJECT_NAME='freedombone'
  31. export TEXTDOMAIN=${PROJECT_NAME}-selector
  32. export TEXTDOMAINDIR="/usr/share/locale"
  33. PROJECT_INSTALL_DIR=/usr/local/bin
  34. if [ -f /usr/bin/${PROJECT_NAME} ]; then
  35. PROJECT_INSTALL_DIR=/usr/bin
  36. fi
  37. source $PROJECT_INSTALL_DIR/${PROJECT_NAME}-vars
  38. COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
  39. # Array containing names of available apps
  40. APPS_AVAILABLE=()
  41. # Array containing 1 or 0 indicating installed apps
  42. APPS_INSTALLED=()
  43. # Apps selected with checklist
  44. APPS_CHOSEN=()
  45. function item_in_array {
  46. local e
  47. for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done
  48. return 1
  49. }
  50. function app_is_installed {
  51. app_name="$1"
  52. if [ ! -f $COMPLETION_FILE ]; then
  53. echo "0"
  54. fi
  55. if ! grep -Fxq "install_${app_name}" $COMPLETION_FILE; then
  56. echo "0"
  57. else
  58. echo "1"
  59. fi
  60. }
  61. function get_apps_installed {
  62. for a in "${APPS_AVAILABLE[@]}"
  63. do
  64. APPS_INSTALLED+=("$(app_is_installed $a)")
  65. done
  66. }
  67. function detect_apps {
  68. FILES=$PROJECT_INSTALL_DIR/${PROJECT_NAME}-app-*
  69. # for all the app scripts
  70. for filename in $FILES
  71. do
  72. app_name=$(echo "${filename}" | awk -F '-app-' '{print $2}')
  73. if [[ $(item_in_array ${app_name} ${APPS_AVAILABLE[@]}) != 0 ]]; then
  74. APPS_AVAILABLE+=("${app_name}")
  75. APPS_CHOSEN+=("0")
  76. fi
  77. done
  78. get_apps_installed
  79. }
  80. function show_apps {
  81. applist=""
  82. n=1
  83. app_index=0
  84. for a in "${APPS_AVAILABLE[@]}"
  85. do
  86. if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
  87. applist="$applist $n $a off"
  88. else
  89. applist="$applist $n $a on"
  90. fi
  91. n=$[n+1]
  92. app_index=$[app_index+1]
  93. done
  94. choices=$(dialog --stdout --backtitle $"Freedombone" \
  95. --title $"Installed applications" \
  96. --checklist $'Choose:' \
  97. 80 40 20 $applist)
  98. if [ $? -eq 0 ]; then
  99. for choice in $choices
  100. do
  101. app_index = $[choice-1]
  102. APPS_CHOSEN[$app_index]="1"
  103. done
  104. else
  105. exit 0
  106. fi
  107. }
  108. function remove_apps {
  109. # which apps need to be removed?
  110. removals=""
  111. app_index=0
  112. n=0
  113. for a in "${APPS_INSTALLED[@]}"
  114. do
  115. if [[ ${APPS_INSTALLED[$app_index]} == "1" ]]; then
  116. if [[ ${APPS_CHOSEN[$app_index]} == "0" ]]; then
  117. if [ ${n} -gt 0 ]; then
  118. removals="$removals $APPS_AVAILABLE[$app_index]"
  119. else
  120. removals="$APPS_AVAILABLE[$app_index]"
  121. fi
  122. n=$[n+1]
  123. fi
  124. fi
  125. app_index=$[app_index+1]
  126. done
  127. # if no apps to be removed then don't do anything
  128. if [ ${n} -eq 0 ]; then
  129. return
  130. fi
  131. # ask for confirmation
  132. dialog --title $"Remove applications" \
  133. --backtitle $"Freedombone" \
  134. --defaultno \
  135. --yesno $"\nYou have chosen to remove $n apps.\n\n $removals\n\nIf you choose 'yes' then this will remove both the applications and their data/messages. If you don't have a backup then you will not be able to recover the data for these applications.\n\nAre you sure that you wish to continue?" 15 60
  136. sel=$?
  137. case $sel in
  138. 1) return;;
  139. 255) return;;
  140. esac
  141. # remove the apps
  142. read_configuration
  143. for a in "${APPS_AVAILABLE[@]}"
  144. do
  145. if [[ ${APPS_INSTALLED[$app_index]} == "1" ]]; then
  146. if [[ ${APPS_CHOSEN[$app_index]} == "0" ]]; then
  147. echo $"Removing application: ${a}"
  148. remove_${a}
  149. echo $"${a} was removed"
  150. fi
  151. fi
  152. app_index=$[app_index+1]
  153. done
  154. }
  155. function install_apps {
  156. # which apps need to be installed?
  157. installs=""
  158. app_index=0
  159. n=0
  160. for a in "${APPS_INSTALLED[@]}"
  161. do
  162. if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
  163. if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
  164. if [ ${n} -gt 0 ]; then
  165. installs="$installs $APPS_AVAILABLE[$app_index]"
  166. else
  167. installs="$APPS_AVAILABLE[$app_index]"
  168. fi
  169. n=$[n+1]
  170. fi
  171. fi
  172. app_index=$[app_index+1]
  173. done
  174. # if no apps to be installed then don't do anything
  175. if [ ${n} -eq 0 ]; then
  176. return
  177. fi
  178. # ask for confirmation
  179. dialog --title $"Remove applications" \
  180. --backtitle $"Freedombone" \
  181. --defaultno \
  182. --yesno $"\nYou have chosen to install $n apps.\n\n $installs\n\nIf you choose 'yes' then these will now be installed.\n\nAre you sure that you wish to continue?" 15 60
  183. sel=$?
  184. case $sel in
  185. 1) return;;
  186. 255) return;;
  187. esac
  188. # install the apps
  189. read_configuration
  190. for a in "${APPS_AVAILABLE[@]}"
  191. do
  192. if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
  193. if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
  194. echo $"Installing application: ${a}"
  195. install_${a}
  196. echo $"${a} was installed"
  197. fi
  198. fi
  199. app_index=$[app_index+1]
  200. done
  201. }
  202. ${PROJECT_NAME}-tests
  203. detect_apps
  204. # if no applications were found
  205. if [[ ${#APPS_AVAILABLE[@]} == 0 ]]; then
  206. exit 1
  207. fi
  208. show_apps
  209. clear
  210. remove_apps
  211. install_apps
  212. exit 0