2021-06-04 15:09:30 +00:00
|
|
|
from app.filter import clean_query
|
Add tor and http/socks proxy support (#137)
* Add tor and http/socks proxy support
Allows users to enable/disable tor from the config menu, which will
forward all requests through Tor.
Also adds support for setting environment variables for alternative
proxy support. Setting the following variables will forward requests
through the proxy:
- WHOOGLE_PROXY_USER (optional)
- WHOOGLE_PROXY_PASS (optional)
- WHOOGLE_PROXY_TYPE (required)
- Can be "http", "socks4", or "socks5"
- WHOOGLE_PROXY_LOC (required)
- Format: "<ip address>:<port>"
See #30
* Refactor acquire_tor_conn -> acquire_tor_identity
Also updated travis CI to set up tor
* Add check for Tor socket on init, improve Tor error handling
Initializing the app sends a heartbeat request to Tor to check for
availability, and updates the home page config options accordingly. This
heartbeat is sent on every request, to ensure Tor support can be
reconfigured without restarting the entire app.
If Tor support is enabled, and a subsequent request fails, then a new
TorError exception is raised, and the Tor feature is disabled until a
valid connection is restored.
The max attempts has been updated to 10, since 5 seemed a bit too low
for how quickly the attempts go by.
* Change send_tor_signal arg type, update function doc
send_tor_signal now accepts a stem.Signal arg (a bit cleaner tbh). Also
added the doc string for the "disable" attribute in TorError.
* Fix tor identity logic in Request.send
* Update proxy init, change proxyloc var name
Proxy is now only initialized if both type and location are specified,
as neither have a default fallback and both are required. I suppose the
type could fall back to http, but seems safer this way.
Also refactored proxyurl -> proxyloc for the runtime args in order to
match the Dockerfile args.
* Add tor/proxy support for Docker builds, fix opensearch/init
The Dockerfile is now updated to include support for Tor configuration,
with a working torrc file included in the repo.
An issue with opensearch was fixed as well, which was uncovered during
testing and was simple enough to fix here. Likewise, DDG bang gen was
updated to only ever happen if the file didn't exist previously, as
testing with the file being regenerated every time was tedious.
* Add missing "@" for socks proxy requests
2020-10-29 00:47:42 +00:00
|
|
|
from app.request import send_tor_signal
|
2021-04-01 04:23:30 +00:00
|
|
|
from app.utils.session import generate_user_key
|
2021-03-08 17:22:04 +00:00
|
|
|
from app.utils.bangs import gen_bangs_json
|
2021-06-30 23:00:01 +00:00
|
|
|
from app.utils.misc import gen_file_hash
|
2020-01-21 20:26:49 +00:00
|
|
|
from flask import Flask
|
2020-06-02 18:54:47 +00:00
|
|
|
from flask_session import Session
|
2020-12-17 21:39:35 +00:00
|
|
|
import json
|
2021-04-09 13:26:16 +00:00
|
|
|
import logging.config
|
2020-01-21 20:26:49 +00:00
|
|
|
import os
|
Add tor and http/socks proxy support (#137)
* Add tor and http/socks proxy support
Allows users to enable/disable tor from the config menu, which will
forward all requests through Tor.
Also adds support for setting environment variables for alternative
proxy support. Setting the following variables will forward requests
through the proxy:
- WHOOGLE_PROXY_USER (optional)
- WHOOGLE_PROXY_PASS (optional)
- WHOOGLE_PROXY_TYPE (required)
- Can be "http", "socks4", or "socks5"
- WHOOGLE_PROXY_LOC (required)
- Format: "<ip address>:<port>"
See #30
* Refactor acquire_tor_conn -> acquire_tor_identity
Also updated travis CI to set up tor
* Add check for Tor socket on init, improve Tor error handling
Initializing the app sends a heartbeat request to Tor to check for
availability, and updates the home page config options accordingly. This
heartbeat is sent on every request, to ensure Tor support can be
reconfigured without restarting the entire app.
If Tor support is enabled, and a subsequent request fails, then a new
TorError exception is raised, and the Tor feature is disabled until a
valid connection is restored.
The max attempts has been updated to 10, since 5 seemed a bit too low
for how quickly the attempts go by.
* Change send_tor_signal arg type, update function doc
send_tor_signal now accepts a stem.Signal arg (a bit cleaner tbh). Also
added the doc string for the "disable" attribute in TorError.
* Fix tor identity logic in Request.send
* Update proxy init, change proxyloc var name
Proxy is now only initialized if both type and location are specified,
as neither have a default fallback and both are required. I suppose the
type could fall back to http, but seems safer this way.
Also refactored proxyurl -> proxyloc for the runtime args in order to
match the Dockerfile args.
* Add tor/proxy support for Docker builds, fix opensearch/init
The Dockerfile is now updated to include support for Tor configuration,
with a working torrc file included in the repo.
An issue with opensearch was fixed as well, which was uncovered during
testing and was simple enough to fix here. Likewise, DDG bang gen was
updated to only ever happen if the file didn't exist previously, as
testing with the file being regenerated every time was tedious.
* Add missing "@" for socks proxy requests
2020-10-29 00:47:42 +00:00
|
|
|
from stem import Signal
|
2021-03-28 17:27:08 +00:00
|
|
|
from dotenv import load_dotenv
|
2020-01-21 20:26:49 +00:00
|
|
|
|
2020-12-17 21:06:47 +00:00
|
|
|
app = Flask(__name__, static_folder=os.path.dirname(
|
|
|
|
os.path.abspath(__file__)) + '/static')
|
2021-03-28 17:27:08 +00:00
|
|
|
|
|
|
|
# Load .env file if enabled
|
|
|
|
if os.getenv("WHOOGLE_DOTENV", ''):
|
|
|
|
dotenv_path = '../whoogle.env'
|
|
|
|
load_dotenv(os.path.join(os.path.dirname(os.path.abspath(__file__)),
|
|
|
|
dotenv_path))
|
|
|
|
|
2021-04-01 04:23:30 +00:00
|
|
|
app.default_key = generate_user_key()
|
2020-06-05 21:24:44 +00:00
|
|
|
app.no_cookie_ips = []
|
|
|
|
app.config['SECRET_KEY'] = os.urandom(32)
|
2020-06-02 18:54:47 +00:00
|
|
|
app.config['SESSION_TYPE'] = 'filesystem'
|
2021-10-11 23:44:57 +00:00
|
|
|
app.config['VERSION_NUMBER'] = '0.6.0'
|
2020-12-17 21:06:47 +00:00
|
|
|
app.config['APP_ROOT'] = os.getenv(
|
|
|
|
'APP_ROOT',
|
|
|
|
os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
app.config['STATIC_FOLDER'] = os.getenv(
|
|
|
|
'STATIC_FOLDER',
|
|
|
|
os.path.join(app.config['APP_ROOT'], 'static'))
|
2021-06-30 23:00:01 +00:00
|
|
|
app.config['BUILD_FOLDER'] = os.path.join(
|
|
|
|
app.config['STATIC_FOLDER'], 'build')
|
|
|
|
app.config['CACHE_BUSTING_MAP'] = {}
|
2021-03-21 01:21:41 +00:00
|
|
|
app.config['LANGUAGES'] = json.load(open(
|
2021-08-30 23:23:19 +00:00
|
|
|
os.path.join(app.config['STATIC_FOLDER'], 'settings/languages.json'),
|
|
|
|
encoding='utf-8'))
|
2021-03-21 01:21:41 +00:00
|
|
|
app.config['COUNTRIES'] = json.load(open(
|
|
|
|
os.path.join(app.config['STATIC_FOLDER'], 'settings/countries.json')))
|
2021-05-24 21:03:02 +00:00
|
|
|
app.config['TRANSLATIONS'] = json.load(open(
|
|
|
|
os.path.join(app.config['STATIC_FOLDER'], 'settings/translations.json')))
|
2021-06-28 14:26:51 +00:00
|
|
|
app.config['THEMES'] = json.load(open(
|
|
|
|
os.path.join(app.config['STATIC_FOLDER'], 'settings/themes.json')))
|
2020-12-17 21:06:47 +00:00
|
|
|
app.config['CONFIG_PATH'] = os.getenv(
|
|
|
|
'CONFIG_VOLUME',
|
|
|
|
os.path.join(app.config['STATIC_FOLDER'], 'config'))
|
|
|
|
app.config['DEFAULT_CONFIG'] = os.path.join(
|
|
|
|
app.config['CONFIG_PATH'],
|
|
|
|
'config.json')
|
2021-04-27 14:36:03 +00:00
|
|
|
app.config['CONFIG_DISABLE'] = os.getenv('WHOOGLE_CONFIG_DISABLE', '')
|
2020-12-17 21:06:47 +00:00
|
|
|
app.config['SESSION_FILE_DIR'] = os.path.join(
|
|
|
|
app.config['CONFIG_PATH'],
|
|
|
|
'session')
|
|
|
|
app.config['BANG_PATH'] = os.getenv(
|
|
|
|
'CONFIG_VOLUME',
|
|
|
|
os.path.join(app.config['STATIC_FOLDER'], 'bangs'))
|
|
|
|
app.config['BANG_FILE'] = os.path.join(
|
|
|
|
app.config['BANG_PATH'],
|
|
|
|
'bangs.json')
|
2021-06-15 14:14:42 +00:00
|
|
|
|
|
|
|
# The alternative to Google Translate is treated a bit differently than other
|
|
|
|
# social media site alternatives, in that it is used for any translation
|
|
|
|
# related searches.
|
|
|
|
translate_url = os.getenv('WHOOGLE_ALT_TL', 'https://lingva.ml')
|
|
|
|
if not translate_url.startswith('http'):
|
|
|
|
translate_url = 'https://' + translate_url
|
|
|
|
app.config['TRANSLATE_URL'] = translate_url
|
|
|
|
|
2021-03-07 19:04:05 +00:00
|
|
|
app.config['CSP'] = 'default-src \'none\';' \
|
2021-06-15 14:14:42 +00:00
|
|
|
'frame-src ' + translate_url + ';' \
|
2021-03-20 23:52:06 +00:00
|
|
|
'manifest-src \'self\';' \
|
2021-05-05 16:51:11 +00:00
|
|
|
'img-src \'self\' data:;' \
|
2021-03-07 19:04:05 +00:00
|
|
|
'style-src \'self\' \'unsafe-inline\';' \
|
|
|
|
'script-src \'self\';' \
|
|
|
|
'media-src \'self\';' \
|
2021-08-31 13:57:50 +00:00
|
|
|
'connect-src \'self\';'
|
2020-06-02 18:54:47 +00:00
|
|
|
|
|
|
|
if not os.path.exists(app.config['CONFIG_PATH']):
|
|
|
|
os.makedirs(app.config['CONFIG_PATH'])
|
|
|
|
|
2020-06-05 21:24:44 +00:00
|
|
|
if not os.path.exists(app.config['SESSION_FILE_DIR']):
|
|
|
|
os.makedirs(app.config['SESSION_FILE_DIR'])
|
2020-06-02 20:38:29 +00:00
|
|
|
|
Add tor and http/socks proxy support (#137)
* Add tor and http/socks proxy support
Allows users to enable/disable tor from the config menu, which will
forward all requests through Tor.
Also adds support for setting environment variables for alternative
proxy support. Setting the following variables will forward requests
through the proxy:
- WHOOGLE_PROXY_USER (optional)
- WHOOGLE_PROXY_PASS (optional)
- WHOOGLE_PROXY_TYPE (required)
- Can be "http", "socks4", or "socks5"
- WHOOGLE_PROXY_LOC (required)
- Format: "<ip address>:<port>"
See #30
* Refactor acquire_tor_conn -> acquire_tor_identity
Also updated travis CI to set up tor
* Add check for Tor socket on init, improve Tor error handling
Initializing the app sends a heartbeat request to Tor to check for
availability, and updates the home page config options accordingly. This
heartbeat is sent on every request, to ensure Tor support can be
reconfigured without restarting the entire app.
If Tor support is enabled, and a subsequent request fails, then a new
TorError exception is raised, and the Tor feature is disabled until a
valid connection is restored.
The max attempts has been updated to 10, since 5 seemed a bit too low
for how quickly the attempts go by.
* Change send_tor_signal arg type, update function doc
send_tor_signal now accepts a stem.Signal arg (a bit cleaner tbh). Also
added the doc string for the "disable" attribute in TorError.
* Fix tor identity logic in Request.send
* Update proxy init, change proxyloc var name
Proxy is now only initialized if both type and location are specified,
as neither have a default fallback and both are required. I suppose the
type could fall back to http, but seems safer this way.
Also refactored proxyurl -> proxyloc for the runtime args in order to
match the Dockerfile args.
* Add tor/proxy support for Docker builds, fix opensearch/init
The Dockerfile is now updated to include support for Tor configuration,
with a working torrc file included in the repo.
An issue with opensearch was fixed as well, which was uncovered during
testing and was simple enough to fix here. Likewise, DDG bang gen was
updated to only ever happen if the file didn't exist previously, as
testing with the file being regenerated every time was tedious.
* Add missing "@" for socks proxy requests
2020-10-29 00:47:42 +00:00
|
|
|
# Generate DDG bang filter, and create path if it doesn't exist yet
|
2020-10-10 19:55:14 +00:00
|
|
|
if not os.path.exists(app.config['BANG_PATH']):
|
|
|
|
os.makedirs(app.config['BANG_PATH'])
|
Add tor and http/socks proxy support (#137)
* Add tor and http/socks proxy support
Allows users to enable/disable tor from the config menu, which will
forward all requests through Tor.
Also adds support for setting environment variables for alternative
proxy support. Setting the following variables will forward requests
through the proxy:
- WHOOGLE_PROXY_USER (optional)
- WHOOGLE_PROXY_PASS (optional)
- WHOOGLE_PROXY_TYPE (required)
- Can be "http", "socks4", or "socks5"
- WHOOGLE_PROXY_LOC (required)
- Format: "<ip address>:<port>"
See #30
* Refactor acquire_tor_conn -> acquire_tor_identity
Also updated travis CI to set up tor
* Add check for Tor socket on init, improve Tor error handling
Initializing the app sends a heartbeat request to Tor to check for
availability, and updates the home page config options accordingly. This
heartbeat is sent on every request, to ensure Tor support can be
reconfigured without restarting the entire app.
If Tor support is enabled, and a subsequent request fails, then a new
TorError exception is raised, and the Tor feature is disabled until a
valid connection is restored.
The max attempts has been updated to 10, since 5 seemed a bit too low
for how quickly the attempts go by.
* Change send_tor_signal arg type, update function doc
send_tor_signal now accepts a stem.Signal arg (a bit cleaner tbh). Also
added the doc string for the "disable" attribute in TorError.
* Fix tor identity logic in Request.send
* Update proxy init, change proxyloc var name
Proxy is now only initialized if both type and location are specified,
as neither have a default fallback and both are required. I suppose the
type could fall back to http, but seems safer this way.
Also refactored proxyurl -> proxyloc for the runtime args in order to
match the Dockerfile args.
* Add tor/proxy support for Docker builds, fix opensearch/init
The Dockerfile is now updated to include support for Tor configuration,
with a working torrc file included in the repo.
An issue with opensearch was fixed as well, which was uncovered during
testing and was simple enough to fix here. Likewise, DDG bang gen was
updated to only ever happen if the file didn't exist previously, as
testing with the file being regenerated every time was tedious.
* Add missing "@" for socks proxy requests
2020-10-29 00:47:42 +00:00
|
|
|
if not os.path.exists(app.config['BANG_FILE']):
|
|
|
|
gen_bangs_json(app.config['BANG_FILE'])
|
2020-10-10 19:55:14 +00:00
|
|
|
|
2021-06-30 23:00:01 +00:00
|
|
|
# Build new mapping of static files for cache busting
|
|
|
|
if not os.path.exists(app.config['BUILD_FOLDER']):
|
|
|
|
os.makedirs(app.config['BUILD_FOLDER'])
|
|
|
|
|
|
|
|
cache_busting_dirs = ['css', 'js']
|
|
|
|
for cb_dir in cache_busting_dirs:
|
|
|
|
full_cb_dir = os.path.join(app.config['STATIC_FOLDER'], cb_dir)
|
|
|
|
for cb_file in os.listdir(full_cb_dir):
|
|
|
|
# Create hash from current file state
|
|
|
|
full_cb_path = os.path.join(full_cb_dir, cb_file)
|
|
|
|
cb_file_link = gen_file_hash(full_cb_dir, cb_file)
|
|
|
|
build_path = os.path.join(app.config['BUILD_FOLDER'], cb_file_link)
|
2021-07-02 19:28:27 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
os.symlink(full_cb_path, build_path)
|
|
|
|
except FileExistsError:
|
|
|
|
# Symlink hasn't changed, ignore
|
|
|
|
pass
|
2021-06-30 23:00:01 +00:00
|
|
|
|
|
|
|
# Create mapping for relative path urls
|
|
|
|
map_path = build_path.replace(app.config['APP_ROOT'], '')
|
|
|
|
if map_path.startswith('/'):
|
|
|
|
map_path = map_path[1:]
|
|
|
|
app.config['CACHE_BUSTING_MAP'][cb_file] = map_path
|
|
|
|
|
|
|
|
# Templating functions
|
|
|
|
app.jinja_env.globals.update(clean_query=clean_query)
|
|
|
|
app.jinja_env.globals.update(
|
|
|
|
cb_url=lambda f: app.config['CACHE_BUSTING_MAP'][f])
|
|
|
|
|
2020-06-05 21:24:44 +00:00
|
|
|
Session(app)
|
2020-01-21 20:26:49 +00:00
|
|
|
|
Add tor and http/socks proxy support (#137)
* Add tor and http/socks proxy support
Allows users to enable/disable tor from the config menu, which will
forward all requests through Tor.
Also adds support for setting environment variables for alternative
proxy support. Setting the following variables will forward requests
through the proxy:
- WHOOGLE_PROXY_USER (optional)
- WHOOGLE_PROXY_PASS (optional)
- WHOOGLE_PROXY_TYPE (required)
- Can be "http", "socks4", or "socks5"
- WHOOGLE_PROXY_LOC (required)
- Format: "<ip address>:<port>"
See #30
* Refactor acquire_tor_conn -> acquire_tor_identity
Also updated travis CI to set up tor
* Add check for Tor socket on init, improve Tor error handling
Initializing the app sends a heartbeat request to Tor to check for
availability, and updates the home page config options accordingly. This
heartbeat is sent on every request, to ensure Tor support can be
reconfigured without restarting the entire app.
If Tor support is enabled, and a subsequent request fails, then a new
TorError exception is raised, and the Tor feature is disabled until a
valid connection is restored.
The max attempts has been updated to 10, since 5 seemed a bit too low
for how quickly the attempts go by.
* Change send_tor_signal arg type, update function doc
send_tor_signal now accepts a stem.Signal arg (a bit cleaner tbh). Also
added the doc string for the "disable" attribute in TorError.
* Fix tor identity logic in Request.send
* Update proxy init, change proxyloc var name
Proxy is now only initialized if both type and location are specified,
as neither have a default fallback and both are required. I suppose the
type could fall back to http, but seems safer this way.
Also refactored proxyurl -> proxyloc for the runtime args in order to
match the Dockerfile args.
* Add tor/proxy support for Docker builds, fix opensearch/init
The Dockerfile is now updated to include support for Tor configuration,
with a working torrc file included in the repo.
An issue with opensearch was fixed as well, which was uncovered during
testing and was simple enough to fix here. Likewise, DDG bang gen was
updated to only ever happen if the file didn't exist previously, as
testing with the file being regenerated every time was tedious.
* Add missing "@" for socks proxy requests
2020-10-29 00:47:42 +00:00
|
|
|
# Attempt to acquire tor identity, to determine if Tor config is available
|
|
|
|
send_tor_signal(Signal.HEARTBEAT)
|
|
|
|
|
2020-12-17 21:06:47 +00:00
|
|
|
from app import routes # noqa
|
2021-04-09 13:26:16 +00:00
|
|
|
|
|
|
|
# Disable logging from imported modules
|
|
|
|
logging.config.dictConfig({
|
|
|
|
'version': 1,
|
|
|
|
'disable_existing_loggers': True,
|
|
|
|
})
|