From 8cdad5d85d0a0e5f1c6b62bf2dfcfdbafeda92b9 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Sat, 23 Jan 2021 10:20:27 +0100 Subject: [PATCH] [fix] google-videos: parse values for 'length' & 'author' The 'video.html' template from the 'oscar' design supports replacement for *author* and *length*. Google-videos does not have an author, alternatively the publisher info from is used for the *author*. Hint: these replacements are not supported by the 'simple' design. Signed-off-by: Markus Heiser --- searx/engines/google_videos.py | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/searx/engines/google_videos.py b/searx/engines/google_videos.py index 486ba7cc..8bce054d 100644 --- a/searx/engines/google_videos.py +++ b/searx/engines/google_videos.py @@ -195,21 +195,18 @@ def response(resp): logger.error("no vidthumb imgdata for: %s" % img_id) img_src = eval_xpath(c_node, './div[1]//a/g-img/img/@src')[0] - duration = extract_text(eval_xpath(c_node, './div[1]//a/span')) - content = extract_text(eval_xpath(c_node, './div[2]/span')) - pub_info = extract_text(eval_xpath(c_node, './div[2]/div')) - - if len(duration) > 3: - content = duration + " - " + content - if pub_info: - content = content + " (%s)" % pub_info + length = extract_text(eval_xpath(c_node, './/div[1]//a/div[3]')) + content = extract_text(eval_xpath(c_node, './/div[2]/span')) + pub_info = extract_text(eval_xpath(c_node, './/div[2]/div')) results.append({ - 'url': url, - 'title': title, - 'content': content, - 'thumbnail': img_src, - 'template': 'videos.html', + 'url': url, + 'title': title, + 'content': content, + 'length': length, + 'author': pub_info, + 'thumbnail': img_src, + 'template': 'videos.html', }) # parse suggestion