compose-utils.sh 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. #!/bin/bash
  2. #
  3. # Copyright © 2016-2023 The Thingsboard Authors
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. function additionalComposeArgs() {
  18. source .env
  19. ADDITIONAL_COMPOSE_ARGS=""
  20. case $DATABASE in
  21. postgres)
  22. ADDITIONAL_COMPOSE_ARGS="-f docker-compose.postgres.yml"
  23. ;;
  24. hybrid)
  25. ADDITIONAL_COMPOSE_ARGS="-f docker-compose.hybrid.yml"
  26. ;;
  27. *)
  28. echo "Unknown DATABASE value specified in the .env file: '${DATABASE}'. Should be either 'postgres' or 'hybrid'." >&2
  29. exit 1
  30. esac
  31. echo $ADDITIONAL_COMPOSE_ARGS
  32. }
  33. function additionalComposeQueueArgs() {
  34. source .env
  35. ADDITIONAL_COMPOSE_QUEUE_ARGS=""
  36. case $TB_QUEUE_TYPE in
  37. kafka)
  38. ADDITIONAL_COMPOSE_QUEUE_ARGS="-f docker-compose.kafka.yml"
  39. ;;
  40. confluent)
  41. ADDITIONAL_COMPOSE_QUEUE_ARGS="-f docker-compose.confluent.yml"
  42. ;;
  43. aws-sqs)
  44. ADDITIONAL_COMPOSE_QUEUE_ARGS="-f docker-compose.aws-sqs.yml"
  45. ;;
  46. pubsub)
  47. ADDITIONAL_COMPOSE_QUEUE_ARGS="-f docker-compose.pubsub.yml"
  48. ;;
  49. rabbitmq)
  50. ADDITIONAL_COMPOSE_QUEUE_ARGS="-f docker-compose.rabbitmq.yml"
  51. ;;
  52. service-bus)
  53. ADDITIONAL_COMPOSE_QUEUE_ARGS="-f docker-compose.service-bus.yml"
  54. ;;
  55. *)
  56. echo "Unknown Queue service TB_QUEUE_TYPE value specified in the .env file: '${TB_QUEUE_TYPE}'. Should be either 'kafka' or 'confluent' or 'aws-sqs' or 'pubsub' or 'rabbitmq' or 'service-bus'." >&2
  57. exit 1
  58. esac
  59. echo $ADDITIONAL_COMPOSE_QUEUE_ARGS
  60. }
  61. function additionalComposeMonitoringArgs() {
  62. source .env
  63. if [ "$MONITORING_ENABLED" = true ]
  64. then
  65. ADDITIONAL_COMPOSE_MONITORING_ARGS="-f docker-compose.prometheus-grafana.yml"
  66. echo $ADDITIONAL_COMPOSE_MONITORING_ARGS
  67. else
  68. echo ""
  69. fi
  70. }
  71. function additionalComposeCacheArgs() {
  72. source .env
  73. CACHE_COMPOSE_ARGS=""
  74. CACHE="${CACHE:-redis}"
  75. case $CACHE in
  76. redis)
  77. CACHE_COMPOSE_ARGS="-f docker-compose.redis.yml"
  78. ;;
  79. redis-cluster)
  80. CACHE_COMPOSE_ARGS="-f docker-compose.redis-cluster.yml"
  81. ;;
  82. redis-sentinel)
  83. CACHE_COMPOSE_ARGS="-f docker-compose.redis-sentinel.yml"
  84. ;;
  85. *)
  86. echo "Unknown CACHE value specified in the .env file: '${CACHE}'. Should be either 'redis' or 'redis-cluster' or 'redis-sentinel'." >&2
  87. exit 1
  88. esac
  89. echo $CACHE_COMPOSE_ARGS
  90. }
  91. function additionalStartupServices() {
  92. source .env
  93. ADDITIONAL_STARTUP_SERVICES=""
  94. case $DATABASE in
  95. postgres)
  96. ADDITIONAL_STARTUP_SERVICES="$ADDITIONAL_STARTUP_SERVICES postgres"
  97. ;;
  98. hybrid)
  99. ADDITIONAL_STARTUP_SERVICES="$ADDITIONAL_STARTUP_SERVICES postgres cassandra"
  100. ;;
  101. *)
  102. echo "Unknown DATABASE value specified in the .env file: '${DATABASE}'. Should be either 'postgres' or 'hybrid'." >&2
  103. exit 1
  104. esac
  105. CACHE="${CACHE:-redis}"
  106. case $CACHE in
  107. redis)
  108. ADDITIONAL_STARTUP_SERVICES="$ADDITIONAL_STARTUP_SERVICES redis"
  109. ;;
  110. redis-cluster)
  111. ADDITIONAL_STARTUP_SERVICES="$ADDITIONAL_STARTUP_SERVICES redis-node-0 redis-node-1 redis-node-2 redis-node-3 redis-node-4 redis-node-5"
  112. ;;
  113. redis-sentinel)
  114. ADDITIONAL_STARTUP_SERVICES="$ADDITIONAL_STARTUP_SERVICES redis-master redis-slave redis-sentinel"
  115. ;;
  116. *)
  117. echo "Unknown CACHE value specified in the .env file: '${CACHE}'. Should be either 'redis' or 'redis-cluster' or 'redis-sentinel'." >&2
  118. exit 1
  119. esac
  120. echo $ADDITIONAL_STARTUP_SERVICES
  121. }
  122. function permissionList() {
  123. PERMISSION_LIST="
  124. 799 799 tb-node/log
  125. 799 799 tb-transports/coap/log
  126. 799 799 tb-transports/lwm2m/log
  127. 799 799 tb-transports/http/log
  128. 799 799 tb-transports/mqtt/log
  129. 799 799 tb-transports/snmp/log
  130. 799 799 tb-transports/coap/log
  131. 799 799 tb-vc-executor/log
  132. 999 999 tb-node/postgres
  133. "
  134. source .env
  135. if [ "$DATABASE" = "hybrid" ]; then
  136. PERMISSION_LIST="$PERMISSION_LIST
  137. 999 999 tb-node/cassandra
  138. "
  139. fi
  140. CACHE="${CACHE:-redis}"
  141. case $CACHE in
  142. redis)
  143. PERMISSION_LIST="$PERMISSION_LIST
  144. 1001 1001 tb-node/redis-data
  145. "
  146. ;;
  147. redis-cluster)
  148. PERMISSION_LIST="$PERMISSION_LIST
  149. 1001 1001 tb-node/redis-cluster-data-0
  150. 1001 1001 tb-node/redis-cluster-data-1
  151. 1001 1001 tb-node/redis-cluster-data-2
  152. 1001 1001 tb-node/redis-cluster-data-3
  153. 1001 1001 tb-node/redis-cluster-data-4
  154. 1001 1001 tb-node/redis-cluster-data-5
  155. "
  156. ;;
  157. redis-sentinel)
  158. PERMISSION_LIST="$PERMISSION_LIST
  159. 1001 1001 tb-node/redis-sentinel-data-master
  160. 1001 1001 tb-node/redis-sentinel-data-slave
  161. 1001 1001 tb-node/redis-sentinel-data-sentinel
  162. "
  163. ;;
  164. *)
  165. echo "Unknown CACHE value specified in the .env file: '${CACHE}'. Should be either 'redis' or 'redis-cluster' or 'redis-sentinel'." >&2
  166. exit 1
  167. esac
  168. echo "$PERMISSION_LIST"
  169. }
  170. function checkFolders() {
  171. EXIT_CODE=0
  172. PERMISSION_LIST=$(permissionList) || exit $?
  173. set -e
  174. while read -r USR GRP DIR
  175. do
  176. if [ -z "$DIR" ]; then # skip empty lines
  177. continue
  178. fi
  179. MESSAGE="Checking user ${USR} group ${GRP} dir ${DIR}"
  180. if [[ -d "$DIR" ]] &&
  181. [[ $(ls -ldn "$DIR" | awk '{print $3}') -eq "$USR" ]] &&
  182. [[ $(ls -ldn "$DIR" | awk '{print $4}') -eq "$GRP" ]]
  183. then
  184. MESSAGE="$MESSAGE OK"
  185. else
  186. if [ "$1" = "--create" ]; then
  187. echo "Create and chown: user ${USR} group ${GRP} dir ${DIR}"
  188. mkdir -p "$DIR" && sudo chown -R "$USR":"$GRP" "$DIR"
  189. else
  190. echo "$MESSAGE FAILED"
  191. EXIT_CODE=1
  192. fi
  193. fi
  194. done < <(echo "$PERMISSION_LIST")
  195. return $EXIT_CODE
  196. }
  197. function composeVersion() {
  198. #Checking whether "set -e" shell option should be restored after Compose version check
  199. FLAG_SET=false
  200. if [[ $SHELLOPTS =~ errexit ]]; then
  201. set +e
  202. FLAG_SET=true
  203. fi
  204. #Checking Compose V1 availablity
  205. docker-compose version >/dev/null 2>&1
  206. if [ $? -eq 0 ]; then status_v1=true; else status_v1=false; fi
  207. #Checking Compose V2 availablity
  208. docker compose version >/dev/null 2>&1
  209. if [ $? -eq 0 ]; then status_v2=true; else status_v2=false; fi
  210. COMPOSE_VERSION=""
  211. if $status_v2 ; then
  212. COMPOSE_VERSION="V2"
  213. elif $status_v1 ; then
  214. COMPOSE_VERSION="V1"
  215. else
  216. echo "Docker Compose plugin is not detected. Please check your environment." >&2
  217. exit 1
  218. fi
  219. echo $COMPOSE_VERSION
  220. if $FLAG_SET ; then set -e; fi
  221. }