diff --git a/app/models/config.py b/app/models/config.py index 19020092fd..ef4204f8c5 100644 --- a/app/models/config.py +++ b/app/models/config.py @@ -28,6 +28,7 @@ def __init__(self, **kwargs): self.new_tab = read_config_bool('WHOOGLE_CONFIG_NEW_TAB') self.view_image = read_config_bool('WHOOGLE_CONFIG_VIEW_IMAGE') self.get_only = read_config_bool('WHOOGLE_CONFIG_GET_ONLY') + self.accept_language = False self.safe_keys = [ 'lang_search', diff --git a/app/request.py b/app/request.py index 68e30d8981..9bb9bd09f4 100644 --- a/app/request.py +++ b/app/request.py @@ -157,6 +157,12 @@ def __init__(self, normal_ua, root_path, config: Config): self.language = ( config.lang_search if config.lang_search else '' ) + + # For setting Accept-language Header + self.lang_interface = '' + if config.accept_language: + self.lang_interface = config.lang_interface + self.mobile = bool(normal_ua) and ('Android' in normal_ua or 'iPhone' in normal_ua) self.modified_user_agent = gen_user_agent(self.mobile) @@ -243,7 +249,12 @@ def send(self, base_url=SEARCH_URL, query='', attempt=0, 'User-Agent': modified_user_agent } - # FIXME: Should investigate this further to ensure the consent + # Adding the Accept-Language to the Header if possible + if self.lang_interface: + headers.update({'Accept-Language': + self.lang_interface.replace('lang_', '') + + ';q=1.0'}) + # view is suppressed correctly now = datetime.now() cookies = { diff --git a/app/templates/index.html b/app/templates/index.html index 435dcf34b4..27b1f1bc2b 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -177,6 +177,10 @@