mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-10-31 04:32:02 +00:00 
			
		
		
		
	Fix URL-encoding in href strings (#2460)
* hrefs: replace HTML.escape w/ URI.encode_www_form * Fix search_query_encoded
This commit is contained in:
		| @@ -41,7 +41,7 @@ | ||||
|     <div class="pure-g h-box"> | ||||
|         <div class="pure-u-1 pure-u-lg-1-5"> | ||||
|             <% if page > 1 %> | ||||
|                 <a href="/add_playlist_items?list=<%= plid %>&q=<%= HTML.escape(query.not_nil!) %>&page=<%= page - 1 %>"> | ||||
|                 <a href="/add_playlist_items?list=<%= plid %>&q=<%= URI.encode_www_form(query.not_nil!) %>&page=<%= page - 1 %>"> | ||||
|                     <%= translate(locale, "Previous page") %> | ||||
|                 </a> | ||||
|             <% end %> | ||||
| @@ -49,7 +49,7 @@ | ||||
|         <div class="pure-u-1 pure-u-lg-3-5"></div> | ||||
|         <div class="pure-u-1 pure-u-lg-1-5" style="text-align:right"> | ||||
|             <% if count >= 20 %> | ||||
|                 <a href="/add_playlist_items?list=<%= plid %>&q=<%= HTML.escape(query.not_nil!) %>&page=<%= page + 1 %>"> | ||||
|                 <a href="/add_playlist_items?list=<%= plid %>&q=<%= URI.encode_www_form(query.not_nil!) %>&page=<%= page + 1 %>"> | ||||
|                     <%= translate(locale, "Next page") %> | ||||
|                 </a> | ||||
|             <% end %> | ||||
|   | ||||
| @@ -96,7 +96,7 @@ | ||||
| <div class="pure-g h-box"> | ||||
|     <div class="pure-u-1 pure-u-lg-1-5"> | ||||
|         <% if page > 1 %> | ||||
|             <a href="/channel/<%= ucid %>?page=<%= page - 1 %><% if sort_by != "newest" %>&sort_by=<%= HTML.escape(sort_by) %><% end %>"> | ||||
|             <a href="/channel/<%= ucid %>?page=<%= page - 1 %><% if sort_by != "newest" %>&sort_by=<%= URI.encode_www_form(sort_by) %><% end %>"> | ||||
|                 <%= translate(locale, "Previous page") %> | ||||
|             </a> | ||||
|         <% end %> | ||||
| @@ -104,7 +104,7 @@ | ||||
|     <div class="pure-u-1 pure-u-lg-3-5"></div> | ||||
|     <div class="pure-u-1 pure-u-lg-1-5" style="text-align:right"> | ||||
|         <% if count == 60 %> | ||||
|             <a href="/channel/<%= ucid %>?page=<%= page + 1 %><% if sort_by != "newest" %>&sort_by=<%= HTML.escape(sort_by) %><% end %>"> | ||||
|             <a href="/channel/<%= ucid %>?page=<%= page + 1 %><% if sort_by != "newest" %>&sort_by=<%= URI.encode_www_form(sort_by) %><% end %>"> | ||||
|                 <%= translate(locale, "Next page") %> | ||||
|             </a> | ||||
|         <% end %> | ||||
|   | ||||
| @@ -87,7 +87,7 @@ | ||||
|                         <a title="<%=translate(locale, "Audio mode")%>" href="/watch?v=<%= item.id %>&list=<%= item.plid %>&listen=1"> | ||||
|                             <i class="icon ion-md-headset"></i> | ||||
|                         </a> | ||||
|                         <a title="<%=translate(locale, "Switch Invidious Instance")%>" href="/redirect?referer=<%=HTML.escape("watch?v=#{item.id}&list=#{item.plid}")%>"> | ||||
|                         <a title="<%=translate(locale, "Switch Invidious Instance")%>" href="/redirect?referer=<%=URI.encode_www_form("watch?v=#{item.id}&list=#{item.plid}")%>"> | ||||
|                             <i class="icon ion-md-jet"></i> | ||||
|                         </a> | ||||
|                     </div> | ||||
| @@ -163,7 +163,7 @@ | ||||
|                         <a title="<%=translate(locale, "Audio mode")%>" href="/watch?v=<%= item.id %>&listen=1"> | ||||
|                             <i class="icon ion-md-headset"></i> | ||||
|                         </a> | ||||
|                         <a title="<%=translate(locale, "Switch Invidious Instance")%>" href="/redirect?referer=<%=HTML.escape("watch?v=#{item.id}")%>"> | ||||
|                         <a title="<%=translate(locale, "Switch Invidious Instance")%>" href="/redirect?referer=<%=URI.encode_www_form("watch?v=#{item.id}")%>"> | ||||
|                             <i class="icon ion-md-jet"></i> | ||||
|                         </a> | ||||
|                     </div> | ||||
|   | ||||
| @@ -96,7 +96,7 @@ | ||||
|     <div class="pure-u-1 pure-u-md-4-5"></div> | ||||
|     <div class="pure-u-1 pure-u-lg-1-5" style="text-align:right"> | ||||
|         <% if continuation %> | ||||
|             <a href="/channel/<%= ucid %>/playlists?continuation=<%= continuation %><% if sort_by != "last" %>&sort_by=<%= HTML.escape(sort_by) %><% end %>"> | ||||
|             <a href="/channel/<%= ucid %>/playlists?continuation=<%= continuation %><% if sort_by != "last" %>&sort_by=<%= URI.encode_www_form(sort_by) %><% end %>"> | ||||
|                 <%= translate(locale, "Next page") %> | ||||
|             </a> | ||||
|         <% end %> | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
| <title><%= search_query.not_nil!.size > 30 ? HTML.escape(query.not_nil![0,30].rstrip(".") + "...") : HTML.escape(query.not_nil!) %> - Invidious</title> | ||||
| <% end %> | ||||
|  | ||||
| <% search_query_encoded = env.get?("search").try { |x| URI.encode(x.as(String), space_to_plus: true) } %> | ||||
| <% search_query_encoded = env.get?("search").try { |x| URI.encode_www_form(x.as(String), space_to_plus: true) } %> | ||||
|  | ||||
| <!-- Search redirection and filtering UI --> | ||||
| <% if count == 0 %> | ||||
| @@ -23,7 +23,7 @@ | ||||
|                         <% if operator_hash.fetch("date", "all") == date %> | ||||
|                             <b><%= translate(locale, date) %></b> | ||||
|                         <% else %> | ||||
|                             <a href="/search?q=<%= HTML.escape(query.not_nil!.gsub(/ ?date:[a-z]+/, "") + " date:" + date) %>&page=<%= page %>"> | ||||
|                             <a href="/search?q=<%= URI.encode_www_form(query.not_nil!.gsub(/ ?date:[a-z]+/, "") + " date:" + date) %>&page=<%= page %>"> | ||||
|                                 <%= translate(locale, date) %> | ||||
|                             </a> | ||||
|                         <% end %> | ||||
| @@ -38,7 +38,7 @@ | ||||
|                         <% if operator_hash.fetch("content_type", "all") == content_type %> | ||||
|                             <b><%= translate(locale, content_type) %></b> | ||||
|                         <% else %> | ||||
|                             <a href="/search?q=<%= HTML.escape(query.not_nil!.gsub(/ ?content_type:[a-z]+/, "") + " content_type:" + content_type) %>&page=<%= page %>"> | ||||
|                             <a href="/search?q=<%= URI.encode_www_form(query.not_nil!.gsub(/ ?content_type:[a-z]+/, "") + " content_type:" + content_type) %>&page=<%= page %>"> | ||||
|                                 <%= translate(locale, content_type) %> | ||||
|                             </a> | ||||
|                         <% end %> | ||||
| @@ -53,7 +53,7 @@ | ||||
|                         <% if operator_hash.fetch("duration", "all") == duration %> | ||||
|                             <b><%= translate(locale, duration) %></b> | ||||
|                         <% else %> | ||||
|                             <a href="/search?q=<%= HTML.escape(query.not_nil!.gsub(/ ?duration:[a-z]+/, "") + " duration:" + duration) %>&page=<%= page %>"> | ||||
|                             <a href="/search?q=<%= URI.encode_www_form(query.not_nil!.gsub(/ ?duration:[a-z]+/, "") + " duration:" + duration) %>&page=<%= page %>"> | ||||
|                                 <%= translate(locale, duration) %> | ||||
|                             </a> | ||||
|                         <% end %> | ||||
| @@ -68,11 +68,11 @@ | ||||
|                         <% if operator_hash.fetch("features", "all").includes?(feature) %> | ||||
|                             <b><%= translate(locale, feature) %></b> | ||||
|                         <% elsif operator_hash.has_key?("features") %> | ||||
|                             <a href="/search?q=<%= HTML.escape(query.not_nil!.gsub(/features:/, "features:" + feature + ",")) %>&page=<%= page %>"> | ||||
|                             <a href="/search?q=<%= URI.encode_www_form(query.not_nil!.gsub(/features:/, "features:" + feature + ",")) %>&page=<%= page %>"> | ||||
|                                 <%= translate(locale, feature) %> | ||||
|                             </a> | ||||
|                         <% else %> | ||||
|                             <a href="/search?q=<%= HTML.escape(query.not_nil! + " features:" + feature) %>&page=<%= page %>"> | ||||
|                             <a href="/search?q=<%= URI.encode_www_form(query.not_nil! + " features:" + feature) %>&page=<%= page %>"> | ||||
|                                 <%= translate(locale, feature) %> | ||||
|                             </a> | ||||
|                         <% end %> | ||||
| @@ -87,7 +87,7 @@ | ||||
|                         <% if operator_hash.fetch("sort", "relevance") == sort %> | ||||
|                             <b><%= translate(locale, sort) %></b> | ||||
|                         <% else %> | ||||
|                             <a href="/search?q=<%= HTML.escape(query.not_nil!.gsub(/ ?sort:[a-z]+/, "") + " sort:" + sort) %>&page=<%= page %>"> | ||||
|                             <a href="/search?q=<%= URI.encode_www_form(query.not_nil!.gsub(/ ?sort:[a-z]+/, "") + " sort:" + sort) %>&page=<%= page %>"> | ||||
|                                 <%= translate(locale, sort) %> | ||||
|                             </a> | ||||
|                         <% end %> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 mastihios
					mastihios