discourse/plugins/lazy-yt/plugin.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
2.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2019-08-22 01:37:06 -04:00
# name: lazy-yt
2014-07-21 22:39:32 -04:00
# about: Uses the lazyYT plugin to lazy load Youtube videos
2015-01-27 07:30:07 -05:00
# version: 1.0.1
2014-07-21 22:39:32 -04:00
# authors: Arpit Jalan
# url: https://github.com/discourse/discourse/tree/main/plugins/lazy-yt
2014-07-21 22:39:32 -04:00
hide_plugin if self.respond_to?(:hide_plugin)
enabled_site_setting :lazy_yt_enabled
require "onebox"
2014-07-21 22:39:32 -04:00
# stylesheet
register_asset "stylesheets/lazyYT.css"
2014-07-28 02:20:08 -04:00
register_asset "stylesheets/lazyYT_mobile.scss", :mobile
2014-07-21 22:39:32 -04:00
# freedom patch YouTube Onebox
class Onebox::Engine::YoutubeOnebox
include Onebox::Engine
alias_method :yt_onebox_to_html, :to_html
2014-07-21 22:39:32 -04:00
def to_html
if video_id && !params['list']
size_restricted = [params['width'], params['height']].any?
video_width = (params['width'] && params['width'].to_i <= 695) ? params['width'] : 690 # embed width
video_height = (params['height'] && params['height'].to_i <= 500) ? params['height'] : 388 # embed height
size_tags = ["width=\"#{video_width}\"", "height=\"#{video_height}\""]
result = parse_embed_response
result ||= get_opengraph.data
thumbnail_url = result[:image] || "https://img.youtube.com/vi/#{video_id}/hqdefault.jpg"
# Put in the LazyYT div instead of the iframe
2016-01-30 06:32:48 -05:00
escaped_title = ERB::Util.html_escape(video_title)
<<~HTML
<div class="onebox lazyYT lazyYT-container"
data-youtube-id="#{video_id}"
data-youtube-title="#{escaped_title}"
#{size_restricted ? size_tags.map { |t| "data-#{t}" }.join(' ') : ""}
data-parameters="#{embed_params}">
<a href="https://www.youtube.com/watch?v=#{video_id}" target="_blank">
<img class="ytp-thumbnail-image"
src="#{thumbnail_url}"
#{size_restricted ? size_tags.join(' ') : ""}
title="#{escaped_title}">
</a>
</div>
HTML
2014-07-21 22:39:32 -04:00
else
yt_onebox_to_html
2014-07-21 22:39:32 -04:00
end
end
2014-07-26 09:11:21 -04:00
2014-07-21 22:39:32 -04:00
end
after_initialize do
on(:reduce_cooked) do |fragment|
fragment.css(".lazyYT").each do |yt|
begin
youtube_id = yt["data-youtube-id"]
parameters = yt["data-parameters"]
uri = URI("https://www.youtube.com/embed/#{youtube_id}?autoplay=1&#{parameters}")
yt.replace %{<p><a href="#{uri.to_s}">https://#{uri.host}#{uri.path}</a></p>}
rescue URI::InvalidURIError
# remove any invalid/weird URIs
yt.remove
end
end
end
end