mirror of
https://github.com/searxng/searxng.git
synced 2024-11-13 13:41:03 +00:00
[feat] media.ccc.de: implement module with pagination and iframe
This commit is contained in:
parent
a56b4a1648
commit
42b58eb448
2 changed files with 62 additions and 21 deletions
54
searx/engines/ccc_media.py
Normal file
54
searx/engines/ccc_media.py
Normal file
|
@ -0,0 +1,54 @@
|
|||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
"""media.ccc.de"""
|
||||
|
||||
import datetime
|
||||
from urllib.parse import urlencode
|
||||
|
||||
from dateutil import parser
|
||||
|
||||
about = {
|
||||
'website': 'https://media.ccc.de',
|
||||
'official_api_documentation': 'https://github.com/voc/voctoweb',
|
||||
'use_official_api': True,
|
||||
'require_api_key': False,
|
||||
'results': 'JSON',
|
||||
}
|
||||
categories = ['videos']
|
||||
paging = True
|
||||
|
||||
api_url = "https://api.media.ccc.de"
|
||||
|
||||
|
||||
def request(query, params):
|
||||
args = {'q': query, 'page': params['pageno']}
|
||||
params['url'] = f"{api_url}/public/events/search?{urlencode(args)}"
|
||||
|
||||
return params
|
||||
|
||||
|
||||
def response(resp):
|
||||
results = []
|
||||
|
||||
for item in resp.json()['events']:
|
||||
publishedDate = None
|
||||
if item.get('date'):
|
||||
publishedDate = parser.parse(item['date'])
|
||||
|
||||
iframe_src = None
|
||||
if len(item['recordings']) > 0:
|
||||
iframe_src = item['recordings'][0]['recording_url']
|
||||
|
||||
results.append(
|
||||
{
|
||||
'template': 'videos.html',
|
||||
'url': item['frontend_link'],
|
||||
'title': item['title'],
|
||||
'content': item['description'],
|
||||
'thumbnail': item['thumb_url'],
|
||||
'publishedDate': publishedDate,
|
||||
'length': datetime.timedelta(seconds=item['length']),
|
||||
'iframe_src': iframe_src,
|
||||
}
|
||||
)
|
||||
|
||||
return results
|
|
@ -438,32 +438,19 @@ engines:
|
|||
shortcut: bt
|
||||
disabled: true
|
||||
|
||||
- name: ccc-tv
|
||||
engine: xpath
|
||||
paging: false
|
||||
search_url: https://media.ccc.de/search/?q={query}
|
||||
url_xpath: //div[@class="caption"]/h3/a/@href
|
||||
title_xpath: //div[@class="caption"]/h3/a/text()
|
||||
content_xpath: //div[@class="caption"]/h4/@title
|
||||
categories: videos
|
||||
disabled: true
|
||||
shortcut: c3tv
|
||||
about:
|
||||
website: https://media.ccc.de/
|
||||
wikidata_id: Q80729951
|
||||
official_api_documentation: https://github.com/voc/voctoweb
|
||||
use_official_api: false
|
||||
require_api_key: false
|
||||
results: HTML
|
||||
# We don't set language: de here because media.ccc.de is not just
|
||||
# for a German audience. It contains many English videos and many
|
||||
# German videos have English subtitles.
|
||||
|
||||
- name: openverse
|
||||
engine: openverse
|
||||
categories: images
|
||||
shortcut: opv
|
||||
|
||||
- name: media.ccc.de
|
||||
engine: ccc_media
|
||||
shortcut: c3tv
|
||||
# We don't set language: de here because media.ccc.de is not just
|
||||
# for a German audience. It contains many English videos and many
|
||||
# German videos have English subtitles.
|
||||
disabled: true
|
||||
|
||||
- name: chefkoch
|
||||
engine: chefkoch
|
||||
shortcut: chef
|
||||
|
|
Loading…
Reference in a new issue