summaryrefslogtreecommitdiff
path: root/searx/engines/blekko_images.py
blob: f71645634067780989b528d6dbd814017009be67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"""
 Blekko (Images)

 @website     https://blekko.com
 @provide-api yes (inofficial)

 @using-api   yes
 @results     JSON
 @stable      yes
 @parse       url, title, img_src
"""

from json import loads
from searx.url_utils import urlencode

# engine dependent config
categories = ['images']
paging = True
safesearch = True

# search-url
base_url = 'https://blekko.com'
search_url = '/api/images?{query}&c={c}'

# safesearch definitions
safesearch_types = {2: '1',
                    1: '',
                    0: '0'}


# do search-request
def request(query, params):
    c = (params['pageno'] - 1) * 48

    params['url'] = base_url +\
        search_url.format(query=urlencode({'q': query}),
                          c=c)

    if params['pageno'] != 1:
        params['url'] += '&page={pageno}'.format(pageno=(params['pageno'] - 1))

    # let Blekko know we wan't have profiling
    params['cookies']['tag_lesslogging'] = '1'

    # parse safesearch argument
    params['cookies']['safesearch'] = safesearch_types.get(params['safesearch'], '')

    return params


# get response from search-request
def response(resp):
    results = []

    search_results = loads(resp.text)

    # return empty array if there are no results
    if not search_results:
        return []

    for result in search_results:
        # append result
        results.append({'url': result['page_url'],
                        'title': result['title'],
                        'content': '',
                        'img_src': result['url'],
                        'template': 'images.html'})

    # return results
    return results