| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | #!/usr/bin/env bash
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  | # -*- coding: utf-8; mode: sh indent-tabs-mode: nil -*- | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2020-01-31 15:53:53 +01:00
										 |  |  | # shellcheck disable=SC2119,SC2001 | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # shellcheck source=utils/lib.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/lib.sh" | 
					
						
							| 
									
										
										
										
											2020-03-29 15:09:34 +02:00
										 |  |  | # shellcheck source=utils/brand.env | 
					
						
							|  |  |  | source "${REPO_ROOT}/utils/brand.env" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | source_dot_config | 
					
						
							| 
									
										
										
										
											2020-03-07 20:24:08 +01:00
										 |  |  | source "${REPO_ROOT}/utils/lxc-searx.env" | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01:00
										 |  |  | in_container && lxc_set_suite_env | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # ---------------------------------------------------------------------------- | 
					
						
							|  |  |  | # config | 
					
						
							|  |  |  | # ---------------------------------------------------------------------------- | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-29 15:09:34 +02:00
										 |  |  | PUBLIC_URL="${PUBLIC_URL:-http://$(uname -n)/searx}" | 
					
						
							|  |  |  | PUBLIC_HOST="${PUBLIC_HOST:-$(echo "$PUBLIC_URL" | sed -e 's/[^/]*\/\/\([^@]*@\)\?\([^:/]*\).*/\2/')}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-30 19:55:51 +01:00
										 |  |  | FILTRON_URL_PATH="${FILTRON_URL_PATH:-$(echo "${PUBLIC_URL}" \
 | 
					
						
							|  |  |  | | sed -e 's,^.*://[^/]*\(/.*\),\1,g')}"
 | 
					
						
							|  |  |  | [[ "${FILTRON_URL_PATH}" == "${PUBLIC_URL}" ]] && FILTRON_URL_PATH=/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | FILTRON_ETC="/etc/filtron" | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  | FILTRON_RULES="$FILTRON_ETC/rules.json" | 
					
						
							| 
									
										
										
										
											2021-04-28 12:10:10 +02:00
										 |  |  | FILTRON_RULES_TEMPLATE="${FILTRON_RULES_TEMPLATE:-${REPO_ROOT}/utils/templates/etc/filtron/rules.json}" | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  | FILTRON_API="${FILTRON_API:-127.0.0.1:4005}" | 
					
						
							|  |  |  | FILTRON_LISTEN="${FILTRON_LISTEN:-127.0.0.1:4004}" | 
					
						
							|  |  |  | FILTRON_TARGET="${FILTRON_TARGET:-127.0.0.1:8888}" | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | SERVICE_NAME="filtron" | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  | SERVICE_USER="${SERVICE_USER:-${SERVICE_NAME}}" | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  | SERVICE_HOME_BASE="${SERVICE_HOME_BASE:-/usr/local}" | 
					
						
							|  |  |  | SERVICE_HOME="${SERVICE_HOME_BASE}/${SERVICE_USER}" | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | SERVICE_SYSTEMD_UNIT="${SYSTEMD_UNITS}/${SERVICE_NAME}.service" | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  | # shellcheck disable=SC2034 | 
					
						
							|  |  |  | SERVICE_GROUP="${SERVICE_USER}" | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # shellcheck disable=SC2034 | 
					
						
							|  |  |  | SERVICE_GROUP="${SERVICE_USER}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GO_ENV="${SERVICE_HOME}/.go_env" | 
					
						
							|  |  |  | GO_PKG_URL="https://dl.google.com/go/go1.13.5.linux-amd64.tar.gz" | 
					
						
							|  |  |  | GO_TAR=$(basename "$GO_PKG_URL") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | APACHE_FILTRON_SITE="searx.conf" | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  | NGINX_FILTRON_SITE="searx.conf" | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  | # shellcheck disable=SC2034 | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  | CONFIG_FILES=( | 
					
						
							|  |  |  |     "${FILTRON_RULES}" | 
					
						
							|  |  |  |     "${SERVICE_SYSTEMD_UNIT}" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | # ---------------------------------------------------------------------------- | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | usage() { | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | # ---------------------------------------------------------------------------- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # shellcheck disable=SC1117 | 
					
						
							|  |  |  |     cat <<EOF | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  | usage:: | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |   $(basename "$0") shell | 
					
						
							| 
									
										
										
										
											2020-02-11 15:58:35 +01:00
										 |  |  |   $(basename "$0") install    [all|user|rules] | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  |   $(basename "$0") update     [filtron] | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |   $(basename "$0") remove     [all] | 
					
						
							| 
									
										
										
										
											2020-01-11 12:50:40 +01:00
										 |  |  |   $(basename "$0") activate   [service] | 
					
						
							|  |  |  |   $(basename "$0") deactivate [service] | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |   $(basename "$0") inspect    [service] | 
					
						
							| 
									
										
										
										
											2020-01-31 17:25:38 +01:00
										 |  |  |   $(basename "$0") option     [debug-on|debug-off] | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |   $(basename "$0") apache     [install|remove] | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |   $(basename "$0") nginx      [install|remove] | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  | shell | 
					
						
							|  |  |  |   start interactive shell from user ${SERVICE_USER} | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | install / remove | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |   :all:        complete setup of filtron service | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  |   :user:       add/remove service user '$SERVICE_USER' ($SERVICE_HOME) | 
					
						
							| 
									
										
										
										
											2020-02-11 15:58:35 +01:00
										 |  |  |   :rules:      reinstall filtron rules $FILTRON_RULES | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  | update filtron | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  |   Update filtron installation ($SERVICE_HOME) | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | activate service | 
					
						
							| 
									
										
										
										
											2020-01-11 12:50:40 +01:00
										 |  |  |   activate and start service daemon (systemd unit) | 
					
						
							|  |  |  | deactivate service | 
					
						
							|  |  |  |   stop and deactivate service daemon (systemd unit) | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | inspect service | 
					
						
							| 
									
										
										
										
											2020-01-11 12:50:40 +01:00
										 |  |  |   show service status and log | 
					
						
							| 
									
										
										
										
											2020-01-31 17:25:38 +01:00
										 |  |  | option | 
					
						
							|  |  |  |   set one of the available options | 
					
						
							| 
									
										
										
										
											2020-03-30 18:47:01 +02:00
										 |  |  | apache (${PUBLIC_URL}) | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |   :install: apache site with a reverse proxy (ProxyPass) | 
					
						
							|  |  |  |   :remove:  apache site ${APACHE_FILTRON_SITE} | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  | nginx (${PUBLIC_URL}) | 
					
						
							|  |  |  |   :install: nginx site with a reverse proxy (ProxyPass) | 
					
						
							|  |  |  |   :remove:  nginx site ${NGINX_FILTRON_SITE} | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-28 12:10:10 +02:00
										 |  |  | filtron rules: ${FILTRON_RULES_TEMPLATE} | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  | If needed, set PUBLIC_URL of your WEB service in the '${DOT_CONFIG#"$REPO_ROOT/"}' file:: | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  |   PUBLIC_URL     : ${PUBLIC_URL} | 
					
						
							|  |  |  |   PUBLIC_HOST    : ${PUBLIC_HOST} | 
					
						
							|  |  |  |   SERVICE_USER   : ${SERVICE_USER} | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02:00
										 |  |  |   FILTRON_TARGET : ${FILTRON_TARGET} | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  |   FILTRON_API    : ${FILTRON_API} | 
					
						
							|  |  |  |   FILTRON_LISTEN : ${FILTRON_LISTEN} | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02:00
										 |  |  |     if in_container; then | 
					
						
							|  |  |  |         # in containers the service is listening on 0.0.0.0 (see lxc-searx.env) | 
					
						
							|  |  |  |         for ip in $(global_IPs) ; do | 
					
						
							|  |  |  |             if [[ $ip =~ .*:.* ]]; then | 
					
						
							|  |  |  |                 echo "  container URL (IPv6): http://[${ip#*|}]:4005/" | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 # IPv4: | 
					
						
							|  |  |  |                 echo "  container URL (IPv4): http://${ip#*|}:4005/" | 
					
						
							|  |  |  |             fi | 
					
						
							|  |  |  |         done | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |     [[ -n ${1} ]] &&  err_msg "$1" | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | main() { | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     required_commands \
 | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |         sudo install git wget curl \
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         || exit | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-04 17:59:58 +01:00
										 |  |  |     local _usage="unknown or missing $1 command $2" | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     case $1 in | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |         --getenv)  var="$2"; echo "${!var}"; exit 0;; | 
					
						
							| 
									
										
										
										
											2020-01-11 12:50:40 +01:00
										 |  |  |         -h|--help) usage; exit 0;; | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  |         shell) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |             interactive_shell "${SERVICE_USER}" | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         inspect) | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |             case $2 in | 
					
						
							| 
									
										
										
										
											2020-01-11 12:50:40 +01:00
										 |  |  |                 service) | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  |                     sudo_or_exit | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |                     inspect_service | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  |                     ;; | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |         install) | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |             rst_title "$SERVICE_NAME" part | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							|  |  |  |                 all) install_all ;; | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  |                 user) assert_user ;; | 
					
						
							| 
									
										
										
										
											2020-02-08 17:12:01 +01:00
										 |  |  |                 rules) | 
					
						
							| 
									
										
										
										
											2021-04-28 12:10:10 +02:00
										 |  |  |                     install_rules | 
					
						
							| 
									
										
										
										
											2020-02-11 15:58:35 +01:00
										 |  |  |                     systemd_restart_service "${SERVICE_NAME}" | 
					
						
							| 
									
										
										
										
											2020-02-08 17:12:01 +01:00
										 |  |  |                     ;; | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							|  |  |  |         update) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							|  |  |  |                 filtron) update_filtron ;; | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							|  |  |  |         remove) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							|  |  |  |                 all) remove_all;; | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |                 user) drop_service_account "${SERVICE_USER}" ;; | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							|  |  |  |         activate) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |                 service)  systemd_activate_service "${SERVICE_NAME}" ;; | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							|  |  |  |         deactivate) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |                 service)  systemd_deactivate_service "${SERVICE_NAME}" ;; | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         apache) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							|  |  |  |                 install) install_apache_site ;; | 
					
						
							|  |  |  |                 remove) remove_apache_site ;; | 
					
						
							|  |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |         nginx) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							|  |  |  |                 install) install_nginx_site ;; | 
					
						
							|  |  |  |                 remove) remove_nginx_site ;; | 
					
						
							|  |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							| 
									
										
										
										
											2020-01-31 17:25:38 +01:00
										 |  |  |         option) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							|  |  |  |                 debug-on)  echo; enable_debug ;; | 
					
						
							|  |  |  |                 debug-off)  echo; disable_debug ;; | 
					
						
							|  |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							| 
									
										
										
										
											2020-04-03 20:24:40 +02:00
										 |  |  |         doc) rst-doc ;; | 
					
						
							| 
									
										
										
										
											2020-02-04 17:59:58 +01:00
										 |  |  |         *) usage "unknown or missing command $1"; exit 42;; | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | install_all() { | 
					
						
							|  |  |  |     rst_title "Install $SERVICE_NAME (service)" | 
					
						
							|  |  |  |     assert_user | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     wait_key | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |     install_go "${GO_PKG_URL}" "${GO_TAR}" "${SERVICE_USER}" | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     wait_key | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  |     install_filtron | 
					
						
							| 
									
										
										
										
											2021-04-28 12:10:10 +02:00
										 |  |  |     install_rules | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     wait_key | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |     systemd_install_service "${SERVICE_NAME}" "${SERVICE_SYSTEMD_UNIT}" | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     wait_key | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     echo | 
					
						
							|  |  |  |     if ! service_is_available "http://${FILTRON_LISTEN}" ; then | 
					
						
							|  |  |  |         err_msg "Filtron does not listening on: http://${FILTRON_LISTEN}" | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  |     if apache_is_installed; then | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         info_msg "Apache is installed on this host." | 
					
						
							|  |  |  |         if ask_yn "Do you want to install a reverse proxy (ProxyPass)" Yn; then | 
					
						
							|  |  |  |             install_apache_site | 
					
						
							|  |  |  |         fi | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |     elif nginx_is_installed; then | 
					
						
							|  |  |  |         info_msg "nginx is installed on this host." | 
					
						
							|  |  |  |         if ask_yn "Do you want to install a reverse proxy (ProxyPass)" Yn; then | 
					
						
							|  |  |  |             install_nginx_site | 
					
						
							|  |  |  |         fi | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-02-26 19:07:55 +01:00
										 |  |  |     if ask_yn "Do you want to inspect the installation?" Ny; then | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         inspect_service | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | remove_all() { | 
					
						
							|  |  |  |     rst_title "De-Install $SERVICE_NAME (service)" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rst_para "\
 | 
					
						
							|  |  |  | It goes without saying that this script can only be used to remove | 
					
						
							|  |  |  | installations that were installed with this script."
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |     if ! systemd_remove_service "${SERVICE_NAME}" "${SERVICE_SYSTEMD_UNIT}"; then | 
					
						
							|  |  |  |         return 42 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |     drop_service_account "${SERVICE_USER}" | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     rm -r "$FILTRON_ETC" 2>&1 | prefix_stdout | 
					
						
							| 
									
										
										
										
											2020-01-30 19:55:51 +01:00
										 |  |  |     if service_is_available "${PUBLIC_URL}"; then | 
					
						
							|  |  |  |         MSG="** Don't forget to remove your public site! (${PUBLIC_URL}) **" wait_key 10 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | assert_user() { | 
					
						
							|  |  |  |     rst_title "user $SERVICE_USER" section | 
					
						
							|  |  |  |     echo | 
					
						
							|  |  |  |     tee_stderr 1 <<EOF | bash | prefix_stdout | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  | useradd --shell /bin/bash --system \
 | 
					
						
							|  |  |  |  --home-dir "$SERVICE_HOME" \
 | 
					
						
							|  |  |  |  --comment 'Reverse HTTP proxy to filter requests' $SERVICE_USER | 
					
						
							|  |  |  | mkdir "$SERVICE_HOME" | 
					
						
							|  |  |  | chown -R "$SERVICE_GROUP:$SERVICE_GROUP" "$SERVICE_HOME" | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | groups $SERVICE_USER | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  |     SERVICE_HOME="$(sudo -i -u "$SERVICE_USER" echo \$HOME)" | 
					
						
							|  |  |  |     export SERVICE_HOME | 
					
						
							|  |  |  |     echo "export SERVICE_HOME=$SERVICE_HOME" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     cat > "$GO_ENV" <<EOF | 
					
						
							|  |  |  | export GOPATH=\$HOME/go-apps | 
					
						
							|  |  |  | export PATH=\$PATH:\$HOME/local/go/bin:\$GOPATH/bin | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  |     echo "Environment $GO_ENV has been setup." | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |     tee_stderr <<EOF | sudo -i -u "$SERVICE_USER"
 | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | grep -qFs -- 'source $GO_ENV' ~/.profile || echo 'source $GO_ENV' >> ~/.profile | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | filtron_is_installed() { | 
					
						
							|  |  |  |     [[ -f $SERVICE_HOME/go-apps/bin/filtron ]] | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  | _svcpr="  ${_Yellow}|${SERVICE_USER}|${_creset} " | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | install_filtron() { | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     rst_title "Install filtron in user's ~/go-apps" section | 
					
						
							|  |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |     tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
 | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  | go get -v -u github.com/asciimoo/filtron | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  | update_filtron() { | 
					
						
							|  |  |  |     rst_title "Update filtron" section | 
					
						
							|  |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |     tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" 2>&1 | prefix_stdout "$_svcpr"
 | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  | go get -v -u github.com/asciimoo/filtron | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-28 12:10:10 +02:00
										 |  |  | install_rules() { | 
					
						
							|  |  |  |     rst_title "Install filtron rules" | 
					
						
							|  |  |  |     echo | 
					
						
							|  |  |  |     if [[ ! -f "${FILTRON_RULES}" ]]; then | 
					
						
							|  |  |  |         info_msg "install rules ${FILTRON_RULES_TEMPLATE}" | 
					
						
							|  |  |  |         info_msg "  --> ${FILTRON_RULES}" | 
					
						
							|  |  |  |         mkdir -p "$(dirname "${FILTRON_RULES}")" | 
					
						
							|  |  |  |         cp "${FILTRON_RULES_TEMPLATE}" "${FILTRON_RULES}" | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rst_para "Diff between origin's rules file (+) and current (-):" | 
					
						
							|  |  |  |     echo "${FILTRON_RULES}" "${FILTRON_RULES_TEMPLATE}" | 
					
						
							|  |  |  |     $DIFF_CMD "${FILTRON_RULES}" "${FILTRON_RULES_TEMPLATE}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     local action | 
					
						
							|  |  |  |     choose_one action "What should happen to the rules file? " \
 | 
					
						
							|  |  |  |            "keep configuration unchanged" \
 | 
					
						
							|  |  |  |            "use origin rules" \
 | 
					
						
							| 
									
										
										
										
											2021-04-28 16:29:03 +02:00
										 |  |  |            "start interactive shell" | 
					
						
							| 
									
										
										
										
											2021-04-28 12:10:10 +02:00
										 |  |  |     case $action in | 
					
						
							|  |  |  |         "keep configuration unchanged") | 
					
						
							|  |  |  |             info_msg "leave rules file unchanged" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         "use origin rules") | 
					
						
							|  |  |  |             backup_file "${FILTRON_RULES}" | 
					
						
							|  |  |  |             info_msg "install origin rules" | 
					
						
							|  |  |  |             cp "${FILTRON_RULES_TEMPLATE}" "${FILTRON_RULES}" | 
					
						
							|  |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2021-04-28 16:29:03 +02:00
										 |  |  |         "start interactive shell") | 
					
						
							| 
									
										
										
										
											2021-04-28 12:10:10 +02:00
										 |  |  |             backup_file "${FILTRON_RULES}" | 
					
						
							|  |  |  |             echo -e "// exit with [${_BCyan}CTRL-D${_creset}]" | 
					
						
							|  |  |  |             sudo -H -i | 
					
						
							|  |  |  |             rst_para 'Diff between new rules file (-) and current (+):' | 
					
						
							|  |  |  |             echo | 
					
						
							|  |  |  |             $DIFF_CMD "${FILTRON_RULES_TEMPLATE}" "${FILTRON_RULES}" | 
					
						
							|  |  |  |             wait_key | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | inspect_service() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-11 12:50:40 +01:00
										 |  |  |     rst_title "service status & log" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     cat <<EOF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sourced ${DOT_CONFIG#"$REPO_ROOT/"} : | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   PUBLIC_URL          : ${PUBLIC_URL} | 
					
						
							| 
									
										
										
										
											2020-01-31 15:53:53 +01:00
										 |  |  |   PUBLIC_HOST         : ${PUBLIC_HOST} | 
					
						
							| 
									
										
										
										
											2020-01-30 19:55:51 +01:00
										 |  |  |   FILTRON_URL_PATH    : ${FILTRON_URL_PATH} | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |   FILTRON_API         : ${FILTRON_API} | 
					
						
							|  |  |  |   FILTRON_LISTEN      : ${FILTRON_LISTEN} | 
					
						
							|  |  |  |   FILTRON_TARGET      : ${FILTRON_TARGET} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |     if service_account_is_available "$SERVICE_USER"; then | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  |         info_msg "service account $SERVICE_USER available." | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         err_msg "service account $SERVICE_USER not available!" | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |     if go_is_available "$SERVICE_USER"; then | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  |         info_msg "~$SERVICE_USER: go is installed" | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         err_msg "~$SERVICE_USER: go is not installed" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     if filtron_is_installed; then | 
					
						
							|  |  |  |         info_msg "~$SERVICE_USER: filtron app is installed" | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         err_msg "~$SERVICE_USER: filtron app is not installed!" | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ! service_is_available "http://${FILTRON_API}"; then | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  |         err_msg "API not available at: http://${FILTRON_API}" | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ! service_is_available "http://${FILTRON_LISTEN}" ; then | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  |         err_msg "Filtron does not listening on: http://${FILTRON_LISTEN}" | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  |     if service_is_available "http://${FILTRON_TARGET}" ; then | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  |         info_msg "Filtron's target is available at: http://${FILTRON_TARGET}" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ! service_is_available "${PUBLIC_URL}"; then | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01:00
										 |  |  |         warn_msg "Public service at ${PUBLIC_URL} is not available!" | 
					
						
							|  |  |  |         if ! in_container; then | 
					
						
							|  |  |  |             warn_msg "Check if public name is correct and routed or use the public IP from above." | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if in_container; then | 
					
						
							|  |  |  |         lxc_suite_info | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         info_msg "public URL   --> ${PUBLIC_URL}" | 
					
						
							|  |  |  |         info_msg "internal URL --> http://${FILTRON_LISTEN}" | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 17:25:38 +01:00
										 |  |  |     local _debug_on | 
					
						
							|  |  |  |     if ask_yn "Enable filtron debug mode?"; then | 
					
						
							|  |  |  |         enable_debug | 
					
						
							|  |  |  |         _debug_on=1 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |     systemctl --no-pager -l status "${SERVICE_NAME}" | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     info_msg "public URL --> ${PUBLIC_URL}" | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |     # shellcheck disable=SC2059 | 
					
						
							|  |  |  |     printf "// use ${_BCyan}CTRL-C${_creset} to stop monitoring the log" | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01:00
										 |  |  |     read -r -s -n1 -t 5 | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     echo | 
					
						
							|  |  |  |     while true;  do | 
					
						
							| 
									
										
										
										
											2020-01-12 15:51:04 +01:00
										 |  |  |         trap break 2 | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |         journalctl -f -u "${SERVICE_NAME}" | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     done | 
					
						
							| 
									
										
										
										
											2020-01-31 17:25:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if [[ $_debug_on == 1 ]]; then | 
					
						
							|  |  |  |         disable_debug | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-09 16:25:05 +01:00
										 |  |  |     return 0 | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 17:25:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | enable_debug() { | 
					
						
							|  |  |  |     info_msg "try to enable debug mode ..." | 
					
						
							|  |  |  |     python <<EOF | 
					
						
							|  |  |  | import sys, json | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | debug = { | 
					
						
							|  |  |  |     u'name': u'debug request' | 
					
						
							|  |  |  |     , u'filters': [] | 
					
						
							|  |  |  |     , u'interval': 0 | 
					
						
							|  |  |  |     , u'limit': 0 | 
					
						
							|  |  |  |     , u'actions': [{u'name': u'log'}] | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | with open('$FILTRON_RULES') as rules: | 
					
						
							|  |  |  |     j = json.load(rules) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pos = None | 
					
						
							|  |  |  | for i in range(len(j)): | 
					
						
							|  |  |  |     if j[i].get('name') == 'debug request': | 
					
						
							|  |  |  |         pos = i | 
					
						
							|  |  |  |         break | 
					
						
							|  |  |  | if pos is not None: | 
					
						
							|  |  |  |     j[pos] = debug | 
					
						
							|  |  |  | else: | 
					
						
							|  |  |  |     j.append(debug) | 
					
						
							|  |  |  | with open('$FILTRON_RULES', 'w') as rules: | 
					
						
							|  |  |  |     json.dump(j, rules, indent=2, sort_keys=True) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  |     systemctl restart "${SERVICE_NAME}.service" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | disable_debug() { | 
					
						
							|  |  |  |     info_msg "try to disable debug mode ..." | 
					
						
							|  |  |  |     python <<EOF | 
					
						
							|  |  |  | import sys, json | 
					
						
							|  |  |  | with open('$FILTRON_RULES') as rules: | 
					
						
							|  |  |  |     j = json.load(rules) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pos = None | 
					
						
							|  |  |  | for i in range(len(j)): | 
					
						
							|  |  |  |     if j[i].get('name') == 'debug request': | 
					
						
							|  |  |  |         pos = i | 
					
						
							|  |  |  |         break | 
					
						
							|  |  |  | if pos is not None: | 
					
						
							|  |  |  |     del j[pos] | 
					
						
							|  |  |  |     with open('$FILTRON_RULES', 'w') as rules: | 
					
						
							|  |  |  |          json.dump(j, rules, indent=2, sort_keys=True) | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  |     systemctl restart "${SERVICE_NAME}.service" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | install_apache_site() { | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rst_title "Install Apache site $APACHE_FILTRON_SITE" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rst_para "\
 | 
					
						
							|  |  |  | This installs a reverse proxy (ProxyPass) into apache site (${APACHE_FILTRON_SITE})"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |     ! apache_is_installed && info_msg "Apache is not installed." | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |     if ! ask_yn "Do you really want to continue?" Yn; then | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         return | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |     else | 
					
						
							|  |  |  |         install_apache | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  |     "${REPO_ROOT}/utils/searx.sh" install uwsgi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     apache_install_site --variant=filtron "${APACHE_FILTRON_SITE}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_msg "testing public url .." | 
					
						
							|  |  |  |     if ! service_is_available "${PUBLIC_URL}"; then | 
					
						
							|  |  |  |         err_msg "Public service at ${PUBLIC_URL} is not available!" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | remove_apache_site() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rst_title "Remove Apache site $APACHE_FILTRON_SITE" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rst_para "\
 | 
					
						
							|  |  |  | This removes apache site ${APACHE_FILTRON_SITE}."
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ! apache_is_installed && err_msg "Apache is not installed." | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  |     if ! ask_yn "Do you really want to continue?" Yn; then | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         return | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     apache_remove_site "$APACHE_FILTRON_SITE" | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  | install_nginx_site() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rst_title "Install nginx site $NGINX_FILTRON_SITE" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rst_para "\
 | 
					
						
							|  |  |  | This installs a reverse proxy (ProxyPass) into nginx site (${NGINX_FILTRON_SITE})"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |     ! nginx_is_installed && info_msg "nginx is not installed." | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ! ask_yn "Do you really want to continue?" Yn; then | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         install_nginx | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     "${REPO_ROOT}/utils/searx.sh" install uwsgi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |     # shellcheck disable=SC2034 | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |     SEARX_SRC=$("${REPO_ROOT}/utils/searx.sh" --getenv SEARX_SRC) | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |     # shellcheck disable=SC2034 | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |     SEARX_URL_PATH=$("${REPO_ROOT}/utils/searx.sh" --getenv SEARX_URL_PATH) | 
					
						
							|  |  |  |     nginx_install_app --variant=filtron "${NGINX_FILTRON_SITE}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_msg "testing public url .." | 
					
						
							|  |  |  |     if ! service_is_available "${PUBLIC_URL}"; then | 
					
						
							|  |  |  |         err_msg "Public service at ${PUBLIC_URL} is not available!" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | remove_nginx_site() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rst_title "Remove nginx site $NGINX_FILTRON_SITE" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rst_para "\
 | 
					
						
							|  |  |  | This removes nginx site ${NGINX_FILTRON_SITE}."
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ! nginx_is_installed && err_msg "nginx is not installed." | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ! ask_yn "Do you really want to continue?" Yn; then | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     nginx_remove_site "$FILTRON_FILTRON_SITE" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-03 20:24:40 +02:00
										 |  |  | rst-doc() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     eval "echo \"$(< "${REPO_ROOT}/docs/build-templates/filtron.rst")\"" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     echo -e "\n.. START install systemd unit" | 
					
						
							|  |  |  |     cat <<EOF | 
					
						
							|  |  |  | .. tabs:: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. group-tab:: systemd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       .. code:: bash | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  |     eval "echo \"$(< "${TEMPLATES}/${SERVICE_SYSTEMD_UNIT}")\"" | prefix_stdout "         " | 
					
						
							|  |  |  |     echo -e "\n.. END install systemd unit" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |     # for DIST_NAME in ubuntu-20.04 arch fedora centos; do | 
					
						
							| 
									
										
										
										
											2020-04-03 20:24:40 +02:00
										 |  |  |     #     ( | 
					
						
							|  |  |  |     #         DIST_ID=${DIST_NAME%-*} | 
					
						
							|  |  |  |     #         DIST_VERS=${DIST_NAME#*-} | 
					
						
							|  |  |  |     #         [[ $DIST_VERS =~ $DIST_ID ]] && DIST_VERS= | 
					
						
							|  |  |  |     #         # ... | 
					
						
							|  |  |  |     #     ) | 
					
						
							|  |  |  |     # done | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-08 19:21:07 +01:00
										 |  |  | # ---------------------------------------------------------------------------- | 
					
						
							|  |  |  | main "$@" | 
					
						
							|  |  |  | # ---------------------------------------------------------------------------- |