mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Add opensearch.xml
This commit is contained in:
parent
95ebfd34c5
commit
941a773b7d
2 changed files with 16 additions and 0 deletions
|
@ -512,6 +512,21 @@ end
|
||||||
|
|
||||||
# Search
|
# Search
|
||||||
|
|
||||||
|
get "/opensearch.xml" do |env|
|
||||||
|
env.response.content_type = "application/opensearchdescription+xml"
|
||||||
|
|
||||||
|
XML.build(indent: " ", encoding: "UTF-8") do |xml|
|
||||||
|
xml.element("OpenSearchDescription", xmlns: "http://a9.com/-/spec/opensearch/1.1/") do
|
||||||
|
xml.element("ShortName") { xml.text "Invidious" }
|
||||||
|
xml.element("LongName") { xml.text "Invidious Search" }
|
||||||
|
xml.element("Description") { xml.text "Search for videos, channels, and playlists on Invidious" }
|
||||||
|
xml.element("InputEncoding") { xml.text "UTF-8" }
|
||||||
|
xml.element("Image", width: 48, height: 48, type: "image/x-icon") { xml.text "/favicon.ico" }
|
||||||
|
xml.element("Url", type: "text/html", method: "get", template: "/search?q={searchTerms}")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
get "/results" do |env|
|
get "/results" do |env|
|
||||||
query = env.params.query["search_query"]?
|
query = env.params.query["search_query"]?
|
||||||
query ||= env.params.query["q"]?
|
query ||= env.params.query["q"]?
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#575757">
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#575757">
|
||||||
<meta name="msapplication-TileColor" content="#575757">
|
<meta name="msapplication-TileColor" content="#575757">
|
||||||
<meta name="theme-color" content="#575757">
|
<meta name="theme-color" content="#575757">
|
||||||
|
<link title="Invidious" type="application/opensearchdescription+xml" rel="search" href="/opensearch.xml">
|
||||||
<link rel="stylesheet" href="/css/pure-min.css">
|
<link rel="stylesheet" href="/css/pure-min.css">
|
||||||
<link rel="stylesheet" href="/css/grids-responsive-min.css">
|
<link rel="stylesheet" href="/css/grids-responsive-min.css">
|
||||||
<link rel="stylesheet" href="/css/ionicons.min.css">
|
<link rel="stylesheet" href="/css/ionicons.min.css">
|
||||||
|
|
Loading…
Reference in a new issue