2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-22 13:37:06 +08:00
|
|
|
# name: lazy-yt
|
2014-07-22 10:39:32 +08:00
|
|
|
# about: Uses the lazyYT plugin to lazy load Youtube videos
|
2015-01-27 20:30:07 +08:00
|
|
|
# version: 1.0.1
|
2014-07-22 10:39:32 +08:00
|
|
|
# authors: Arpit Jalan
|
2021-07-19 23:35:47 +08:00
|
|
|
# url: https://github.com/discourse/discourse/tree/main/plugins/lazy-yt
|
2014-07-22 10:39:32 +08:00
|
|
|
|
2018-05-15 23:25:43 +08:00
|
|
|
hide_plugin if self.respond_to?(:hide_plugin)
|
2022-12-14 22:52:17 +08:00
|
|
|
enabled_site_setting :lazy_yt_enabled
|
2018-05-15 23:25:43 +08:00
|
|
|
|
2021-05-26 17:41:35 +08:00
|
|
|
require "onebox"
|
|
|
|
|
2014-07-22 10:39:32 +08:00
|
|
|
# stylesheet
|
|
|
|
register_asset "stylesheets/lazyYT.css"
|
2014-07-28 14:20:08 +08:00
|
|
|
register_asset "stylesheets/lazyYT_mobile.scss", :mobile
|
2014-07-22 10:39:32 +08:00
|
|
|
|
|
|
|
# freedom patch YouTube Onebox
|
|
|
|
class Onebox::Engine::YoutubeOnebox
|
|
|
|
include Onebox::Engine
|
2015-08-18 17:17:39 +08:00
|
|
|
alias_method :yt_onebox_to_html, :to_html
|
2014-07-22 10:39:32 +08:00
|
|
|
|
|
|
|
def to_html
|
2023-01-25 23:40:57 +08:00
|
|
|
if SiteSetting.lazy_yt_enabled && video_id && !params["list"]
|
2020-06-24 04:21:36 +08:00
|
|
|
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}\""]
|
2015-08-18 17:17:39 +08:00
|
|
|
|
2021-04-08 00:29:39 +08:00
|
|
|
result = parse_embed_response
|
|
|
|
result ||= get_opengraph.data
|
|
|
|
|
|
|
|
thumbnail_url = result[:image] || "https://img.youtube.com/vi/#{video_id}/hqdefault.jpg"
|
2020-05-16 00:49:27 +08:00
|
|
|
|
2014-08-23 03:21:02 +08:00
|
|
|
# Put in the LazyYT div instead of the iframe
|
2016-01-30 19:32:48 +08:00
|
|
|
escaped_title = ERB::Util.html_escape(video_title)
|
2020-04-30 02:40:21 +08:00
|
|
|
|
DEV: Correctly tag heredocs (#16061)
This allows text editors to use correct syntax coloring for the heredoc sections.
Heredoc tag names we use:
languages: SQL, JS, RUBY, LUA, HTML, CSS, SCSS, SH, HBS, XML, YAML/YML, MF, ICS
other: MD, TEXT/TXT, RAW, EMAIL
2022-03-01 03:50:55 +08:00
|
|
|
<<~HTML
|
2020-05-26 05:24:40 +08:00
|
|
|
<div class="onebox lazyYT lazyYT-container"
|
2020-04-30 02:40:21 +08:00
|
|
|
data-youtube-id="#{video_id}"
|
|
|
|
data-youtube-title="#{escaped_title}"
|
2020-06-24 04:21:36 +08:00
|
|
|
#{size_restricted ? size_tags.map { |t| "data-#{t}" }.join(" ") : ""}
|
2020-04-30 02:40:21 +08:00
|
|
|
data-parameters="#{embed_params}">
|
|
|
|
<a href="https://www.youtube.com/watch?v=#{video_id}" target="_blank">
|
2020-06-24 04:21:36 +08:00
|
|
|
<img class="ytp-thumbnail-image"
|
|
|
|
src="#{thumbnail_url}"
|
|
|
|
#{size_restricted ? size_tags.join(" ") : ""}
|
|
|
|
title="#{escaped_title}">
|
2020-04-30 02:40:21 +08:00
|
|
|
</a>
|
|
|
|
</div>
|
DEV: Correctly tag heredocs (#16061)
This allows text editors to use correct syntax coloring for the heredoc sections.
Heredoc tag names we use:
languages: SQL, JS, RUBY, LUA, HTML, CSS, SCSS, SH, HBS, XML, YAML/YML, MF, ICS
other: MD, TEXT/TXT, RAW, EMAIL
2022-03-01 03:50:55 +08:00
|
|
|
HTML
|
2014-07-22 10:39:32 +08:00
|
|
|
else
|
2015-08-18 17:17:39 +08:00
|
|
|
yt_onebox_to_html
|
2014-07-22 10:39:32 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-08-21 18:54:05 +08:00
|
|
|
|
|
|
|
after_initialize do
|
2018-05-10 01:39:17 +08:00
|
|
|
on(:reduce_cooked) do |fragment|
|
|
|
|
fragment
|
|
|
|
.css(".lazyYT")
|
|
|
|
.each do |yt|
|
2014-08-21 18:54:05 +08:00
|
|
|
begin
|
2018-05-10 01:39:17 +08:00
|
|
|
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>}
|
2014-08-21 18:54:05 +08:00
|
|
|
rescue URI::InvalidURIError
|
2018-05-10 01:39:17 +08:00
|
|
|
# remove any invalid/weird URIs
|
|
|
|
yt.remove
|
2023-01-07 04:42:16 +08:00
|
|
|
end
|
2014-08-21 18:54:05 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|