freedombone-utils-selector 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718
  1. #!/bin/bash
  2. # _____ _ _
  3. # | __|___ ___ ___ _| |___ _____| |_ ___ ___ ___
  4. # | __| _| -_| -_| . | . | | . | . | | -_|
  5. # |__| |_| |___|___|___|___|_|_|_|___|___|_|_|___|
  6. #
  7. # Freedom in the Cloud
  8. #
  9. # Functions for selecting which apps to install or remove
  10. #
  11. # License
  12. # =======
  13. #
  14. # Copyright (C) 2015-2018 Bob Mottram <bob@freedombone.net>
  15. #
  16. # This program is free software: you can redistribute it and/or modify
  17. # it under the terms of the GNU Affero General Public License as published by
  18. # the Free Software Foundation, either version 3 of the License, or
  19. # (at your option) any later version.
  20. #
  21. # This program is distributed in the hope that it will be useful,
  22. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. # GNU Affero General Public License for more details.
  25. #
  26. # You should have received a copy of the GNU Affero General Public License
  27. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  28. # Array containing names of available apps
  29. APPS_AVAILABLE=()
  30. # Array containing 1 or 0 indicating installed apps
  31. APPS_INSTALLED=()
  32. # Apps selected with checklist
  33. APPS_CHOSEN=()
  34. # A list of the names of installed apps
  35. APPS_INSTALLED_NAMES=()
  36. # file containing a list of removed apps
  37. REMOVED_APPS_FILE=/root/removed
  38. INSTALLED_APPS_LIST=/usr/share/${PROJECT_NAME}/installed.txt
  39. # keep a list of which users have been added to which apps
  40. # so that when a new app is added existing users can be added
  41. APP_USERS_FILE=$HOME/app_users.txt
  42. if [ ! "$COMPLETION_FILE" ]; then
  43. COMPLETION_FILE="$HOME/${PROJECT_NAME}-completed.txt"
  44. fi
  45. # Loads variables defined at the beginning of an app script
  46. function app_load_variables {
  47. app_name=$1
  48. config_var_name=${app_name}_variables
  49. # shellcheck disable=SC2086
  50. if [ ! ${!config_var_name} ]; then
  51. echo $"${app_name}_variables was not found"
  52. return
  53. fi
  54. #shellcheck disable=SC1087,SC2125,SC2178
  55. configvarname=$config_var_name[@]
  56. #shellcheck disable=SC2206
  57. configvarname=( ${!configvarname} )
  58. # shellcheck disable=SC2068
  59. for v in ${configvarname[@]}
  60. do
  61. read_config_param "$v"
  62. done
  63. }
  64. # Saves variables for a given app script
  65. function app_save_variables {
  66. app_name=$1
  67. config_var_name=${app_name}_variables
  68. #shellcheck disable=SC2086
  69. if [ ! ${!config_var_name} ]; then
  70. return
  71. fi
  72. #shellcheck disable=SC1087,SC2125,SC2178
  73. configvarname=$config_var_name[@]
  74. #shellcheck disable=SC2206
  75. configvarname=( ${!configvarname} )
  76. # shellcheck disable=SC2068
  77. for v in ${configvarname[@]}
  78. do
  79. write_config_param "$v" "${!v}"
  80. done
  81. }
  82. # gets the variants list from an app script
  83. function app_variants {
  84. filename=$1
  85. variants_line=$(grep 'VARIANTS=' "${filename}")
  86. if [[ "$variants_line" == *"'"* ]]; then
  87. variants_list=$(echo "$variants_line" | awk -F '=' '{print $2}' | awk -F "'" '{print $2}')
  88. else
  89. variants_list=$(echo "$variants_line" | awk -F '=' '{print $2}' | awk -F '"' '{print $2}')
  90. fi
  91. echo "$variants_list"
  92. }
  93. # whether a given item is in an array
  94. function item_in_array {
  95. local e
  96. for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done
  97. return 1
  98. }
  99. # returns a list of available system variants
  100. # based upon the variants string in each app script
  101. function available_system_variants {
  102. function_check item_in_array
  103. FILES="/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-*"
  104. new_available_variants_list=()
  105. for filename in $FILES
  106. do
  107. system_variants_list=$(app_variants "$filename")
  108. # shellcheck disable=SC2206
  109. variants_array=($system_variants_list)
  110. # shellcheck disable=SC2068
  111. for variant_str in ${variants_array[@]}
  112. do
  113. if ! item_in_array "${variant_str}" ${new_available_variants_list[@]}; then
  114. new_available_variants_list+=("$variant_str")
  115. fi
  116. done
  117. done
  118. # shellcheck disable=SC2207
  119. available_variants_list=($(sort <<<"${new_available_variants_list[*]}"))
  120. }
  121. function is_valid_variant {
  122. sys_type="$1"
  123. available_variants_list=()
  124. function_check available_system_variants
  125. available_system_variants
  126. # shellcheck disable=SC2068
  127. for variant_str in ${available_variants_list[@]}
  128. do
  129. if [[ "$sys_type" == "$variant_str" ]]; then
  130. return "1"
  131. fi
  132. done
  133. return "0"
  134. }
  135. function show_available_variants {
  136. available_variants_list=()
  137. function_check available_system_variants
  138. available_system_variants
  139. # shellcheck disable=SC2068
  140. for variant_str in ${available_variants_list[@]}
  141. do
  142. echo " $variant_str"
  143. done
  144. }
  145. # mark a given app as having been removed so that it doesn't get reinstalled on updates
  146. function remove_app {
  147. app_name=$1
  148. if [ ! -f $REMOVED_APPS_FILE ]; then
  149. touch $REMOVED_APPS_FILE
  150. fi
  151. if ! grep -Fxq "_${app_name}_" $REMOVED_APPS_FILE; then
  152. echo "_${app_name}_" >> $REMOVED_APPS_FILE
  153. fi
  154. if grep -Fxq "install_${app_name}" "$COMPLETION_FILE"; then
  155. sed -i "/install_${app_name}/d" "$COMPLETION_FILE"
  156. fi
  157. if grep -Fxq "install_${app_name}" "$INSTALLED_APPS_LIST"; then
  158. sed -i "/install_${app_name}/d" "$INSTALLED_APPS_LIST"
  159. fi
  160. }
  161. # returns 1 if an app has been marked as removed
  162. function app_is_removed {
  163. app_name="$1"
  164. if [ ! -f $REMOVED_APPS_FILE ]; then
  165. echo "0"
  166. return
  167. fi
  168. if ! grep -Fxq "_${app_name}_" $REMOVED_APPS_FILE; then
  169. echo "0"
  170. else
  171. echo "1"
  172. fi
  173. }
  174. # Allows an app to be reinstalled even if it was previously marked as being removed
  175. function reinstall_app {
  176. app_name=$1
  177. if [ ! -f $REMOVED_APPS_FILE ]; then
  178. return
  179. fi
  180. if [[ $(app_is_removed "$app_name") == "1" ]]; then
  181. sed -i "/_${app_name}_/d" $REMOVED_APPS_FILE
  182. fi
  183. }
  184. # returns 1 if an app is installed
  185. function app_is_installed {
  186. app_name="$1"
  187. # Why does this secondary file exist, apart from COMPLETION_FILE ?
  188. # It's so that it is visible to unprivileged users from the user control panel
  189. if [ -f "$INSTALLED_APPS_LIST" ]; then
  190. if ! grep -Fxq "install_${app_name}" "$INSTALLED_APPS_LIST"; then
  191. echo "0"
  192. else
  193. echo "1"
  194. fi
  195. return
  196. fi
  197. # check the completion file to see if it was installed
  198. if [ ! -f "$COMPLETION_FILE" ]; then
  199. echo "0"
  200. return
  201. fi
  202. if ! grep -Fxq "install_${app_name}" "$COMPLETION_FILE"; then
  203. echo "0"
  204. else
  205. echo "1"
  206. fi
  207. }
  208. # called at the end of the install section of an app script
  209. function install_completed {
  210. if [ ! "${1}" ]; then
  211. exit 673935
  212. fi
  213. if ! grep -Fxq "install_${1}" "$COMPLETION_FILE"; then
  214. echo "install_${1}" >> "$COMPLETION_FILE"
  215. fi
  216. }
  217. # populates an array of "0" or "1" for whether apps are installed
  218. function get_apps_installed {
  219. # shellcheck disable=SC2068
  220. for a in ${APPS_AVAILABLE[@]}
  221. do
  222. APPS_INSTALLED+=("$(app_is_installed "$a")")
  223. done
  224. }
  225. # populates an array of installed app names
  226. function get_apps_installed_names {
  227. APPS_INSTALLED_NAMES=()
  228. # shellcheck disable=SC2068
  229. for a in ${APPS_AVAILABLE[@]}
  230. do
  231. if [[ $(app_is_installed "$a") == "1" ]]; then
  232. APPS_INSTALLED_NAMES+=("$a")
  233. fi
  234. done
  235. }
  236. function app_not_on_onion_only {
  237. app_name="$1"
  238. read_config_param ONION_ONLY
  239. if [[ "$ONION_ONLY" != 'no' ]]; then
  240. if grep -q "NOT_ON_ONION=1" "/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-${app_name}"; then
  241. echo "0"
  242. return
  243. fi
  244. fi
  245. echo "1"
  246. }
  247. function app_not_on_arm {
  248. app_name="$1"
  249. if grep -q "NOT_ON_ARM=1" "/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-${app_name}"; then
  250. archtype=$(uname -m)
  251. if [[ "$archtype" == 'arm'* ]]; then
  252. echo "0"
  253. return
  254. fi
  255. fi
  256. echo "1"
  257. }
  258. function enough_ram_for_app {
  259. app_name="$1"
  260. if ! grep -q "MINIMUM_RAM_MB=" "/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-${app_name}"; then
  261. echo "0"
  262. return
  263. fi
  264. minimum_ram_MB=$(grep "MINIMUM_RAM_MB=" "/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-${app_name}" | head -n 1 | awk -F '=' '{print $2}')
  265. minimum_ram_bytes=$((minimum_ram_MB * 1024))
  266. ram_available=$(grep MemTotal /proc/meminfo | awk '{print $2}')
  267. if [ "$ram_available" -lt "$minimum_ram_bytes" ]; then
  268. echo "1"
  269. return
  270. fi
  271. echo "0"
  272. }
  273. # detects what apps are available
  274. function detect_apps {
  275. FILES="/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-*"
  276. function_check item_in_array
  277. APPS_AVAILABLE=()
  278. APPS_CHOSEN=()
  279. # for all the app scripts
  280. for filename in $FILES
  281. do
  282. app_name=$(echo "${filename}" | awk -F '-app-' '{print $2}')
  283. if [[ $(enough_ram_for_app "$app_name") == "0" ]]; then
  284. if [[ $(app_not_on_onion_only "$app_name") != "0" ]]; then
  285. if [[ $(app_not_on_arm "$app_name") != "0" ]]; then
  286. # shellcheck disable=SC2068
  287. if ! item_in_array "${app_name}" ${APPS_AVAILABLE[@]}; then
  288. APPS_AVAILABLE+=("${app_name}")
  289. APPS_CHOSEN+=("0")
  290. fi
  291. fi
  292. fi
  293. fi
  294. done
  295. function_check get_apps_installed
  296. get_apps_installed
  297. get_apps_installed_names
  298. }
  299. # detects what apps are available and can be installed
  300. # If the variants list within an app script is an empty string then
  301. # it is considered to be too experimental to be installable
  302. function detect_installable_apps {
  303. FILES="/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-*"
  304. APPS_AVAILABLE=()
  305. APPS_CHOSEN=()
  306. APPS_INSTALLED=()
  307. APPS_INSTALLED_NAMES=()
  308. function_check app_variants
  309. function_check app_is_installed
  310. function_check item_in_array
  311. # for all the app scripts
  312. for filename in $FILES
  313. do
  314. app_name=$(echo "${filename}" | awk -F '-app-' '{print $2}')
  315. if [[ $(enough_ram_for_app "$app_name") == "0" ]]; then
  316. if [[ $(app_not_on_onion_only "$app_name") != "0" ]]; then
  317. if [[ $(app_not_on_arm "$app_name") != "0" ]]; then
  318. # shellcheck disable=SC2068
  319. if ! item_in_array "${app_name}" ${APPS_AVAILABLE[@]}; then
  320. variants_list=$(app_variants "$filename")
  321. # check for empty string
  322. if [ ${#variants_list} -gt 0 ]; then
  323. APPS_AVAILABLE+=("${app_name}")
  324. APPS_CHOSEN+=("0")
  325. APPS_INSTALLED+=("$(app_is_installed "$app_name")")
  326. if [[ $(app_is_installed "$app_name") == "1" ]]; then
  327. APPS_INSTALLED_NAMES+=("$app_name")
  328. fi
  329. fi
  330. fi
  331. fi
  332. fi
  333. fi
  334. done
  335. }
  336. function detect_installed_apps {
  337. FILES="/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-*"
  338. APPS_AVAILABLE=()
  339. APPS_INSTALLED=()
  340. APPS_INSTALLED_NAMES=()
  341. function_check app_variants
  342. function_check app_is_installed
  343. function_check item_in_array
  344. # for all the app scripts
  345. for filename in $FILES
  346. do
  347. app_name=$(echo "${filename}" | awk -F '-app-' '{print $2}')
  348. if [[ $(enough_ram_for_app "$app_name") == "0" ]]; then
  349. if [[ $(app_not_on_onion_only "$app_name") != "0" ]]; then
  350. if [[ $(app_not_on_arm "$app_name") != "0" ]]; then
  351. if [[ $(app_is_installed "$app_name") == "1" ]]; then
  352. # shellcheck disable=SC2068
  353. if ! item_in_array "${app_name}" ${APPS_AVAILABLE[@]}; then
  354. variants_list=$(app_variants "$filename")
  355. if [ ${#variants_list} -gt 0 ]; then
  356. APPS_AVAILABLE+=("${app_name}")
  357. APPS_INSTALLED_NAMES+=("$app_name")
  358. fi
  359. fi
  360. fi
  361. fi
  362. fi
  363. fi
  364. done
  365. }
  366. # creates the APPS_AVAILABLE and APPS_CHOSEN arrays based on
  367. # the given variant name
  368. function choose_apps_for_variant {
  369. variant_name="$1"
  370. function_check item_in_array
  371. function_check app_variants
  372. function_check app_is_removed
  373. if [ ${#variant_name} -eq 0 ]; then
  374. echo $"No variant name for choosing apps"
  375. exit 237567
  376. fi
  377. FILES="/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-*"
  378. APPS_CHOSEN=()
  379. # for all the app scripts
  380. for filename in $FILES
  381. do
  382. app_name=$(echo "${filename}" | awk -F '-app-' '{print $2}')
  383. if [[ $(enough_ram_for_app "$app_name") == "0" ]]; then
  384. if [[ $(app_not_on_onion_only "$app_name") != "0" ]]; then
  385. if [[ $(app_not_on_arm "$app_name") != "0" ]]; then
  386. # shellcheck disable=SC2068
  387. if item_in_array "${app_name}" ${APPS_AVAILABLE[@]}; then
  388. if grep -q "VARIANTS=" "${filename}"; then
  389. variants_list=$(app_variants "$filename")
  390. if [[ "${variants_list}" == 'all'* || \
  391. "${variants_list}" == "$variant_name" || \
  392. "${variants_list}" == "$variant_name "* || \
  393. "${variants_list}" == *" $variant_name "* || \
  394. "${variants_list}" == *" $variant_name" ]]; then
  395. if [[ $(app_is_removed "${a}") == "0" ]]; then
  396. #echo $"${app_name} chosen"
  397. APPS_CHOSEN+=("1")
  398. else
  399. APPS_CHOSEN+=("0")
  400. fi
  401. else
  402. APPS_CHOSEN+=("0")
  403. fi
  404. else
  405. APPS_CHOSEN+=("0")
  406. fi
  407. fi
  408. fi
  409. fi
  410. fi
  411. done
  412. function_check get_apps_installed
  413. get_apps_installed
  414. }
  415. # show a list of apps which have been chosen
  416. function list_chosen_apps {
  417. app_index=0
  418. # shellcheck disable=SC2068
  419. for a in ${APPS_AVAILABLE[@]}
  420. do
  421. if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
  422. echo $"${a}"
  423. fi
  424. app_index=$((app_index+1))
  425. done
  426. }
  427. function remove_apps {
  428. app_index=0
  429. # shellcheck disable=SC2068
  430. for a in ${APPS_AVAILABLE[@]}
  431. do
  432. if [[ ${APPS_INSTALLED[$app_index]} == "1" ]]; then
  433. if [[ ${APPS_CHOSEN[$app_index]} == "0" ]]; then
  434. echo $"Removing users for application: ${a}"
  435. function_check remove_users_for_app
  436. remove_users_for_app "${a}"
  437. echo $"Removing application: ${a}"
  438. function_check app_load_variables
  439. app_load_variables "${a}"
  440. function_check remove_app
  441. remove_app "${a}"
  442. function_check "remove_${a}"
  443. "remove_${a}"
  444. echo $"${a} was removed"
  445. fi
  446. fi
  447. app_index=$((app_index+1))
  448. done
  449. update_installed_apps_list
  450. }
  451. function install_apps_interactive {
  452. echo $"Interactive installer"
  453. app_index=0
  454. # shellcheck disable=SC2068
  455. for a in ${APPS_AVAILABLE[@]}
  456. do
  457. if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
  458. if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
  459. # interactively obtain settings for this app
  460. if [[ $(function_exists "install_interactive_${a}") == "1" ]]; then
  461. "install_interactive_${a}"
  462. fi
  463. fi
  464. fi
  465. app_index=$((app_index+1))
  466. done
  467. echo $"Interactive settings complete"
  468. }
  469. function user_added_to_app {
  470. user_name="$1"
  471. app_name="$2"
  472. if [[ $(is_valid_user "$user_name") == "1" ]]; then
  473. if [[ $(function_exists "add_user_${app_name}") == "1" ]]; then
  474. if grep -Fxq "${app_name}_${user_name}" "$APP_USERS_FILE"; then
  475. echo "1"
  476. return
  477. fi
  478. fi
  479. fi
  480. echo "0"
  481. }
  482. function add_users_after_install {
  483. app_name="$1"
  484. read_config_param MY_USERNAME
  485. # ensure a minimum password length
  486. if [ ! "$MINIMUM_PASSWORD_LENGTH" ]; then
  487. MINIMUM_PASSWORD_LENGTH=20
  488. fi
  489. if [ ${#MINIMUM_PASSWORD_LENGTH} -lt 20 ]; then
  490. MINIMUM_PASSWORD_LENGTH=20
  491. fi
  492. ADMIN_USERNAME=$(get_completion_param "Admin user")
  493. if [ ! "$ADMIN_USERNAME" ]; then
  494. ADMIN_USERNAME=$MY_USERNAME
  495. fi
  496. for d in /home/*/ ; do
  497. USERNAME=$(echo "$d" | awk -F '/' '{print $3}')
  498. if [[ $(is_valid_user "$USERNAME") == "1" ]]; then
  499. if [[ "$USERNAME" != "$ADMIN_USERNAME" ]]; then
  500. if [[ $(user_added_to_app "${USERNAME}" "${app_name}") == "0" ]]; then
  501. #valstr=$"Login for user ${USERNAME}="
  502. app_password="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
  503. "add_user_${app_name}" "${USERNAME}" "${app_password}"
  504. echo "${app_name}_${USERNAME}" >> "$APP_USERS_FILE"
  505. fi
  506. fi
  507. fi
  508. done
  509. }
  510. function remove_users_for_app {
  511. app_name="$1"
  512. read_config_param MY_USERNAME
  513. for d in /home/*/ ; do
  514. USERNAME=$(echo "$d" | awk -F '/' '{print $3}')
  515. if [[ $(is_valid_user "$USERNAME") == "1" ]]; then
  516. if [[ "$USERNAME" != "$MY_USERNAME" ]]; then
  517. if [[ $(user_added_to_app "${USERNAME}" "${app_name}") == "1" ]]; then
  518. if [[ $(function_exists "remove_user_${app_name}") == "1" ]]; then
  519. "remove_user_${app_name}" "${USERNAME}"
  520. fi
  521. sed -i "/${app_name}_${USERNAME}/d" "$APP_USERS_FILE"
  522. fi
  523. fi
  524. fi
  525. done
  526. }
  527. function install_apps {
  528. is_interactive=$1
  529. APP_INSTALLED_SUCCESS=1
  530. # interactive install configuration for each app
  531. if [ "${is_interactive}" ]; then
  532. install_apps_interactive
  533. fi
  534. # now install the apps
  535. app_index=0
  536. # shellcheck disable=SC2068
  537. for a in ${APPS_AVAILABLE[@]}
  538. do
  539. if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
  540. if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
  541. # remove any temp files
  542. rm -rf /tmp/*
  543. if [ "${is_interactive}" ]; then
  544. # clears any removal indicator
  545. function_check reinstall_app
  546. reinstall_app "${a}"
  547. function_check app_load_variables
  548. app_load_variables "${a}"
  549. if [[ $(app_is_installed "${a}") == "1" ]]; then
  550. echo $"Upgrading application from interactive: ${a}"
  551. "upgrade_${a}"
  552. echo $"${a} was upgraded from interactive"
  553. else
  554. echo $"Installing application from interactive: ${a}"
  555. APP_INSTALLED=
  556. "install_${a}"
  557. if [ $APP_INSTALLED ]; then
  558. function_check app_save_variables
  559. app_save_variables "${a}"
  560. function_check add_users_after_install
  561. add_users_after_install "${a}"
  562. function_check lockdown_permissions
  563. lockdown_permissions
  564. function_check install_completed
  565. install_completed "${a}"
  566. echo $"${a} was installed from interactive"
  567. else
  568. echo "Failed to install: ${a}" >> "/var/log/${PROJECT_NAME}.log"
  569. APP_INSTALLED_SUCCESS=
  570. echo $"${a} was not installed from interactive"
  571. fi
  572. fi
  573. else
  574. # check if the app was removed
  575. if [[ $(app_is_removed "${a}") == "0" ]]; then
  576. function_check app_load_variables
  577. app_load_variables "${a}"
  578. if [[ $(app_is_installed "${a}") == "1" ]]; then
  579. echo $"Upgrading application: ${a}"
  580. "upgrade_${a}"
  581. echo $"${a} was upgraded"
  582. else
  583. echo $"Installing application: ${a}"
  584. APP_INSTALLED=
  585. "install_${a}"
  586. if [ $APP_INSTALLED ]; then
  587. function_check app_save_variables
  588. app_save_variables "${a}"
  589. function_check add_users_after_install
  590. add_users_after_install "${a}"
  591. function_check lockdown_permissions
  592. lockdown_permissions
  593. function_check install_completed
  594. install_completed "${a}"
  595. echo $"${a} was installed"
  596. else
  597. echo "Failed to install: ${a}" >> "/var/log/${PROJECT_NAME}.log"
  598. APP_INSTALLED_SUCCESS=
  599. echo $"${a} was not installed"
  600. fi
  601. fi
  602. else
  603. echo $"${a} has been removed and so will not be reinstalled"
  604. fi
  605. fi
  606. fi
  607. fi
  608. app_index=$((app_index+1))
  609. done
  610. function_check update_installed_apps_list
  611. update_installed_apps_list
  612. }
  613. # NOTE: deliberately no exit 0