Add links redirect inside channel description

This commit is contained in:
Féry Mathieu (Mathius) 2022-03-13 22:46:45 +01:00
parent 6d3b907307
commit 3d2c4ea266
No known key found for this signature in database
GPG key ID: F9CCC80C18A59037
3 changed files with 13 additions and 3 deletions

View file

@ -383,3 +383,11 @@ def fetch_random_instance
return filtered_instance_list.sample(1)[0]
end
def make_html_with_links(baseText : String) : String
returnValue = baseText.dup
returnValue.scan(/https?:\/\/[^ \n]*/).each do |match|
returnValue = returnValue.sub(match[0], "<a href=\"#{match[0]}\">#{match[0]}</a>")
end
return returnValue
end

View file

@ -10,7 +10,7 @@ module Invidious::Routes::Channels
if !data.is_a?(Tuple)
return data
end
locale, user, subscriptions, continuation, ucid, channel = data
locale, user, subscriptions, continuation, ucid, channel, description = data
page = env.params.query["page"]?.try &.to_i?
page ||= 1
@ -201,6 +201,8 @@ module Invidious::Routes::Channels
return error_template(500, ex)
end
return {locale, user, subscriptions, continuation, ucid, channel}
description = make_html_with_links(channel.description_html)
return {locale, user, subscriptions, continuation, ucid, channel, description}
end
end

View file

@ -32,7 +32,7 @@
<div class="h-box">
<div id="descriptionWrapper">
<p><span style="white-space:pre-wrap"><%= channel.description_html %></span></p>
<p><span style="white-space:pre-wrap"><%= description %></span></p>
</div>
</div>