| 
									
										
										
										
											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" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | # shellcheck source=utils/lib_static.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/utils/lib_static.sh" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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]' | 
					
						
							| 
									
										
										
										
											2021-12-23 13:07:15 +01:00
										 |  |  | GECKODRIVER_VERSION="v0.30.0" | 
					
						
							| 
									
										
										
										
											2021-11-14 18:10:14 +01:00
										 |  |  | export NODE_MINIMUM_VERSION="16.13.0" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | # SPHINXOPTS= | 
					
						
							| 
									
										
										
										
											2021-12-24 09:49:45 +01:00
										 |  |  | BLACK_OPTIONS=("--target-version" "py37" "--line-length" "120" "--skip-string-normalization") | 
					
						
							| 
									
										
										
										
											2022-02-03 16:25:35 +01:00
										 |  |  | BLACK_TARGETS=("--exclude" "searx/static,searx/languages.py" "--include" "searxng.msg" "searx" "searxng_extra" "tests") | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-26 20:52:52 +02:00
										 |  |  | pylint.FILES() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # List files tagged by comment: | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     #   # lint: pylint | 
					
						
							|  |  |  |     # | 
					
						
							| 
									
										
										
										
											2021-12-24 09:49:45 +01:00
										 |  |  |     # These py files are linted by test.pylint() | 
					
						
							| 
									
										
										
										
											2021-04-26 20:52:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-02 17:30:39 +02:00
										 |  |  |     grep -l -r --include \*.py '^#[[:blank:]]*lint:[[:blank:]]*pylint' searx searxng_extra tests | 
					
						
							| 
									
										
										
										
											2022-02-03 16:25:35 +01:00
										 |  |  |     find . -name searxng.msg | 
					
						
							| 
									
										
										
										
											2021-04-26 20:52:52 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-27 21:22:00 +02:00
										 |  |  | YAMLLINT_FILES=() | 
					
						
							|  |  |  | while IFS= read -r line; do | 
					
						
							|  |  |  |    YAMLLINT_FILES+=("$line") | 
					
						
							| 
									
										
										
										
											2021-10-11 10:56:50 +02:00
										 |  |  | done <<< "$(git ls-files './tests/*.yml' './searx/*.yml' './utils/templates/etc/searxng/*.yml')" | 
					
						
							| 
									
										
										
										
											2021-05-27 21:22:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-16 14:07:46 +01:00
										 |  |  | RST_FILES=( | 
					
						
							|  |  |  |     'README.rst' | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-11 19:55:53 +02:00
										 |  |  | PYLINT_SEARXNG_DISABLE_OPTION="\ | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | I,C,R,\ | 
					
						
							|  |  |  | W0105,W0212,W0511,W0603,W0613,W0621,W0702,W0703,W1401,\ | 
					
						
							|  |  |  | E1136" | 
					
						
							| 
									
										
										
										
											2021-09-07 10:29:38 +02:00
										 |  |  | PYLINT_ADDITIONAL_BUILTINS_FOR_ENGINES="supported_languages,language_aliases,logger,categories" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | PYLINT_OPTIONS="-m pylint -j 0 --rcfile .pylintrc" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | help() { | 
					
						
							| 
									
										
										
										
											2021-11-14 18:10:14 +01:00
										 |  |  |     nvm.help | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     cat <<EOF | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | buildenv: | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   rebuild ./utils/brand.env | 
					
						
							| 
									
										
										
										
											2021-09-12 15:46:00 +02:00
										 |  |  | weblate.: | 
					
						
							|  |  |  |   push.translations: push translation changes from SearXNG to Weblate's counterpart | 
					
						
							|  |  |  |   to.translations: Update 'translations' branch with last additions from Weblate. | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | data.: | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   all       : update searx/languages.py and ./data/* | 
					
						
							|  |  |  |   languages : update searx/data/engines_languages.json & searx/languages.py | 
					
						
							|  |  |  |   useragents: update searx/data/useragents.json with the most recent versions of Firefox. | 
					
						
							| 
									
										
										
										
											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
										 |  |  | node.: | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   env       : download & install npm dependencies locally | 
					
						
							| 
									
										
										
										
											2021-11-14 18:10:14 +01:00
										 |  |  |   clean     : drop locally npm installations | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | pypi.upload: | 
					
						
							|  |  |  |   Upload python packages to PyPi (to test use pypi.upload.test) | 
					
						
							| 
									
										
										
										
											2021-12-24 09:49:45 +01:00
										 |  |  | format.: | 
					
						
							|  |  |  |   python    : format Python code source using black | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | test.: | 
					
						
							| 
									
										
										
										
											2021-11-15 17:02:44 +01:00
										 |  |  |   yamllint  : lint YAML files (YAMLLINT_FILES) | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   pylint    : lint PYLINT_FILES, searx/engines, searx & tests | 
					
						
							| 
									
										
										
										
											2022-01-19 10:31:45 +01:00
										 |  |  |   pyright   : static type check of python sources | 
					
						
							| 
									
										
										
										
											2021-12-24 09:49:45 +01:00
										 |  |  |   black     : check black code format | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   unit      : run unit tests | 
					
						
							|  |  |  |   coverage  : run unit tests with coverage | 
					
						
							|  |  |  |   robot     : run robot test | 
					
						
							| 
									
										
										
										
											2022-01-16 14:07:46 +01:00
										 |  |  |   rst       : test .rst files incl. README.rst | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   clean     : clean intermediate test stuff | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | themes.: | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |   all       : build all themes | 
					
						
							|  |  |  |   oscar     : build oscar theme | 
					
						
							|  |  |  |   simple    : build simple theme | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  | pygments.: | 
					
						
							| 
									
										
										
										
											2021-06-22 10:22:33 +02:00
										 |  |  |   less      : build LESS files for pygments | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | EOF | 
					
						
							| 
									
										
										
										
											2021-11-16 18:00:47 +01:00
										 |  |  |     go.help | 
					
						
							| 
									
										
										
										
											2021-06-26 08:46:20 +02:00
										 |  |  |     static_help | 
					
						
							| 
									
										
										
										
											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
										 |  |  | buildenv() { | 
					
						
							| 
									
										
										
										
											2021-06-29 19:46:06 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # settings file from repository's working tree are used by default | 
					
						
							| 
									
										
										
										
											2021-10-02 17:18:05 +02:00
										 |  |  |     SEARXNG_SETTINGS_PATH="${REPO_ROOT}/searx/settings.yml" | 
					
						
							| 
									
										
										
										
											2021-06-29 19:46:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-11 10:56:50 +02:00
										 |  |  |     if [ -f /etc/searx/settings.yml ]; then | 
					
						
							|  |  |  |         err_msg "settings.yml in /etc/searx/ is deprecated, move file to folder /etc/searxng/" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-08 11:35:47 +02:00
										 |  |  |     if [ -r '/etc/searxng/settings.yml' ]; then | 
					
						
							|  |  |  |         if ask_yn "should settings read from: /etc/searxng/settings.yml"; then | 
					
						
							|  |  |  |             SEARXNG_SETTINGS_PATH='/etc/searxng/settings.yml' | 
					
						
							| 
									
										
										
										
											2021-06-29 19:46:06 +02:00
										 |  |  |         fi | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2021-10-02 17:18:05 +02:00
										 |  |  |     export SEARXNG_SETTINGS_PATH | 
					
						
							| 
									
										
										
										
											2021-07-27 18:37:46 +02:00
										 |  |  |     ( | 
					
						
							|  |  |  |         set -e | 
					
						
							| 
									
										
										
										
											2021-10-02 12:21:02 +02:00
										 |  |  |         SEARXNG_DEBUG=1 pyenv.cmd python utils/build_env.py 2>&1 \ | 
					
						
							| 
									
										
										
										
											2021-07-27 18:37:46 +02:00
										 |  |  |             | prefix_stdout "${_Blue}BUILDENV${_creset}  " | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     return "${PIPESTATUS[0]}" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  | TRANSLATIONS_WORKTREE="$CACHE/translations" | 
					
						
							| 
									
										
										
										
											2021-08-01 10:17:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-16 11:30:53 +02:00
										 |  |  | weblate.translations.worktree() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |     # Create git worktree ${TRANSLATIONS_WORKTREE} and checkout branch | 
					
						
							|  |  |  |     # 'translations' from Weblate's counterpart (weblate) of the SearXNG | 
					
						
							|  |  |  |     # (origin). | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     #     remote weblate https://weblate.bubu1.eu/git/searxng/searxng/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-01 10:17:14 +02:00
										 |  |  |     (   set -e | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         if ! git remote get-url weblate 2> /dev/null; then | 
					
						
							|  |  |  |             git remote add weblate https://weblate.bubu1.eu/git/searxng/searxng/ | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |         if [ -d "${TRANSLATIONS_WORKTREE}" ]; then | 
					
						
							|  |  |  |             pushd . | 
					
						
							|  |  |  |             cd "${TRANSLATIONS_WORKTREE}" | 
					
						
							|  |  |  |             git reset --hard HEAD | 
					
						
							|  |  |  |             git pull origin translations | 
					
						
							|  |  |  |             popd | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             mkdir -p "${TRANSLATIONS_WORKTREE}" | 
					
						
							|  |  |  |             git worktree add "${TRANSLATIONS_WORKTREE}" translations | 
					
						
							| 
									
										
										
										
											2021-08-01 10:17:14 +02:00
										 |  |  |         fi | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-16 11:30:53 +02:00
										 |  |  | weblate.to.translations() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |     # Update 'translations' branch of SearXNG (origin) with last additions from | 
					
						
							|  |  |  |     # Weblate. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # 1. Check if Weblate is locked, if not die with error message | 
					
						
							|  |  |  |     # 2. On Weblate's counterpart (weblate), pull master and translations branch | 
					
						
							|  |  |  |     #    from SearXNG (origin). | 
					
						
							|  |  |  |     # 3. Commit changes made in a Weblate object on Weblate's counterpart | 
					
						
							|  |  |  |     #    (weblate). | 
					
						
							|  |  |  |     # 4. In translations worktree, merge changes of branch 'translations' from | 
					
						
							|  |  |  |     #    remote 'weblate' and push it on branch 'translations' of 'origin' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |     (   set -e | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         pyenv.activate | 
					
						
							|  |  |  |         if [ "$(wlc lock-status)" != "locked: True" ]; then | 
					
						
							|  |  |  |             die 1 "weblate must be locked, currently: $(wlc lock-status)" | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         fi | 
					
						
							|  |  |  |         # weblate: commit pending changes | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         wlc pull | 
					
						
							|  |  |  |         wlc commit | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         # get the translations in a worktree | 
					
						
							| 
									
										
										
										
											2021-08-16 11:30:53 +02:00
										 |  |  |         weblate.translations.worktree | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         pushd "${TRANSLATIONS_WORKTREE}" | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         git remote update weblate | 
					
						
							|  |  |  |         git merge weblate/translations | 
					
						
							|  |  |  |         git push | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         popd | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2021-08-01 10:17:14 +02:00
										 |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-16 11:30:53 +02:00
										 |  |  | weblate.translations.commit() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |     # Update 'translations' branch of SearXNG (origin) with last additions from | 
					
						
							|  |  |  |     # Weblate.  Copy the changes to the master branch, compile translations and | 
					
						
							|  |  |  |     # create a commit in the local branch (master) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |     local existing_commit_hash commit_body commit_message exitcode | 
					
						
							|  |  |  |     (   set -e | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         pyenv.activate | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         # lock change on weblate | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         wlc lock | 
					
						
							| 
									
										
										
										
											2021-08-16 11:30:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # get translations branch in git worktree (TRANSLATIONS_WORKTREE) | 
					
						
							|  |  |  |         weblate.translations.worktree | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         existing_commit_hash=$(cd "${TRANSLATIONS_WORKTREE}"; git log -n1  --pretty=format:'%h') | 
					
						
							| 
									
										
										
										
											2021-08-16 11:30:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         # pull weblate commits | 
					
						
							| 
									
										
										
										
											2021-08-16 11:30:53 +02:00
										 |  |  |         weblate.to.translations | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         # copy the changes to the master branch | 
					
						
							|  |  |  |         cp -rv --preserve=mode,timestamps "${TRANSLATIONS_WORKTREE}/searx/translations" "searx" | 
					
						
							| 
									
										
										
										
											2021-08-16 11:30:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         # compile translations | 
					
						
							|  |  |  |         build_msg BABEL 'compile translation catalogs into binary MO files' | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         pybabel compile --statistics \ | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |                 -d "searx/translations" | 
					
						
							|  |  |  |         # git add/commit (no push) | 
					
						
							|  |  |  |         commit_body=$(cd "${TRANSLATIONS_WORKTREE}"; git log --pretty=format:'%h - %as - %aN <%ae>' "${existing_commit_hash}..HEAD") | 
					
						
							| 
									
										
										
										
											2021-12-17 10:48:12 +01:00
										 |  |  |         commit_message=$(echo -e "[translations] update from Weblate\n\n${commit_body}") | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         git add searx/translations | 
					
						
							|  |  |  |         git commit -m "${commit_message}" | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     exitcode=$? | 
					
						
							|  |  |  |     (   # make sure to always unlock weblate | 
					
						
							|  |  |  |         set -e | 
					
						
							|  |  |  |         pyenv.cmd wlc unlock | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     dump_return $exitcode | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-16 11:30:53 +02:00
										 |  |  | weblate.push.translations() { | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Push *translation changes* from SearXNG (origin) to Weblate's counterpart | 
					
						
							|  |  |  |     # (weblate). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # In branch master of SearXNG (origin) check for meaningful changes in | 
					
						
							|  |  |  |     # folder 'searx/translations', commit changes on branch 'translations' and | 
					
						
							|  |  |  |     # at least, pull updated branches on Weblate's counterpart (weblate). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # 1. Create git worktree ${TRANSLATIONS_WORKTREE} and checkout branch | 
					
						
							|  |  |  |     #    'translations' from remote 'weblate'. | 
					
						
							|  |  |  |     # 2. Stop if there is no meaningful change in the 'master' branch (origin), | 
					
						
							|  |  |  |     #    compared to the 'translations' branch (weblate), otherwise ... | 
					
						
							|  |  |  |     # 3. Update 'translations' branch of SearXNG (origin) with last additions | 
					
						
							|  |  |  |     #    from Weblate. | 
					
						
							|  |  |  |     # 5. Notify Weblate to pull updated 'master' & 'translations' branch. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local messages_pot diff_messages_pot last_commit_hash last_commit_detail \ | 
					
						
							| 
									
										
										
										
											2021-10-04 11:09:30 +02:00
										 |  |  |           exitcode | 
					
						
							| 
									
										
										
										
											2021-09-06 12:09:20 +02:00
										 |  |  |     messages_pot="${TRANSLATIONS_WORKTREE}/searx/translations/messages.pot" | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |     (   set -e | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         pyenv.activate | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         # get translations branch in git worktree (TRANSLATIONS_WORKTREE) | 
					
						
							| 
									
										
										
										
											2021-08-16 11:30:53 +02:00
										 |  |  |         weblate.translations.worktree | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         # update messages.pot in the master branch | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         build_msg BABEL 'extract messages from source files and generate POT file' | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         pybabel extract -F babel.cfg \ | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |                 -o "${messages_pot}" \ | 
					
						
							|  |  |  |                 "searx/" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         # stop if there is no meaningful change in the master branch | 
					
						
							|  |  |  |         diff_messages_pot=$(cd "${TRANSLATIONS_WORKTREE}";\ | 
					
						
							|  |  |  |                             git diff -- "searx/translations/messages.pot") | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         if ! echo "$diff_messages_pot" | grep -qE "[\+\-](msgid|msgstr)"; then | 
					
						
							|  |  |  |             build_msg BABEL 'no changes detected, exiting' | 
					
						
							| 
									
										
										
										
											2021-09-06 12:09:20 +02:00
										 |  |  |             return 42 | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         fi | 
					
						
							| 
									
										
										
										
											2021-09-06 12:09:20 +02:00
										 |  |  |         return 0 | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     exitcode=$? | 
					
						
							|  |  |  |     if [ "$exitcode" -eq 42 ]; then | 
					
						
							|  |  |  |         return 0 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2021-10-03 21:11:32 +02:00
										 |  |  |     if [ "$exitcode" -gt 0 ]; then | 
					
						
							| 
									
										
										
										
											2021-09-06 12:09:20 +02:00
										 |  |  |        return $exitcode | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     ( | 
					
						
							|  |  |  |         set -e | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         pyenv.activate | 
					
						
							| 
									
										
										
										
											2021-09-06 12:09:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # lock change on weblate | 
					
						
							|  |  |  |         # weblate may add commit(s) since the call to "weblate.translations.worktree". | 
					
						
							|  |  |  |         # this is not a problem because after this line, "weblate.to.translations" | 
					
						
							|  |  |  |         # calls again "weblate.translations.worktree" which calls "git pull" | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         wlc lock | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         # save messages.pot in the translations branch for later | 
					
						
							|  |  |  |         pushd "${TRANSLATIONS_WORKTREE}" | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         git stash push | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         popd | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # merge weblate commits into the translations branch | 
					
						
							| 
									
										
										
										
											2021-08-16 11:30:53 +02:00
										 |  |  |         weblate.to.translations | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         # restore messages.pot in the translations branch | 
					
						
							|  |  |  |         pushd "${TRANSLATIONS_WORKTREE}" | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         git stash pop | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         popd | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         # update messages.po files in the master branch | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         build_msg BABEL 'update existing message catalogs from POT file' | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         pybabel update -N \ | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |             -i "${messages_pot}" \ | 
					
						
							|  |  |  |             -d "${TRANSLATIONS_WORKTREE}/searx/translations" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # git add/commit/push | 
					
						
							|  |  |  |         last_commit_hash=$(git log -n1  --pretty=format:'%h') | 
					
						
							|  |  |  |         last_commit_detail=$(git log -n1 --pretty=format:'%h - %as - %aN <%ae>' "${last_commit_hash}") | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         pushd "${TRANSLATIONS_WORKTREE}" | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         git add searx/translations | 
					
						
							| 
									
										
										
										
											2021-10-04 11:09:30 +02:00
										 |  |  |         git commit \ | 
					
						
							|  |  |  |             -m "[translations] update messages.pot and messages.po files" \ | 
					
						
							|  |  |  |             -m "From ${last_commit_detail}" | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |         git push | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         popd | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 18:03:25 +02:00
										 |  |  |         # notify weblate to pull updated master & translations branch | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         wlc pull | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |     ) | 
					
						
							|  |  |  |     exitcode=$? | 
					
						
							|  |  |  |     (   # make sure to always unlock weblate | 
					
						
							|  |  |  |         set -e | 
					
						
							| 
									
										
										
										
											2021-09-17 10:44:29 +02:00
										 |  |  |         pyenv.activate | 
					
						
							|  |  |  |         wlc unlock | 
					
						
							| 
									
										
										
										
											2021-08-05 13:57:48 +02:00
										 |  |  |     ) | 
					
						
							|  |  |  |     dump_return $exitcode | 
					
						
							| 
									
										
										
										
											2021-08-01 10:17:14 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | data.all() { | 
					
						
							| 
									
										
										
										
											2021-09-17 15:31:09 +02:00
										 |  |  |     (   set -e | 
					
						
							|  |  |  |         pyenv.activate | 
					
						
							|  |  |  |         data.languages | 
					
						
							|  |  |  |         data.useragents | 
					
						
							|  |  |  |         data.osm_keys_tags | 
					
						
							|  |  |  |         build_msg DATA "update searx/data/ahmia_blacklist.txt" | 
					
						
							| 
									
										
										
										
											2021-10-02 17:30:39 +02:00
										 |  |  |         python searxng_extra/update/update_ahmia_blacklist.py | 
					
						
							| 
									
										
										
										
											2021-09-17 15:31:09 +02:00
										 |  |  |         build_msg DATA "update searx/data/wikidata_units.json" | 
					
						
							| 
									
										
										
										
											2021-10-02 17:30:39 +02:00
										 |  |  |         python searxng_extra/update/update_wikidata_units.py | 
					
						
							| 
									
										
										
										
											2021-09-17 15:31:09 +02:00
										 |  |  |         build_msg DATA "update searx/data/currencies.json" | 
					
						
							| 
									
										
										
										
											2021-10-02 17:30:39 +02:00
										 |  |  |         python searxng_extra/update/update_currencies.py | 
					
						
							| 
									
										
										
										
											2021-09-17 15:31:09 +02:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | data.languages() { | 
					
						
							|  |  |  |     (   set -e | 
					
						
							| 
									
										
										
										
											2021-09-17 15:31:09 +02:00
										 |  |  |         pyenv.activate | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |         build_msg ENGINES "fetch languages .." | 
					
						
							| 
									
										
										
										
											2021-10-02 17:30:39 +02:00
										 |  |  |         python searxng_extra/update/update_languages.py | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |         build_msg ENGINES "update update searx/languages.py" | 
					
						
							|  |  |  |         build_msg DATA "update searx/data/engines_languages.json" | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | data.useragents() { | 
					
						
							|  |  |  |     build_msg DATA "update searx/data/useragents.json" | 
					
						
							| 
									
										
										
										
											2021-10-02 17:30:39 +02:00
										 |  |  |     pyenv.cmd python searxng_extra/update/update_firefox_version.py | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-06 13:02:07 +02:00
										 |  |  | data.osm_keys_tags() { | 
					
						
							|  |  |  |     build_msg DATA "update searx/data/osm_keys_tags.json" | 
					
						
							| 
									
										
										
										
											2021-10-02 17:30:39 +02:00
										 |  |  |     pyenv.cmd python searxng_extra/update/update_osm_keys_tags.py | 
					
						
							| 
									
										
										
										
											2021-06-06 13:02:07 +02:00
										 |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | docs.prebuild() { | 
					
						
							|  |  |  |     build_msg DOCS "build ${DOCS_BUILD}/includes" | 
					
						
							|  |  |  |     ( | 
					
						
							|  |  |  |         set -e | 
					
						
							|  |  |  |         [ "$VERBOSE" = "1" ] && set -x | 
					
						
							|  |  |  |         mkdir -p "${DOCS_BUILD}/includes" | 
					
						
							|  |  |  |         ./utils/searx.sh doc   | cat > "${DOCS_BUILD}/includes/searx.rst" | 
					
						
							|  |  |  |         ./utils/filtron.sh doc | cat > "${DOCS_BUILD}/includes/filtron.rst" | 
					
						
							|  |  |  |         ./utils/morty.sh doc   | cat > "${DOCS_BUILD}/includes/morty.rst" | 
					
						
							| 
									
										
										
										
											2022-03-12 10:18:08 +01:00
										 |  |  |         pyenv.cmd searxng_extra/docs_prebuild | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     ) | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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 | 
					
						
							|  |  |  |         VERSION_GITCOMMIT=$(echo "$VERSION_STRING" | cut -d- -f3) | 
					
						
							| 
									
										
										
										
											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}" \ | 
					
						
							| 
									
										
										
										
											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)" \ | 
					
						
							| 
									
										
										
										
											2021-10-02 16:10:13 +02:00
										 |  |  |          -t "${SEARXNG_IMAGE_NAME}:latest" -t "${SEARXNG_IMAGE_NAME}:${VERSION_STRING}" . | 
					
						
							| 
									
										
										
										
											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" | 
					
						
							|  |  |  | 	        docker push "${SEARXNG_IMAGE_NAME}:${SEARXNG_GIT_VERSION}" | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |         PLATFORM="$(python3 -c 'import platform; print(platform.system().lower(), platform.architecture()[0])')" | 
					
						
							|  |  |  |         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 $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-29 10:16:30 +01:00
										 |  |  | nodejs.ensure() { | 
					
						
							| 
									
										
										
										
											2021-11-14 18:10:14 +01:00
										 |  |  |     if ! nvm.min_node "${NODE_MINIMUM_VERSION}"; then | 
					
						
							|  |  |  |         info_msg "install Node.js by NVM" | 
					
						
							|  |  |  |         nvm.nodejs | 
					
						
							| 
									
										
										
										
											2021-06-16 19:18:13 +02:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2021-12-29 10:16:30 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-29 10:16:30 +01:00
										 |  |  | node.env() { | 
					
						
							|  |  |  |     nodejs.ensure | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     (   set -e | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-16 19:18:13 +02:00
										 |  |  |         build_msg INSTALL "searx/static/themes/oscar/package.json" | 
					
						
							| 
									
										
										
										
											2021-06-16 15:39:32 +02:00
										 |  |  |         npm --prefix searx/static/themes/oscar install | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-16 19:18:13 +02:00
										 |  |  |         build_msg INSTALL "searx/static/themes/simple/package.json" | 
					
						
							| 
									
										
										
										
											2021-06-16 15:39:32 +02:00
										 |  |  |         npm --prefix searx/static/themes/simple install | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     ) | 
					
						
							| 
									
										
										
										
											2021-06-16 15:39:32 +02:00
										 |  |  |     dump_return $? | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-22 09:26:17 +01:00
										 |  |  | node.env.devtools() { | 
					
						
							|  |  |  |     nodejs.ensure | 
					
						
							|  |  |  |     build_msg INSTALL "package.json: developer and CI tools" | 
					
						
							|  |  |  |     npm install | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | node.clean() { | 
					
						
							| 
									
										
										
										
											2021-06-19 16:58:18 +02:00
										 |  |  |     if ! required_commands npm 2>/dev/null; then | 
					
						
							|  |  |  |         build_msg CLEAN "npm is not installed / ignore npm dependencies" | 
					
						
							|  |  |  |         return 0 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2021-11-14 18:10:14 +01:00
										 |  |  |     build_msg CLEAN "themes -- locally installed npm dependencies" | 
					
						
							| 
									
										
										
										
											2021-06-16 15:51:43 +02:00
										 |  |  |     (   set -e | 
					
						
							|  |  |  |         npm --prefix searx/static/themes/oscar run clean | 
					
						
							|  |  |  |         npm --prefix searx/static/themes/simple run clean | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-18 16:44:27 +02:00
										 |  |  | pygments.less() { | 
					
						
							| 
									
										
										
										
											2021-10-02 17:30:39 +02:00
										 |  |  |     build_msg PYGMENTS "searxng_extra/update/update_pygments.py" | 
					
						
							|  |  |  |     if ! pyenv.cmd python searxng_extra/update/update_pygments.py; then | 
					
						
							| 
									
										
										
										
											2021-06-18 16:44:27 +02:00
										 |  |  |         build_msg PYGMENTS "building LESS files for pygments failed" | 
					
						
							|  |  |  |         return 1 | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     return 0 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 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 | 
					
						
							|  |  |  |         build_msg PYENV "[install] pip install -e 'searx${PY_SETUP_EXTRAS}'" | 
					
						
							|  |  |  |         "${PY_ENV_BIN}/python" -m pip install -e ".${PY_SETUP_EXTRAS}" | 
					
						
							|  |  |  |         buildenv | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     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] " | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pypi.upload() { | 
					
						
							|  |  |  |     py.clean | 
					
						
							|  |  |  |     py.build | 
					
						
							|  |  |  |     # https://github.com/pypa/twine | 
					
						
							|  |  |  |     pyenv.cmd twine upload "${PYDIST}"/* | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pypi.upload.test() { | 
					
						
							|  |  |  |     py.clean | 
					
						
							|  |  |  |     py.build | 
					
						
							|  |  |  |     pyenv.cmd twine upload -r testpypi "${PYDIST}"/* | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-27 21:22:00 +02:00
										 |  |  | test.yamllint() { | 
					
						
							| 
									
										
										
										
											2021-06-15 17:04:51 +02:00
										 |  |  |     build_msg TEST "[yamllint] \$YAMLLINT_FILES" | 
					
						
							| 
									
										
										
										
											2021-05-27 21:22:00 +02:00
										 |  |  |     pyenv.cmd yamllint --format parsable "${YAMLLINT_FILES[@]}" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | test.pylint() { | 
					
						
							|  |  |  |     # shellcheck disable=SC2086 | 
					
						
							|  |  |  |     (   set -e | 
					
						
							|  |  |  |         build_msg TEST "[pylint] \$PYLINT_FILES" | 
					
						
							| 
									
										
										
										
											2021-09-17 15:31:09 +02:00
										 |  |  |         pyenv.activate | 
					
						
							|  |  |  |         python ${PYLINT_OPTIONS} ${PYLINT_VERBOSE} \ | 
					
						
							| 
									
										
										
										
											2021-09-06 17:47:28 +02:00
										 |  |  |             --additional-builtins="${PYLINT_ADDITIONAL_BUILTINS_FOR_ENGINES}" \ | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |             "${PYLINT_FILES[@]}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         build_msg TEST "[pylint] searx/engines" | 
					
						
							| 
									
										
										
										
											2021-09-17 15:31:09 +02:00
										 |  |  |         python ${PYLINT_OPTIONS} ${PYLINT_VERBOSE} \ | 
					
						
							| 
									
										
										
										
											2021-10-11 19:55:53 +02:00
										 |  |  |             --disable="${PYLINT_SEARXNG_DISABLE_OPTION}" \ | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |             --additional-builtins="${PYLINT_ADDITIONAL_BUILTINS_FOR_ENGINES}" \ | 
					
						
							|  |  |  |             searx/engines | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         build_msg TEST "[pylint] searx tests" | 
					
						
							| 
									
										
										
										
											2021-09-17 15:31:09 +02:00
										 |  |  |         python ${PYLINT_OPTIONS} ${PYLINT_VERBOSE} \ | 
					
						
							| 
									
										
										
										
											2021-10-11 19:55:53 +02:00
										 |  |  |             --disable="${PYLINT_SEARXNG_DISABLE_OPTION}" \ | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | 	    --ignore=searx/engines \ | 
					
						
							|  |  |  | 	    searx tests | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-19 10:31:45 +01:00
										 |  |  | test.pyright() { | 
					
						
							|  |  |  |     build_msg TEST "[pyright] static type check of python sources" | 
					
						
							| 
									
										
										
										
											2022-01-22 09:26:17 +01:00
										 |  |  |     node.env.devtools | 
					
						
							| 
									
										
										
										
											2022-01-20 07:04:39 +01:00
										 |  |  |     # We run Pyright in the virtual environment because Pyright | 
					
						
							|  |  |  |     # executes "python" to determine the Python version. | 
					
						
							| 
									
										
										
										
											2022-01-25 12:51:12 +01:00
										 |  |  |     build_msg TEST "[pyright] suppress warnings related to intentional monkey patching" | 
					
						
							|  |  |  |     pyenv.cmd npx --no-install pyright -p pyrightconfig-ci.json \ | 
					
						
							|  |  |  |         | grep -v ".py$" \ | 
					
						
							|  |  |  |         | grep -v '/engines/.*.py.* - warning: "logger" is not defined'\ | 
					
						
							| 
									
										
										
										
											2022-04-22 11:16:41 +02:00
										 |  |  |         | grep -v '/plugins/.*.py.* - error: "logger" is not defined'\ | 
					
						
							| 
									
										
										
										
											2022-01-25 12:51:12 +01:00
										 |  |  |         | grep -v '/engines/.*.py.* - warning: "supported_languages" is not defined' \ | 
					
						
							|  |  |  |         | grep -v '/engines/.*.py.* - warning: "language_aliases" is not defined' | 
					
						
							| 
									
										
										
										
											2022-01-19 10:31:45 +01:00
										 |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-24 09:49:45 +01:00
										 |  |  | test.black() { | 
					
						
							|  |  |  |     build_msg TEST "[black] \$BLACK_TARGETS" | 
					
						
							| 
									
										
										
										
											2021-12-24 13:19:14 +01:00
										 |  |  |     pyenv.cmd black --check --diff "${BLACK_OPTIONS[@]}" "${BLACK_TARGETS[@]}" | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test.unit() { | 
					
						
							|  |  |  |     build_msg TEST 'tests/unit' | 
					
						
							|  |  |  |     pyenv.cmd python -m nose2 -s tests/unit | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test.coverage() { | 
					
						
							|  |  |  |     build_msg TEST 'unit test coverage' | 
					
						
							|  |  |  |     (   set -e | 
					
						
							| 
									
										
										
										
											2021-09-17 15:31:09 +02:00
										 |  |  |         pyenv.activate | 
					
						
							|  |  |  |         python -m nose2 -C --log-capture --with-coverage --coverage searx -s tests/unit | 
					
						
							|  |  |  |         coverage report | 
					
						
							|  |  |  |         coverage html | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     ) | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test.robot() { | 
					
						
							|  |  |  |     build_msg TEST 'robot' | 
					
						
							|  |  |  |     gecko.driver | 
					
						
							| 
									
										
										
										
											2021-09-02 16:01:34 +02:00
										 |  |  |     PYTHONPATH=. pyenv.cmd python -m tests.robot | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-16 14:07:46 +01:00
										 |  |  | test.rst() { | 
					
						
							| 
									
										
										
										
											2022-01-18 12:27:42 +01:00
										 |  |  |     build_msg TEST "[reST markup] ${RST_FILES[*]}" | 
					
						
							| 
									
										
										
										
											2022-01-16 14:07:46 +01:00
										 |  |  |     for rst in "${RST_FILES[@]}"; do | 
					
						
							|  |  |  |         pyenv.cmd rst2html.py --halt error "$rst" > /dev/null || die 42 "fix issue in $rst" | 
					
						
							|  |  |  |     done | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-25 10:10:13 +01:00
										 |  |  | test.pybabel() { | 
					
						
							|  |  |  |     TEST_BABEL_FOLDER="build/test/pybabel" | 
					
						
							|  |  |  |     build_msg TEST "[extract messages] pybabel" | 
					
						
							|  |  |  |     mkdir -p "${TEST_BABEL_FOLDER}" | 
					
						
							|  |  |  |     pyenv.cmd pybabel extract -F babel.cfg -o "${TEST_BABEL_FOLDER}/messages.pot" searx | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | test.clean() { | 
					
						
							|  |  |  |     build_msg CLEAN  "test stuff" | 
					
						
							|  |  |  |     rm -rf geckodriver.log .coverage coverage/ | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | themes.all() { | 
					
						
							|  |  |  |     (   set -e | 
					
						
							| 
									
										
										
										
											2021-06-18 16:44:27 +02:00
										 |  |  |         pygments.less | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |         node.env | 
					
						
							|  |  |  |         themes.oscar | 
					
						
							|  |  |  |         themes.simple | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-29 10:16:30 +01:00
										 |  |  | themes.live() { | 
					
						
							|  |  |  |     local LIVE_THEME="${LIVE_THEME:-${1}}" | 
					
						
							|  |  |  |     case "${LIVE_THEME}" in | 
					
						
							|  |  |  |         simple|oscar) | 
					
						
							|  |  |  |             theme="searx/static/themes/${LIVE_THEME}" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         '') | 
					
						
							|  |  |  |             die_caller 42 "missing theme argument" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         *) | 
					
						
							|  |  |  |             die_caller 42 "unknown theme '${LIVE_THEME}' // [simple|oscar]'" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  |     build_msg GRUNT "theme: $1 (live build)" | 
					
						
							|  |  |  |     nodejs.ensure | 
					
						
							|  |  |  |     cd "${theme}" | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         npm install | 
					
						
							|  |  |  |         npm run watch | 
					
						
							|  |  |  |     } 2>&1 \ | 
					
						
							|  |  |  |         | prefix_stdout "${_Blue}THEME ${1} ${_creset}  " \ | 
					
						
							|  |  |  |         | grep -E --ignore-case --color 'error[s]?[:]? |warning[s]?[:]? |' | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  | themes.oscar() { | 
					
						
							| 
									
										
										
										
											2021-06-16 15:39:32 +02:00
										 |  |  |     build_msg GRUNT "theme: oscar" | 
					
						
							|  |  |  |     npm --prefix searx/static/themes/oscar run build | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | themes.simple() { | 
					
						
							| 
									
										
										
										
											2021-11-08 09:55:16 +01:00
										 |  |  |     (   set -e | 
					
						
							|  |  |  |         build_msg GRUNT "theme: simple" | 
					
						
							|  |  |  |         npm --prefix searx/static/themes/simple run build | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2021-02-22 20:15:23 +01:00
										 |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-14 07:50:53 +01:00
										 |  |  | themes.simple.test() { | 
					
						
							|  |  |  |     build_msg TEST "theme: simple" | 
					
						
							| 
									
										
										
										
											2021-12-29 10:16:30 +01:00
										 |  |  |     nodejs.ensure | 
					
						
							| 
									
										
										
										
											2021-12-14 07:50:53 +01:00
										 |  |  |     npm --prefix searx/static/themes/simple install | 
					
						
							|  |  |  |     npm --prefix searx/static/themes/simple run test | 
					
						
							|  |  |  |     dump_return $? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-26 20:52:52 +02:00
										 |  |  | PYLINT_FILES=() | 
					
						
							|  |  |  | while IFS= read -r line; do | 
					
						
							|  |  |  |    PYLINT_FILES+=("$line") | 
					
						
							| 
									
										
										
										
											2021-04-27 13:02:55 +02:00
										 |  |  | done <<< "$(pylint.FILES)" | 
					
						
							| 
									
										
										
										
											2021-04-26 20:52:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 "$@" |