Add links redirect inside channel description

このコミットが含まれているのは:
Féry Mathieu (Mathius) 2022-03-13 22:46:45 +01:00
コミット c9594d46af
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 935858CF779FB2CE
3個のファイルの変更13行の追加3行の削除

ファイルの表示

@ -391,3 +391,11 @@ def reduce_uri(uri : URI | String, max_length : Int32 = 50, suffix : String = "
end
return str
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

ファイルの表示

@ -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

ファイルの表示

@ -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>