manage.sh 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. #!/bin/sh
  2. BASE_DIR="$(dirname -- "`readlink -f -- "$0"`")"
  3. cd -- "$BASE_DIR"
  4. set -e
  5. # subshell
  6. PYTHONPATH="$BASE_DIR"
  7. SEARX_DIR="$BASE_DIR/searx"
  8. ACTION="$1"
  9. . "${BASE_DIR}/utils/brand.env"
  10. #
  11. # Python
  12. #
  13. update_packages() {
  14. pip install --upgrade pip
  15. pip install --upgrade setuptools
  16. pip install -Ur "$BASE_DIR/requirements.txt"
  17. }
  18. update_dev_packages() {
  19. update_packages
  20. pip install -Ur "$BASE_DIR/requirements-dev.txt"
  21. }
  22. install_geckodriver() {
  23. echo '[!] Checking geckodriver'
  24. # TODO : check the current geckodriver version
  25. set -e
  26. geckodriver -V > /dev/null 2>&1 || NOTFOUND=1
  27. set +e
  28. if [ -z "$NOTFOUND" ]; then
  29. return
  30. fi
  31. GECKODRIVER_VERSION="v0.24.0"
  32. PLATFORM="`python -c "import six; import platform; six.print_(platform.system().lower(), platform.architecture()[0])"`"
  33. case "$PLATFORM" in
  34. "linux 32bit" | "linux2 32bit") ARCH="linux32";;
  35. "linux 64bit" | "linux2 64bit") ARCH="linux64";;
  36. "windows 32 bit") ARCH="win32";;
  37. "windows 64 bit") ARCH="win64";;
  38. "mac 64bit") ARCH="macos";;
  39. esac
  40. GECKODRIVER_URL="https://github.com/mozilla/geckodriver/releases/download/$GECKODRIVER_VERSION/geckodriver-$GECKODRIVER_VERSION-$ARCH.tar.gz";
  41. if [ -z "$1" ]; then
  42. if [ -z "$VIRTUAL_ENV" ]; then
  43. printf "geckodriver can't be installed because VIRTUAL_ENV is not set, you should download it from\n %s" "$GECKODRIVER_URL"
  44. exit
  45. else
  46. GECKODRIVER_DIR="$VIRTUAL_ENV/bin"
  47. fi
  48. else
  49. GECKODRIVER_DIR="$1"
  50. mkdir -p -- "$GECKODRIVER_DIR"
  51. fi
  52. printf "Installing %s/geckodriver from\n %s" "$GECKODRIVER_DIR" "$GECKODRIVER_URL"
  53. FILE="`mktemp`"
  54. wget -qO "$FILE" -- "$GECKODRIVER_URL" && tar xz -C "$GECKODRIVER_DIR" -f "$FILE" geckodriver
  55. rm -- "$FILE"
  56. chmod 777 -- "$GECKODRIVER_DIR/geckodriver"
  57. }
  58. locales() {
  59. pybabel compile -d "$SEARX_DIR/translations"
  60. }
  61. #
  62. # Web
  63. #
  64. npm_path_setup() {
  65. which npm || (printf 'Error: npm is not found\n'; exit 1)
  66. export PATH="$(npm bin)":$PATH
  67. }
  68. npm_packages() {
  69. npm_path_setup
  70. echo '[!] install NPM packages'
  71. cd -- "$BASE_DIR"
  72. npm install less@2.7 less-plugin-clean-css grunt-cli
  73. echo '[!] install NPM packages for oscar theme'
  74. cd -- "$BASE_DIR/searx/static/themes/oscar"
  75. npm install
  76. echo '[!] install NPM packages for simple theme'
  77. cd -- "$BASE_DIR/searx/static/themes/simple"
  78. npm install
  79. }
  80. docker_build() {
  81. # Check if it is a git repository
  82. if [ ! -d .git ]; then
  83. echo "This is not Git repository"
  84. exit 1
  85. fi
  86. if [ ! -x "$(which git)" ]; then
  87. echo "git is not installed"
  88. exit 1
  89. fi
  90. if [ ! git remote get-url origin 2> /dev/null ]; then
  91. echo "there is no remote origin"
  92. exit 1
  93. fi
  94. # This is a git repository
  95. # "git describe" to get the Docker version (for example : v0.15.0-89-g0585788e)
  96. # awk to remove the "v" and the "g"
  97. SEARX_GIT_VERSION=$(git describe --match "v[0-9]*\.[0-9]*\.[0-9]*" HEAD 2>/dev/null | awk -F'-' '{OFS="-"; $1=substr($1, 2); $3=substr($3, 2); print}')
  98. # add the suffix "-dirty" if the repository has uncommited change
  99. git update-index -q --refresh
  100. if [ ! -z "$(git diff-index --name-only HEAD --)" ]; then
  101. SEARX_GIT_VERSION="${SEARX_GIT_VERSION}-dirty"
  102. fi
  103. # Get the last git commit id, will be added to the Searx version (see Dockerfile)
  104. VERSION_GITCOMMIT=$(echo $SEARX_GIT_VERSION | cut -d- -f2-4)
  105. echo "Last commit : $VERSION_GITCOMMIT"
  106. # Check consistency between the git tag and the searx/version.py file
  107. # /!\ HACK : parse Python file with bash /!\
  108. # otherwise it is not possible build the docker image without all Python dependencies ( version.py loads __init__.py )
  109. # SEARX_PYTHON_VERSION=$(python -c "import six; import searx.version; six.print_(searx.version.VERSION_STRING)")
  110. SEARX_PYTHON_VERSION=$(cat searx/version.py | grep "\(VERSION_MAJOR\|VERSION_MINOR\|VERSION_BUILD\) =" | cut -d\= -f2 | sed -e 's/^[[:space:]]*//' | paste -sd "." -)
  111. if [ $(echo "$SEARX_GIT_VERSION" | cut -d- -f1) != "$SEARX_PYTHON_VERSION" ]; then
  112. echo "Inconsistency between the last git tag and the searx/version.py file"
  113. echo "git tag: $SEARX_GIT_VERSION"
  114. echo "searx/version.py: $SEARX_PYTHON_VERSION"
  115. exit 1
  116. fi
  117. # define the docker image name
  118. GITHUB_USER=$(echo "${GIT_URL}" | sed 's/.*github\.com\/\([^\/]*\).*/\1/')
  119. SEARX_IMAGE_NAME="${GITHUB_USER:-searx}/searx"
  120. # build Docker image
  121. echo "Building image ${SEARX_IMAGE_NAME}:${SEARX_GIT_VERSION}"
  122. sudo docker build \
  123. --build-arg GIT_URL="${GIT_URL}" \
  124. --build-arg SEARX_GIT_VERSION="${SEARX_GIT_VERSION}" \
  125. --build-arg VERSION_GITCOMMIT="${VERSION_GITCOMMIT}" \
  126. --build-arg LABEL_DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
  127. --build-arg LABEL_VCS_REF=$(git rev-parse HEAD) \
  128. --build-arg LABEL_VCS_URL="${GIT_URL}" \
  129. --build-arg TIMESTAMP_SETTINGS=$(git log -1 --format="%cd" --date=unix -- searx/settings.yml) \
  130. --build-arg TIMESTAMP_UWSGI=$(git log -1 --format="%cd" --date=unix -- dockerfiles/uwsgi.ini) \
  131. -t ${SEARX_IMAGE_NAME}:latest -t ${SEARX_IMAGE_NAME}:${SEARX_GIT_VERSION} .
  132. if [ "$1" = "push" ]; then
  133. sudo docker push ${SEARX_IMAGE_NAME}:latest
  134. sudo docker push ${SEARX_IMAGE_NAME}:${SEARX_GIT_VERSION}
  135. fi
  136. }
  137. #
  138. # Help
  139. #
  140. help() {
  141. [ -z "$1" ] || printf 'Error: %s\n' "$1"
  142. echo "Searx manage.sh help
  143. Commands
  144. ========
  145. help - This text
  146. Build requirements
  147. ------------------
  148. update_packages - Check & update production dependency changes
  149. update_dev_packages - Check & update development and production dependency changes
  150. install_geckodriver - Download & install geckodriver if not already installed (required for robot_tests)
  151. npm_packages - Download & install npm dependencies
  152. Build
  153. -----
  154. locales - Compile locales
  155. Environment:
  156. GIT_URL: ${GIT_URL}
  157. ISSUE_URL: ${ISSUE_URL}
  158. SEARX_URL: ${SEARX_URL}
  159. DOCS_URL: ${DOCS_URL}
  160. PUBLIC_INSTANCES: ${PUBLIC_INSTANCES}
  161. "
  162. }
  163. [ "$(command -V "$ACTION" | grep ' function$')" = "" ] \
  164. && help "action not found" \
  165. || "$ACTION" "$2"