This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/lib/onebox/engine/coub_onebox.rb
2023-01-09 12:10:19 +00:00

23 lines
477 B
Ruby

# frozen_string_literal: true
module Onebox
module Engine
class CoubOnebox
include Engine
include StandardEmbed
matches_regexp(%r{^https?://coub\.com/view/})
always_https
def placeholder_html
oembed = get_oembed
"<img src='#{oembed.thumbnail_url}' height='#{oembed.thumbnail_height}' width='#{oembed.thumbnail_width}' #{oembed.title_attr}>"
end
def to_html
get_oembed.html
end
end
end
end