mirror of https://github.com/iv-org/invidious.git
Remove non-functional 'ad_slots'
This commit is contained in:
parent
16fb5023e0
commit
e04ac53336
|
@ -264,29 +264,11 @@ get "/watch" do |env|
|
||||||
rating = video.info["avg_rating"].to_f64
|
rating = video.info["avg_rating"].to_f64
|
||||||
engagement = ((video.dislikes.to_f + video.likes.to_f)/video.views * 100)
|
engagement = ((video.dislikes.to_f + video.likes.to_f)/video.views * 100)
|
||||||
|
|
||||||
if video.info["ad_slots"]?
|
|
||||||
ad_slots = video.info["ad_slots"].split(",")
|
|
||||||
ad_slots = ad_slots.join(", ")
|
|
||||||
end
|
|
||||||
|
|
||||||
if video.info["enabled_engage_types"]?
|
if video.info["enabled_engage_types"]?
|
||||||
engage_types = video.info["enabled_engage_types"].split(",")
|
engage_types = video.info["enabled_engage_types"].split(",")
|
||||||
engage_types = engage_types.join(", ")
|
engage_types = engage_types.join(", ")
|
||||||
end
|
end
|
||||||
|
|
||||||
if video.info["ad_tag"]?
|
|
||||||
ad_tag = URI.parse(video.info["ad_tag"])
|
|
||||||
ad_query = HTTP::Params.parse(ad_tag.query.not_nil!)
|
|
||||||
|
|
||||||
ad_category = URI.unescape(ad_query["iu"])
|
|
||||||
ad_category = ad_category.lstrip("/4061/").split(".")[-1]
|
|
||||||
|
|
||||||
ad_query = HTTP::Params.parse(ad_query["scp"])
|
|
||||||
|
|
||||||
k2 = URI.unescape(ad_query["k2"]).split(",")
|
|
||||||
k2 = k2.join(", ")
|
|
||||||
end
|
|
||||||
|
|
||||||
templated "watch"
|
templated "watch"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -211,16 +211,9 @@ get_youtube_comments();
|
||||||
<% end %>
|
<% end %>
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if ad_slots %>
|
|
||||||
<p id="Slots">Ad Slots: <%= ad_slots %></p>
|
|
||||||
<% end %>
|
|
||||||
<% if engage_types %>
|
<% if engage_types %>
|
||||||
<p id="Engage">Engage Types: <%= engage_types %></p>
|
<p id="Engage">Engage Types: <%= engage_types %></p>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if ad_tag %>
|
|
||||||
<p id="Category">Ad Category: <%= ad_category %></p>
|
|
||||||
<p id="Tags">Ad Tags(?): <%= k2 %></p>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue