Add more OpenSearch definitions (for images etc.) (#786)
This commit is contained in:
parent
877785c3ca
commit
90e160094d
|
@ -2,7 +2,6 @@ import argparse
|
|||
import base64
|
||||
import io
|
||||
import json
|
||||
import os
|
||||
import pickle
|
||||
import urllib.parse as urlparse
|
||||
import uuid
|
||||
|
@ -25,7 +24,7 @@ from app.utils.session import generate_user_key, valid_user_session
|
|||
from bs4 import BeautifulSoup as bsoup
|
||||
from flask import jsonify, make_response, request, redirect, render_template, \
|
||||
send_file, session, url_for, g
|
||||
from requests import exceptions, get
|
||||
from requests import exceptions
|
||||
from requests.models import PreparedRequest
|
||||
from cryptography.fernet import Fernet, InvalidToken
|
||||
from cryptography.exceptions import InvalidSignature
|
||||
|
@ -37,6 +36,12 @@ ac_var = 'WHOOGLE_AUTOCOMPLETE'
|
|||
autocomplete_enabled = os.getenv(ac_var, '1')
|
||||
|
||||
|
||||
def get_search_name(tbm):
|
||||
for tab in app.config['HEADER_TABS'].values():
|
||||
if tab['tbm'] == tbm:
|
||||
return tab['name']
|
||||
|
||||
|
||||
def auth_required(f):
|
||||
@wraps(f)
|
||||
def decorated(*args, **kwargs):
|
||||
|
@ -259,7 +264,9 @@ def opensearch():
|
|||
return render_template(
|
||||
'opensearch.xml',
|
||||
main_url=opensearch_url,
|
||||
request_type='' if get_only else 'method="post"'
|
||||
request_type='' if get_only else 'method="post"',
|
||||
search_type=request.args.get('tbm'),
|
||||
search_name=get_search_name(request.args.get('tbm'))
|
||||
), 200, {'Content-Type': 'application/xml'}
|
||||
|
||||
|
||||
|
@ -375,6 +382,7 @@ def search():
|
|||
has_update=app.config['HAS_UPDATE'],
|
||||
query=urlparse.unquote(query),
|
||||
search_type=search_util.search_type,
|
||||
search_name=get_search_name(search_util.search_type),
|
||||
config=g.user_config,
|
||||
autocomplete_enabled=autocomplete_enabled,
|
||||
lingva_url=app.config['TRANSLATE_URL'],
|
||||
|
|
|
@ -2,7 +2,11 @@
|
|||
<head>
|
||||
<link rel="shortcut icon" href="static/img/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="static/img/favicon.ico" type="image/x-icon">
|
||||
<link rel="search" href="opensearch.xml" type="application/opensearchdescription+xml" title="Whoogle Search">
|
||||
{% if not search_type %}
|
||||
<link rel="search" href="opensearch.xml" type="application/opensearchdescription+xml" title="Whoogle Search">
|
||||
{% else %}
|
||||
<link rel="search" href="opensearch.xml?tbm={{ search_type }}" type="application/opensearchdescription+xml" title="Whoogle Search ({{ search_name }})">
|
||||
{% endif %}
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="referrer" content="no-referrer">
|
||||
<link rel="stylesheet" href="{{ cb_url('logo.css') }}">
|
||||
|
|
|
@ -1,7 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"
|
||||
xmlns:moz="http://www.mozilla.org/2006/browser/search/">
|
||||
<ShortName>Whoogle</ShortName>
|
||||
{% if not search_type %}
|
||||
<ShortName>Whoogle</ShortName>
|
||||
{% else %}
|
||||
<ShortName>Whoogle {{ search_name }}</ShortName>
|
||||
{% endif %}
|
||||
<Description>Whoogle: A lightweight, deployable Google search proxy for desktop/mobile that removes Javascript, AMP links, and ads
|
||||
</Description>
|
||||
<InputEncoding>UTF-8</InputEncoding>
|
||||
|
@ -10,6 +14,9 @@
|
|||
</Image>
|
||||
<Url type="text/html" {{ request_type|safe }} template="{{ main_url }}/search">
|
||||
<Param name="q" value="{searchTerms}"/>
|
||||
{% if search_type %}
|
||||
<Param name="tbm" value="{{ search_type }}"/>
|
||||
{% endif %}
|
||||
</Url>
|
||||
<Url type="application/x-suggestions+json" {{ request_type|safe }} template="{{ main_url }}/autocomplete">
|
||||
<Param name="q" value="{searchTerms}"/>
|
||||
|
|
Loading…
Reference in New Issue
Block a user