mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	[feat] engine: implementation of seekr for news, images and videos
This commit is contained in:
		
							parent
							
								
									7052a1a7cf
								
							
						
					
					
						commit
						2bab658d39
					
				
					 2 changed files with 129 additions and 0 deletions
				
			
		
							
								
								
									
										104
									
								
								searx/engines/seekr.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										104
									
								
								searx/engines/seekr.py
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,104 @@
 | 
			
		|||
# SPDX-License-Identifier: AGPL-3.0-or-later
 | 
			
		||||
# lint: pylint
 | 
			
		||||
"""Seekr (images, videos, news)
 | 
			
		||||
"""
 | 
			
		||||
 | 
			
		||||
from datetime import datetime
 | 
			
		||||
from json import loads
 | 
			
		||||
from urllib.parse import urlencode
 | 
			
		||||
 | 
			
		||||
about = {
 | 
			
		||||
    "website": 'https://seekr.com/',
 | 
			
		||||
    "official_api_documentation": None,
 | 
			
		||||
    "use_official_api": True,
 | 
			
		||||
    "require_api_key": True,
 | 
			
		||||
    "results": 'JSON',
 | 
			
		||||
}
 | 
			
		||||
paging = True  # news search doesn't support paging
 | 
			
		||||
 | 
			
		||||
base_url = "https://api.seekr.com"
 | 
			
		||||
# v2/newssearch, v1/imagetab, v1/videotab
 | 
			
		||||
seekr_path = "newssearch"
 | 
			
		||||
seekr_api_version = "v2"
 | 
			
		||||
api_key = "srh1-22fb-sekr"
 | 
			
		||||
results_per_page = 10
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def request(query, params):
 | 
			
		||||
    args = {
 | 
			
		||||
        'query': query,
 | 
			
		||||
        'apiKey': api_key,
 | 
			
		||||
        'limit': results_per_page,
 | 
			
		||||
        'offset': (params['pageno'] - 1) * results_per_page,
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    path = f"{seekr_api_version}/{seekr_path}"
 | 
			
		||||
    if seekr_api_version == "v1":
 | 
			
		||||
        path = seekr_path
 | 
			
		||||
 | 
			
		||||
    params['url'] = f"{base_url}/engine/{path}?{urlencode(args)}"
 | 
			
		||||
 | 
			
		||||
    return params
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def _images_response(json):
 | 
			
		||||
    results = []
 | 
			
		||||
 | 
			
		||||
    for result in json['expertResponses'][0]['advice']['results']:
 | 
			
		||||
        summary = loads(result['summary'])
 | 
			
		||||
        results.append(
 | 
			
		||||
            {
 | 
			
		||||
                'template': 'images.html',
 | 
			
		||||
                'url': summary['refererurl'],
 | 
			
		||||
                'title': result['title'],
 | 
			
		||||
                'img_src': result['url'],
 | 
			
		||||
                'img_format': f"{summary['width']}x{summary['height']}",
 | 
			
		||||
            }
 | 
			
		||||
        )
 | 
			
		||||
 | 
			
		||||
    return results
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def _videos_response(json):
 | 
			
		||||
    results = []
 | 
			
		||||
 | 
			
		||||
    for result in json['expertResponses'][0]['advice']['results']:
 | 
			
		||||
        results.append(
 | 
			
		||||
            {
 | 
			
		||||
                'template': 'videos.html',
 | 
			
		||||
                'url': result['url'],
 | 
			
		||||
                'title': result['title'],
 | 
			
		||||
            }
 | 
			
		||||
        )
 | 
			
		||||
 | 
			
		||||
    return results
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def _news_response(json):
 | 
			
		||||
    results = []
 | 
			
		||||
 | 
			
		||||
    for result in json['expertResponses'][0]['advice']['categorySearchResult']['searchResult']['results']:
 | 
			
		||||
        results.append(
 | 
			
		||||
            {
 | 
			
		||||
                'url': result['url'],
 | 
			
		||||
                'title': result['title'],
 | 
			
		||||
                'content': result['summary'],
 | 
			
		||||
                'thumbnail': result.get('thumbnail', ''),
 | 
			
		||||
                'publishedDate': datetime.strptime(result['pubDate'][:19], '%Y-%m-%d %H:%M:%S'),
 | 
			
		||||
            }
 | 
			
		||||
        )
 | 
			
		||||
 | 
			
		||||
    return results
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def response(resp):
 | 
			
		||||
    json = resp.json()
 | 
			
		||||
 | 
			
		||||
    if seekr_path == "videotab":
 | 
			
		||||
        return _videos_response(json)
 | 
			
		||||
    if seekr_path == "imagetab":
 | 
			
		||||
        return _images_response(json)
 | 
			
		||||
    if seekr_path == "newssearch":
 | 
			
		||||
        return _news_response(json)
 | 
			
		||||
 | 
			
		||||
    raise ValueError(f"Unsupported seekr path: {seekr_path}")
 | 
			
		||||
| 
						 | 
				
			
			@ -1807,6 +1807,31 @@ engines:
 | 
			
		|||
      results: HTML
 | 
			
		||||
      language: de
 | 
			
		||||
 | 
			
		||||
  - name: seekr news
 | 
			
		||||
    engine: seekr
 | 
			
		||||
    paging: false
 | 
			
		||||
    shortcut: senews
 | 
			
		||||
    categories: news
 | 
			
		||||
    seekr_path: newssearch
 | 
			
		||||
    seekr_api_version: v2
 | 
			
		||||
    disabled: true
 | 
			
		||||
 | 
			
		||||
  - name: seekr images
 | 
			
		||||
    engine: seekr
 | 
			
		||||
    shortcut: seimg
 | 
			
		||||
    categories: images
 | 
			
		||||
    seekr_path: imagetab
 | 
			
		||||
    seekr_api_version: v1
 | 
			
		||||
    disabled: true
 | 
			
		||||
 | 
			
		||||
  - name: seekr videos
 | 
			
		||||
    engine: seekr
 | 
			
		||||
    shortcut: sevid
 | 
			
		||||
    categories: videos
 | 
			
		||||
    seekr_path: videotab
 | 
			
		||||
    seekr_api_version: v1
 | 
			
		||||
    disabled: true
 | 
			
		||||
 | 
			
		||||
  - name: sjp.pwn
 | 
			
		||||
    engine: sjp
 | 
			
		||||
    shortcut: sjp
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue