Skip to content

Commit

Permalink
Replace YouTube links
Browse files Browse the repository at this point in the history
  • Loading branch information
omarroth committed Sep 4, 2018
1 parent 81c520e commit 0d8f036
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 41 deletions.
6 changes: 3 additions & 3 deletions src/invidious.cr
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ get "/watch" do |env|
aspect_ratio = "16:9"

video.description = fill_links(video.description, "https", "www.youtube.com")
video.description = add_alt_links(video.description)
video.description = replace_links(video.description)
description = video.short_description

host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, env.request.headers["Host"]?)
Expand Down Expand Up @@ -349,7 +349,7 @@ get "/embed/:id" do |env|
aspect_ratio = nil

video.description = fill_links(video.description, "https", "www.youtube.com")
video.description = add_alt_links(video.description)
video.description = replace_links(video.description)
description = video.short_description

host_url = make_host_url(Kemal.config.ssl || CONFIG.https_only, env.request.headers["Host"]?)
Expand Down Expand Up @@ -1936,7 +1936,7 @@ get "/api/v1/comments/:id" do |env|
content_html = template_reddit_comments(comments)

content_html = fill_links(content_html, "https", "www.reddit.com")
content_html = add_alt_links(content_html)
content_html = replace_links(content_html)
rescue ex
reddit_thread = nil
content_html = ""
Expand Down
47 changes: 10 additions & 37 deletions src/invidious/comments.cr
Original file line number Diff line number Diff line change
Expand Up @@ -190,61 +190,34 @@ def template_reddit_comments(root)
return html
end

def add_alt_links(html)
alt_links = [] of {String, String}
def replace_links(html)
html = XML.parse_html(html)

# This is painful but likely the only way to accomplish this in Crystal,
# as Crystigiri and others are not able to insert XML Nodes into a document.
# The goal here is to use as little regex as possible
html.scan(/<a[^>]*>([^<]+)<\/a>/) do |match|
anchor = XML.parse_html(match[0])
anchor = anchor.xpath_node("//a").not_nil!
html.xpath_nodes(%q(//a)).each do |anchor|
url = URI.parse(anchor["href"])

if ["www.youtube.com", "m.youtube.com"].includes?(url.host)
if url.path == "/redirect"
params = HTTP::Params.parse(url.query.not_nil!)
alt_url = params["q"]?
alt_url ||= "/"
anchor["href"] = params["q"]?
else
alt_url = url.full_path
anchor["href"] = url.full_path
end

alt_link = <<-END_HTML
<a href="#{alt_url}">
<i class="icon ion-ios-link"></i>
</a>
END_HTML
elsif url.host == "youtu.be"
alt_link = <<-END_HTML
<a href="/watch?v=#{url.path.try &.lchop("/")}&#{url.query}">
<i class="icon ion-ios-link"></i>
</a>
END_HTML
anchor["href"] = "/watch?v=#{url.path.try &.lchop("/")}&#{url.query}"
elsif url.to_s == "#"
begin
length_seconds = decode_length_seconds(anchor.content)
rescue ex
length_seconds = decode_time(anchor.content)
end

alt_anchor = <<-END_HTML
<a href="javascript:void(0)" onclick="player.currentTime(#{length_seconds})">#{anchor.content}</a>
END_HTML

html = html.sub(anchor.to_s, alt_anchor)
next
else
alt_link = ""
anchor["href"] = "javascript:void(0)"
anchor["onclick"] = "player.currentTime(#{length_seconds})"
end

alt_links << {anchor.to_s, alt_link}
end

alt_links.each do |original, alternate|
html = html.sub(original, original + alternate)
end

html = html.to_xml(options: XML::SaveOptions::NO_DECL)
return html
end

Expand All @@ -267,5 +240,5 @@ def fill_links(html, scheme, host)
html = html.to_xml(options: XML::SaveOptions::NO_DECL)
end

html
return html
end
2 changes: 1 addition & 1 deletion src/invidious/playlists.cr
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def fetch_playlist(plid)
description = description.to_xml.strip(" \n")
description = description.split("<button ")[0]
description = fill_links(description, "https", "www.youtube.com")
description = add_alt_links(description)
description = replace_links(description)
else
description = ""
end
Expand Down

0 comments on commit 0d8f036

Please sign in to comment.