| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | #!/usr/bin/env bash | 
					
						
							|  |  |  | # -*- coding: utf-8; mode: sh indent-tabs-mode: nil -*- | 
					
						
							|  |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2021-11-14 18:10:14 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # shellcheck disable=SC2034 | 
					
						
							|  |  |  | main_cmd="$(basename "$0")" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # shellcheck source=utils/lib.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-14 18:10:14 +01:00
										 |  |  | # shellcheck source=utils/lib.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_nvm.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-06 16:39:00 +02:00
										 |  |  | # shellcheck source=utils/lib_sxng_data.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_sxng_data.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck source=utils/lib_sxng_weblate.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_sxng_weblate.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck source=utils/lib_sxng_static.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_sxng_static.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck source=utils/lib_sxng_node.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_sxng_node.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck source=utils/lib_sxng_themes.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_sxng_themes.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck source=utils/lib_sxng_test.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_sxng_test.sh" | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-16 18:00:47 +01:00
										 |  |  | # shellcheck source=utils/lib_go.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_go.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 16:53:26 +01:00
										 |  |  | # shellcheck source=utils/lib_redis.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_redis.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-23 11:03:58 +01:00
										 |  |  | # shellcheck source=utils/lib_sxng_vite.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_sxng_vite.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-22 09:26:17 +01:00
										 |  |  | PATH="${REPO_ROOT}/node_modules/.bin:${PATH}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | # config | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-17 18:20:29 +02:00
										 |  |  | PYOBJECTS="searx" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | PY_SETUP_EXTRAS='[test]' | 
					
						
							| 
									
										
										
										
											2024-08-14 16:47:34 +02:00
										 |  |  | GECKODRIVER_VERSION="v0.35.0" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | # SPHINXOPTS= | 
					
						
							| 
									
										
										
										
											2023-08-06 16:39:00 +02:00
										 |  |  | BLACK_OPTIONS=("--target-version" "py311" "--line-length" "120" "--skip-string-normalization") | 
					
						
							| 
									
										
										
										
											2023-10-13 12:33:01 +02:00
										 |  |  | BLACK_TARGETS=("--exclude" "(searx/static|searx/languages.py)" "--include" 'searxng.msg|\.pyi?$' "searx" "searxng_extra" "tests") | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-11 20:14:47 +01:00
										 |  |  | _dev_redis_sock="/usr/local/searxng-redis/run/redis.sock" | 
					
						
							|  |  |  | # set SEARXNG_REDIS_URL if it is not defined and "{_dev_redis_sock}" exists. | 
					
						
							|  |  |  | if [ -S "${_dev_redis_sock}" ] && [ -z "${SEARXNG_REDIS_URL}" ]; then | 
					
						
							|  |  |  |     export SEARXNG_REDIS_URL="unix://${_dev_redis_sock}?db=0" | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-27 21:22:00 +02:00
										 |  |  | YAMLLINT_FILES=() | 
					
						
							|  |  |  | while IFS= read -r line; do | 
					
						
							| 
									
										
										
										
											2024-06-12 18:01:18 +02:00
										 |  |  |     if [ "$line" != "tests/unit/settings/syntaxerror_settings.yml" ]; then | 
					
						
							|  |  |  |         YAMLLINT_FILES+=("$line") | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2024-03-09 15:19:30 +01:00
										 |  |  | done <<< "$(git ls-files './tests/*.yml' './searx/*.yml' './utils/templates/etc/searxng/*.yml' '.github/*.yml' '.github/*/*.yml')" | 
					
						
							| 
									
										
										
										
											2021-05-27 21:22:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-16 14:07:46 +01:00
										 |  |  | RST_FILES=( | 
					
						
							|  |  |  |     'README.rst' | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | help() { | 
					
						
							| 
									
										
										
										
											2021-11-14 18:10:14 +01:00
										 |  |  |     nvm.help | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     cat <<EOF | 
					
						
							| 
									
										
										
										
											2022-11-11 20:14:47 +01:00
										 |  |  | webapp.: | 
					
						
							|  |  |  |   run       : run developer instance | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | docs.: | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   html      : build HTML documentation | 
					
						
							|  |  |  |   live      : autobuild HTML documentation while editing | 
					
						
							|  |  |  |   gh-pages  : deploy on gh-pages branch | 
					
						
							|  |  |  |   prebuild  : build reST include files (./${DOCS_BUILD}/includes) | 
					
						
							|  |  |  |   clean     : clean documentation build | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | docker.: | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   build     : build docker image | 
					
						
							|  |  |  |   push      : build and push docker image | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | gecko.driver: | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   download & install geckodriver if not already installed (required for | 
					
						
							|  |  |  |   robot_tests) | 
					
						
							| 
									
										
										
										
											2021-12-28 16:53:26 +01:00
										 |  |  | redis: | 
					
						
							|  |  |  |   build     : build redis binaries at $(redis._get_dist) | 
					
						
							|  |  |  |   install   : create user (${REDIS_USER}) and install systemd service (${REDIS_SERVICE_NAME}) | 
					
						
							|  |  |  |   help      : show more redis commands | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | py.: | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   build     : Build python packages at ./${PYDIST} | 
					
						
							|  |  |  |   clean     : delete virtualenv and intermediate py files | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | pyenv.: | 
					
						
							| 
									
										
										
										
											2021-10-11 19:55:53 +02:00
										 |  |  |   install   : developer install of SearXNG into virtualenv | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   uninstall : uninstall developer installation | 
					
						
							|  |  |  |   cmd ...   : run command ... in virtualenv | 
					
						
							|  |  |  |   OK        : test if virtualenv is OK | 
					
						
							| 
									
										
										
										
											2021-12-24 09:49:45 +01:00
										 |  |  | format.: | 
					
						
							|  |  |  |   python    : format Python code source using black | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | EOF | 
					
						
							| 
									
										
										
										
											2021-11-16 18:00:47 +01:00
										 |  |  |     go.help | 
					
						
							| 
									
										
										
										
											2023-08-06 16:39:00 +02:00
										 |  |  |     node.help | 
					
						
							|  |  |  |     weblate.help | 
					
						
							|  |  |  |     data.help | 
					
						
							|  |  |  |     test.help | 
					
						
							|  |  |  |     themes.help | 
					
						
							|  |  |  |     static.help | 
					
						
							| 
									
										
										
										
											2025-01-23 11:03:58 +01:00
										 |  |  |     vite.help | 
					
						
							| 
									
										
										
										
											2022-11-11 20:14:47 +01:00
										 |  |  |     cat <<EOF | 
					
						
							|  |  |  | environment ... | 
					
						
							|  |  |  |   SEARXNG_REDIS_URL : ${SEARXNG_REDIS_URL} | 
					
						
							|  |  |  | EOF | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ "$VERBOSE" = "1" ]; then | 
					
						
							|  |  |  |     SPHINX_VERBOSE="-v" | 
					
						
							|  |  |  |     PYLINT_VERBOSE="-v" | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # needed by sphinx-docs | 
					
						
							|  |  |  | export DOCS_BUILD | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-29 21:28:25 +01:00
										 |  |  | webapp.run() { | 
					
						
							| 
									
										
										
										
											2022-01-05 09:25:18 +01:00
										 |  |  |     local parent_proc="$$" | 
					
						
							|  |  |  |     ( | 
					
						
							|  |  |  |         if [ "${LIVE_THEME}" ]; then | 
					
						
							|  |  |  |             ( themes.live "${LIVE_THEME}" ) | 
					
						
							|  |  |  |             kill $parent_proc | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |     )& | 
					
						
							|  |  |  |     ( | 
					
						
							|  |  |  |         sleep 3 | 
					
						
							|  |  |  |         xdg-open http://127.0.0.1:8888/ | 
					
						
							|  |  |  |     )& | 
					
						
							|  |  |  |     SEARXNG_DEBUG=1 pyenv.cmd python -m searx.webapp | 
					
						
							| 
									
										
										
										
											2021-12-29 21:28:25 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | docker.push() { | 
					
						
							|  |  |  |     docker.build push | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-24 08:53:12 +02:00
										 |  |  | docker.buildx() { | 
					
						
							|  |  |  |     docker.build buildx | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | # shellcheck disable=SC2119 | 
					
						
							|  |  |  | docker.build() { | 
					
						
							|  |  |  |     pyenv.install | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-02 16:10:13 +02:00
										 |  |  |     local SEARXNG_GIT_VERSION | 
					
						
							| 
									
										
										
										
											2021-07-18 16:31:04 +02:00
										 |  |  |     local VERSION_GITCOMMIT | 
					
						
							|  |  |  |     local GITHUB_USER | 
					
						
							| 
									
										
										
										
											2021-10-02 16:10:13 +02:00
										 |  |  |     local SEARXNG_IMAGE_NAME | 
					
						
							| 
									
										
										
										
											2021-07-18 16:31:04 +02:00
										 |  |  |     local BUILD | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     build_msg DOCKER build | 
					
						
							|  |  |  |     # run installation in a subprocess and activate pyenv | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # See https://www.shellcheck.net/wiki/SC1001 and others .. | 
					
						
							|  |  |  |     # shellcheck disable=SC2031,SC2230,SC2002,SC2236,SC2143,SC1001 | 
					
						
							|  |  |  |     (   set -e | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         pyenv.activate | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Check if it is a git repository | 
					
						
							|  |  |  |         if [ ! -d .git ]; then | 
					
						
							|  |  |  | 	    die 1 "This is not Git repository" | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |         if [ ! -x "$(which git)" ]; then | 
					
						
							|  |  |  | 	    die 1 "git is not installed" | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ! git remote get-url origin 2> /dev/null; then | 
					
						
							|  |  |  | 	    die 1 "there is no remote origin" | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # This is a git repository | 
					
						
							|  |  |  |         git update-index -q --refresh | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         python -m searx.version freeze | 
					
						
							|  |  |  |         eval "$(python -m searx.version)" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-27 18:37:46 +02:00
										 |  |  |         # Get the last git commit id | 
					
						
							| 
									
										
										
										
											2023-01-20 11:32:38 +01:00
										 |  |  |         VERSION_GITCOMMIT=$(echo "$VERSION_TAG" | cut -d+ -f2) | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |         build_msg DOCKER "Last commit : $VERSION_GITCOMMIT" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # define the docker image name | 
					
						
							|  |  |  |         GITHUB_USER=$(echo "${GIT_URL}" | sed 's/.*github\.com\/\([^\/]*\).*/\1/') | 
					
						
							| 
									
										
										
										
											2021-10-02 16:10:13 +02:00
										 |  |  |         SEARXNG_IMAGE_NAME="${SEARXNG_IMAGE_NAME:-${GITHUB_USER:-searxng}/searxng}" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-24 08:53:12 +02:00
										 |  |  |         BUILD="build" | 
					
						
							|  |  |  |         if [ "$1" = "buildx" ]; then | 
					
						
							|  |  |  |             # buildx includes the push option | 
					
						
							| 
									
										
										
										
											2021-10-02 16:10:13 +02:00
										 |  |  |             CACHE_TAG="${SEARXNG_IMAGE_NAME}:latest-build-cache" | 
					
						
							| 
									
										
										
										
											2021-04-24 08:53:12 +02:00
										 |  |  |             BUILD="buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 --push --cache-from=type=registry,ref=$CACHE_TAG --cache-to=type=registry,ref=$CACHE_TAG,mode=max" | 
					
						
							|  |  |  |             shift | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |         build_msg DOCKER "Build command: ${BUILD}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |         # build Docker image | 
					
						
							| 
									
										
										
										
											2021-10-02 16:10:13 +02:00
										 |  |  |         build_msg DOCKER "Building image ${SEARXNG_IMAGE_NAME}:${SEARXNG_GIT_VERSION}" | 
					
						
							| 
									
										
										
										
											2021-04-24 08:53:12 +02:00
										 |  |  |         # shellcheck disable=SC2086 | 
					
						
							|  |  |  |         docker $BUILD \ | 
					
						
							|  |  |  |          --build-arg BASE_IMAGE="${DEPENDENCIES_IMAGE_NAME}" \ | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |          --build-arg GIT_URL="${GIT_URL}" \ | 
					
						
							| 
									
										
										
										
											2023-01-20 11:32:38 +01:00
										 |  |  |          --build-arg SEARXNG_DOCKER_TAG="${DOCKER_TAG}" \ | 
					
						
							| 
									
										
										
										
											2021-10-02 16:10:13 +02:00
										 |  |  |          --build-arg SEARXNG_GIT_VERSION="${VERSION_STRING}" \ | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |          --build-arg VERSION_GITCOMMIT="${VERSION_GITCOMMIT}" \ | 
					
						
							|  |  |  |          --build-arg LABEL_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")" \ | 
					
						
							|  |  |  |          --build-arg LABEL_VCS_REF="$(git rev-parse HEAD)" \ | 
					
						
							|  |  |  |          --build-arg LABEL_VCS_URL="${GIT_URL}" \ | 
					
						
							| 
									
										
										
										
											2021-04-24 08:53:12 +02:00
										 |  |  |          --build-arg TIMESTAMP_SETTINGS="$(git log -1 --format="%cd" --date=unix -- searx/settings.yml)" \ | 
					
						
							|  |  |  |          --build-arg TIMESTAMP_UWSGI="$(git log -1 --format="%cd" --date=unix -- dockerfiles/uwsgi.ini)" \ | 
					
						
							| 
									
										
										
										
											2023-01-20 11:32:38 +01:00
										 |  |  |          -t "${SEARXNG_IMAGE_NAME}:latest" -t "${SEARXNG_IMAGE_NAME}:${DOCKER_TAG}" . | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if [ "$1" = "push" ]; then | 
					
						
							| 
									
										
										
										
											2021-10-02 16:10:13 +02:00
										 |  |  | 	        docker push "${SEARXNG_IMAGE_NAME}:latest" | 
					
						
							| 
									
										
										
										
											2023-01-20 11:32:38 +01:00
										 |  |  | 	        docker push "${SEARXNG_IMAGE_NAME}:${DOCKER_TAG}" | 
					
						
							| 
									
										
										
										
											2021-04-24 08:53:12 +02:00
										 |  |  | 	    fi | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     ) | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck disable=SC2119 | 
					
						
							|  |  |  | gecko.driver() { | 
					
						
							|  |  |  |     pyenv.install | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     build_msg INSTALL "gecko.driver" | 
					
						
							|  |  |  |     # run installation in a subprocess and activate pyenv | 
					
						
							|  |  |  |     (   set -e | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         pyenv.activate | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-24 09:14:15 +01:00
										 |  |  |         INSTALLED_VERSION=$(geckodriver -V 2> /dev/null | head -1 | awk '{ print "v" $2}') || INSTALLED_VERSION="" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |         set +e | 
					
						
							| 
									
										
										
										
											2021-12-24 09:14:15 +01:00
										 |  |  |         if [ "${INSTALLED_VERSION}" = "${GECKODRIVER_VERSION}" ]; then | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |             build_msg INSTALL "geckodriver already installed" | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  |         fi | 
					
						
							| 
									
										
										
										
											2024-08-20 16:43:49 +02:00
										 |  |  |         PLATFORM="$(python -c 'import platform; print(platform.system().lower(), platform.architecture()[0])')" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |         case "$PLATFORM" in | 
					
						
							|  |  |  |             "linux 32bit" | "linux2 32bit") ARCH="linux32";; | 
					
						
							|  |  |  |             "linux 64bit" | "linux2 64bit") ARCH="linux64";; | 
					
						
							|  |  |  |             "windows 32 bit") ARCH="win32";; | 
					
						
							|  |  |  |             "windows 64 bit") ARCH="win64";; | 
					
						
							|  |  |  |             "mac 64bit") ARCH="macos";; | 
					
						
							|  |  |  |         esac | 
					
						
							|  |  |  |         GECKODRIVER_URL="https://github.com/mozilla/geckodriver/releases/download/$GECKODRIVER_VERSION/geckodriver-$GECKODRIVER_VERSION-$ARCH.tar.gz"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         build_msg GECKO "Installing ${PY_ENV_BIN}/geckodriver from $GECKODRIVER_URL" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         FILE="$(mktemp)" | 
					
						
							|  |  |  |         wget -qO "$FILE" -- "$GECKODRIVER_URL" && tar xz -C "${PY_ENV_BIN}" -f "$FILE" geckodriver | 
					
						
							|  |  |  |         rm -- "$FILE" | 
					
						
							|  |  |  |         chmod 755 -- "${PY_ENV_BIN}/geckodriver" | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | py.build() { | 
					
						
							| 
									
										
										
										
											2021-06-18 14:13:05 +02:00
										 |  |  |     build_msg BUILD "python package ${PYDIST}" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     pyenv.cmd python setup.py \ | 
					
						
							|  |  |  |               sdist -d "${PYDIST}" \ | 
					
						
							|  |  |  |               bdist_wheel --bdist-dir "${PYBUILD}" -d "${PYDIST}" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | py.clean() { | 
					
						
							|  |  |  |     build_msg CLEAN pyenv | 
					
						
							|  |  |  |     (   set -e | 
					
						
							|  |  |  |         pyenv.drop | 
					
						
							|  |  |  |         [ "$VERBOSE" = "1" ] && set -x | 
					
						
							|  |  |  |         rm -rf "${PYDIST}" "${PYBUILD}" "${PY_ENV}" ./.tox ./*.egg-info | 
					
						
							|  |  |  |         find . -name '*.pyc' -exec rm -f {} + | 
					
						
							|  |  |  |         find . -name '*.pyo' -exec rm -f {} + | 
					
						
							|  |  |  |         find . -name __pycache__ -exec rm -rf {} + | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pyenv.check() { | 
					
						
							|  |  |  |     cat  <<EOF | 
					
						
							|  |  |  | import yaml | 
					
						
							|  |  |  | print('import yaml --> OK') | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pyenv.install() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ! pyenv.OK; then | 
					
						
							|  |  |  |         py.clean > /dev/null | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     if pyenv.install.OK > /dev/null; then | 
					
						
							|  |  |  |         return 0 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2021-04-18 17:22:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     (   set -e | 
					
						
							| 
									
										
										
										
											2021-04-27 13:02:55 +02:00
										 |  |  |         pyenv | 
					
						
							| 
									
										
										
										
											2024-08-08 11:46:54 +02:00
										 |  |  |         build_msg PYENV "[install] pip install --use-pep517 --no-build-isolation -e 'searx${PY_SETUP_EXTRAS}'" | 
					
						
							|  |  |  |         "${PY_ENV_BIN}/python" -m pip install --use-pep517 --no-build-isolation -e ".${PY_SETUP_EXTRAS}" | 
					
						
							| 
									
										
										
										
											2021-04-27 13:02:55 +02:00
										 |  |  |     ) | 
					
						
							|  |  |  |     local exit_val=$? | 
					
						
							|  |  |  |     if [ ! $exit_val -eq 0 ]; then | 
					
						
							|  |  |  |         die 42 "error while pip install (${PY_ENV_BIN})" | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pyenv.uninstall() { | 
					
						
							|  |  |  |     build_msg PYENV "[pyenv.uninstall] uninstall packages: ${PYOBJECTS}" | 
					
						
							|  |  |  |     pyenv.cmd python setup.py develop --uninstall 2>&1 \ | 
					
						
							|  |  |  |         | prefix_stdout "${_Blue}PYENV     ${_creset}[pyenv.uninstall] " | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-24 09:49:45 +01:00
										 |  |  | format.python() { | 
					
						
							|  |  |  |     build_msg TEST "[format.python] black \$BLACK_TARGETS" | 
					
						
							|  |  |  |     pyenv.cmd black "${BLACK_OPTIONS[@]}" "${BLACK_TARGETS[@]}" | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-05 16:49:06 +01:00
										 |  |  | docs.prebuild() { | 
					
						
							|  |  |  |     build_msg DOCS "build ${DOCS_BUILD}/includes" | 
					
						
							|  |  |  |     ( | 
					
						
							|  |  |  |         set -e | 
					
						
							|  |  |  |         [ "$VERBOSE" = "1" ] && set -x | 
					
						
							|  |  |  |         mkdir -p "${DOCS_BUILD}/includes" | 
					
						
							|  |  |  |         ./utils/searxng.sh searxng.doc.rst >  "${DOCS_BUILD}/includes/searxng.rst" | 
					
						
							|  |  |  |         pyenv.cmd searxng_extra/docs_prebuild | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | # shellcheck disable=SC2119 | 
					
						
							|  |  |  | main() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local _type | 
					
						
							|  |  |  |     local cmd="$1"; shift | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if [ "$cmd" == "" ]; then | 
					
						
							|  |  |  |         help | 
					
						
							|  |  |  |         err_msg "missing command" | 
					
						
							|  |  |  |         return 42 | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case "$cmd" in | 
					
						
							|  |  |  |         --getenv) var="$1"; echo "${!var}";; | 
					
						
							|  |  |  |         --help) help;; | 
					
						
							|  |  |  |         --*) | 
					
						
							|  |  |  |             help | 
					
						
							|  |  |  |             err_msg "unknown option $cmd" | 
					
						
							|  |  |  |             return 42 | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         *) | 
					
						
							|  |  |  |             _type="$(type -t "$cmd")" | 
					
						
							|  |  |  |             if [ "$_type" != 'function' ]; then | 
					
						
							| 
									
										
										
										
											2021-07-17 17:15:28 +02:00
										 |  |  |                 err_msg "unknown command: $cmd / use --help" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |                 return 42 | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 "$cmd" "$@" | 
					
						
							|  |  |  |             fi | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | main "$@" |