| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 | from lxml import htmlfrom lxml.etree import _ElementStringResult, _ElementUnicodeResultfrom searx.utils import html_to_textfrom searx.url_utils import unquote, urlencode, urljoin, urlparsesearch_url = Noneurl_xpath = Nonecontent_xpath = Nonetitle_xpath = Nonethumbnail_xpath = Falsepaging = Falsesuggestion_xpath = ''results_xpath = ''# parameters for engines with paging support## number of results on each page# (only needed if the site requires not a page number, but an offset)page_size = 1# number of the first page (usually 0 or 1)first_page_num = 1'''if xpath_results is list, extract the text from each result and concat the listif xpath_results is a xml element, extract all the text node from it   ( text_content() method from lxml )if xpath_results is a string element, then it's already done'''def extract_text(xpath_results):    if type(xpath_results) == list:        # it's list of result : concat everything using recursive call        result = ''        for e in xpath_results:            result = result + extract_text(e)        return result.strip()    elif type(xpath_results) in [_ElementStringResult, _ElementUnicodeResult]:        # it's a string        return ''.join(xpath_results)    else:        # it's a element        text = html.tostring(            xpath_results, encoding='unicode', method='text', with_tail=False        )        text = text.strip().replace('\n', ' ')        return ' '.join(text.split())def extract_url(xpath_results, search_url):    if xpath_results == []:        raise Exception('Empty url resultset')    url = extract_text(xpath_results)    if url.startswith('//'):        # add http or https to this kind of url //example.com/        parsed_search_url = urlparse(search_url)        url = u'{0}:{1}'.format(parsed_search_url.scheme or 'http', url)    elif url.startswith('/'):        # fix relative url to the search engine        url = urljoin(search_url, url)    # normalize url    url = normalize_url(url)    return urldef normalize_url(url):    parsed_url = urlparse(url)    # add a / at this end of the url if there is no path    if not parsed_url.netloc:        raise Exception('Cannot parse url')    if not parsed_url.path:        url += '/'    # FIXME : hack for yahoo    if parsed_url.hostname == 'search.yahoo.com'\       and parsed_url.path.startswith('/r'):        p = parsed_url.path        mark = p.find('/**')        if mark != -1:            return unquote(p[mark + 3:]).decode('utf-8')    return urldef request(query, params):    query = urlencode({'q': query})[2:]    fp = {'query': query}    if paging and search_url.find('{pageno}') >= 0:        fp['pageno'] = (params['pageno'] - 1) * page_size + first_page_num    params['url'] = search_url.format(**fp)    params['query'] = query    return paramsdef response(resp):    results = []    dom = html.fromstring(resp.text)    if results_xpath:        for result in dom.xpath(results_xpath):            url = extract_url(result.xpath(url_xpath), search_url)            title = extract_text(result.xpath(title_xpath))            content = extract_text(result.xpath(content_xpath))            tmp_result = {'url': url, 'title': title, 'content': content}            # add thumbnail if available            if thumbnail_xpath:                thumbnail_xpath_result = result.xpath(thumbnail_xpath)                if len(thumbnail_xpath_result) > 0:                    tmp_result['img_src'] = extract_url(thumbnail_xpath_result, search_url)            results.append(tmp_result)    else:        for url, title, content in zip(            (extract_url(x, search_url) for             x in dom.xpath(url_xpath)),            map(extract_text, dom.xpath(title_xpath)),            map(extract_text, dom.xpath(content_xpath))        ):            results.append({'url': url, 'title': title, 'content': content})    if not suggestion_xpath:        return results    for suggestion in dom.xpath(suggestion_xpath):        results.append({'suggestion': extract_text(suggestion)})    return results
 |