freedombone-utils-android 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. #!/bin/bash
  2. # _____ _ _
  3. # | __|___ ___ ___ _| |___ _____| |_ ___ ___ ___
  4. # | __| _| -_| -_| . | . | | . | . | | -_|
  5. # |__| |_| |___|___|___|___|_|_|_|___|___|_|_|___|
  6. #
  7. # Freedom in the Cloud
  8. #
  9. # Integration with the FreedomBox android app
  10. #
  11. # License
  12. # =======
  13. #
  14. # Copyright (C) 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. function android_update_apps {
  29. if [ "$1" ]; then
  30. detect_installable_apps
  31. fi
  32. local_hostname=$(grep 'host-name' /etc/avahi/avahi-daemon.conf | awk -F '=' '{print $2}').local
  33. plinth_api="/var/www/${local_hostname}/htdocs/plinth/api/1"
  34. if [ ! -d "/var/www/${local_hostname}/htdocs/plinth/api" ]; then
  35. mkdir -p "/var/www/${local_hostname}/htdocs/plinth/api"
  36. fi
  37. echo '{' > "$plinth_api"
  38. echo ' "shortcuts": [' >> "$plinth_api"
  39. android_ctr=0
  40. app_index=0
  41. # shellcheck disable=SC2068
  42. for a in ${APPS_INSTALLED[@]}
  43. do
  44. if [[ "$a" == "1" ]]; then
  45. app_name=${APPS_INSTALLED_NAMES[$app_index]}
  46. app_filename="/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-${app_name}"
  47. if [ -f "$app_filename" ]; then
  48. app_name_upper=$(echo "$app_name" | awk '{print toupper($0)}')
  49. SHORT_DESCRIPTION=
  50. DESCRIPTION=
  51. ICON_URL=
  52. MOBILE_APP_URL=
  53. if ! grep -q "${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename"; then
  54. continue
  55. fi
  56. if grep -q "#${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename"; then
  57. continue
  58. fi
  59. SHORT_DESCRIPTION="$(grep "${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed "s|'||g" | sed 's|\"||g' | awk -F '=' '{print $2}')"
  60. if grep -q "${app_name_upper}_DESCRIPTION=" "$app_filename"; then
  61. DESCRIPTION="$(grep "${app_name_upper}_DESCRIPTION=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed "s|'||g" | sed 's|\"||g' | awk -F '=' '{print $2}')"
  62. fi
  63. if grep -q "${app_name_upper}_ICON_URL=" "$app_filename"; then
  64. ICON_URL="$(grep "${app_name_upper}_ICON_URL=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed 's|\$||g' | sed "s|'||g" | sed 's|\"||g' | awk -F '=' '{print $2}')"
  65. fi
  66. if grep -q "${app_name_upper}_MOBILE_APP_URL=" "$app_filename"; then
  67. MOBILE_APP_URL="$(grep "${app_name_upper}_MOBILE_APP_URL=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed 's|\$||g' | sed "s|'||g" | sed 's|\"||g' | awk -F '=' '{print $2}')"
  68. fi
  69. if [ $android_ctr -gt 0 ]; then
  70. echo ',' >> "$plinth_api"
  71. fi
  72. { echo ' {';
  73. echo " \"name\": \"${app_name}\",";
  74. echo " \"short_description\": \"$SHORT_DESCRIPTION\",";
  75. echo " \"description\": \"$DESCRIPTION\",";
  76. echo " \"icon_url\": \"$ICON_URL\",";
  77. echo " \"clients\": ["; } >> "$plinth_api"
  78. read_config_param "${app_name_upper}_DOMAIN_NAME"
  79. test_domain_name="${app_name_upper}_DOMAIN_NAME"
  80. domain_name=${!test_domain_name}
  81. if [ "$domain_name" ]; then
  82. if [[ "$domain_name" != *'.onion' ]]; then
  83. domain_name="https://${!test_domain_name}"
  84. else
  85. domain_name="http://${!test_domain_name}"
  86. fi
  87. fi
  88. if [[ "$domain_name" && "$app_name" != 'matrix' ]]; then
  89. { echo ' {';
  90. echo " \"name\": \"${app_name}\",";
  91. echo " \"platforms\": [";
  92. echo ' {';
  93. echo ' "type": "web",';
  94. echo " \"url\": \"$domain_name\"";
  95. echo -n ' }'; } >> "$plinth_api"
  96. fi
  97. if [ "$MOBILE_APP_URL" ]; then
  98. if [[ "$domain_name" && "$app_name" != 'matrix' ]]; then
  99. echo ',' >> "$plinth_api"
  100. else
  101. { echo ' {';
  102. echo " \"name\": \"${app_name}\",";
  103. echo " \"platforms\": ["; } >> "$plinth_api"
  104. fi
  105. { echo ' {';
  106. echo ' "type": "store",';
  107. echo ' "os": "android",';
  108. echo ' "store_name": "f-droid",';
  109. echo " \"url\": \"$MOBILE_APP_URL\"";
  110. echo ' }'; } >> "$plinth_api"
  111. else
  112. echo '' >> "$plinth_api"
  113. fi
  114. { echo ' ]';
  115. echo ' }';
  116. echo ' ]';
  117. echo -n ' }'; } >> "$plinth_api"
  118. android_ctr=$((android_ctr+1))
  119. fi
  120. fi
  121. app_index=$((app_index+1))
  122. done
  123. { echo '';
  124. echo ' ]';
  125. echo '}'; } >> "$plinth_api"
  126. chown -R www-data:www-data "/var/www/${local_hostname}/htdocs/plinth"
  127. }
  128. # NOTE: deliberately no exit 0