invidious.py 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. # SPDX-License-Identifier: AGPL-3.0-or-later
  2. """Invidious (Videos)
  3. """
  4. import time
  5. import random
  6. from urllib.parse import quote_plus, urlparse
  7. from dateutil import parser
  8. from searx.utils import humanize_number
  9. # about
  10. about = {
  11. "website": 'https://api.invidious.io/',
  12. "wikidata_id": 'Q79343316',
  13. "official_api_documentation": 'https://github.com/iv-org/documentation/blob/master/API.md',
  14. "use_official_api": True,
  15. "require_api_key": False,
  16. "results": 'JSON',
  17. }
  18. # engine dependent config
  19. categories = ["videos", "music"]
  20. paging = True
  21. time_range_support = True
  22. # base_url can be overwritten by a list of URLs in the settings.yml
  23. base_url = 'https://vid.puffyan.us'
  24. def request(query, params):
  25. time_range_dict = {
  26. "day": "today",
  27. "week": "week",
  28. "month": "month",
  29. "year": "year",
  30. }
  31. if isinstance(base_url, list):
  32. params["base_url"] = random.choice(base_url)
  33. else:
  34. params["base_url"] = base_url
  35. search_url = params["base_url"] + "/api/v1/search?q={query}"
  36. params["url"] = search_url.format(query=quote_plus(query)) + "&page={pageno}".format(pageno=params["pageno"])
  37. if params["time_range"] in time_range_dict:
  38. params["url"] += "&date={timerange}".format(timerange=time_range_dict[params["time_range"]])
  39. if params["language"] != "all":
  40. lang = params["language"].split("-")
  41. if len(lang) == 2:
  42. params["url"] += "&range={lrange}".format(lrange=lang[1])
  43. return params
  44. def response(resp):
  45. results = []
  46. search_results = resp.json()
  47. base_invidious_url = resp.search_params['base_url'] + "/watch?v="
  48. for result in search_results:
  49. rtype = result.get("type", None)
  50. if rtype == "video":
  51. videoid = result.get("videoId", None)
  52. if not videoid:
  53. continue
  54. url = base_invidious_url + videoid
  55. thumbs = result.get("videoThumbnails", [])
  56. thumb = next((th for th in thumbs if th["quality"] == "sddefault"), None)
  57. if thumb:
  58. thumbnail = thumb.get("url", "")
  59. else:
  60. thumbnail = ""
  61. # some instances return a partial thumbnail url
  62. # we check if the url is partial, and prepend the base_url if it is
  63. if thumbnail and not urlparse(thumbnail).netloc:
  64. thumbnail = resp.search_params['base_url'] + thumbnail
  65. publishedDate = parser.parse(time.ctime(result.get("published", 0)))
  66. length = time.gmtime(result.get("lengthSeconds"))
  67. if length.tm_hour:
  68. length = time.strftime("%H:%M:%S", length)
  69. else:
  70. length = time.strftime("%M:%S", length)
  71. results.append(
  72. {
  73. "url": url,
  74. "title": result.get("title", ""),
  75. "content": result.get("description", ""),
  76. "length": length,
  77. "views": humanize_number(result['viewCount']),
  78. "template": "videos.html",
  79. "author": result.get("author"),
  80. "publishedDate": publishedDate,
  81. "iframe_src": resp.search_params['base_url'] + '/embed/' + videoid,
  82. "thumbnail": thumbnail,
  83. }
  84. )
  85. return results