mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:53:41 +08:00
2f28ba318c
* FEATURE: Onebox can match engines based on the content_type `FinalDestination` now returns the `content_type` of a resolved URL. `Oneboxer` passes this value to `Onebox` itself. Onebox engines can now specify a `matches_content_type` regex of content_types that the engine can handle, regardless of the URL. `ImageOnebox` will match URLs with a content type of `image/png`, `jpg`, `gif`, `bmp`, `tif`, etc. This will allow images that exist at a URL without a file type extension to be correctly rendered, assuming a valid `content_type` is returned.
31 lines
849 B
Ruby
31 lines
849 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Onebox
|
|
module Engine
|
|
class ImageOnebox
|
|
include Engine
|
|
|
|
matches_content_type(/^image\/(png|jpg|jpeg|gif|bmp|tif|tiff)$/)
|
|
matches_regexp(/^(https?:)?\/\/.+\.(png|jpg|jpeg|gif|bmp|tif|tiff)(\?.*)?$/i)
|
|
|
|
def always_https?
|
|
AllowlistedGenericOnebox.host_matches(uri, AllowlistedGenericOnebox.https_hosts)
|
|
end
|
|
|
|
def to_html
|
|
# Fix Dropbox image links
|
|
if @url[/^https:\/\/www.dropbox.com\/s\//]
|
|
@url.sub!("https://www.dropbox.com", "https://dl.dropboxusercontent.com")
|
|
end
|
|
|
|
escaped_url = ::Onebox::Helpers.normalize_url_for_output(@url)
|
|
<<-HTML
|
|
<a href="#{escaped_url}" target="_blank" rel="noopener" class="onebox">
|
|
<img src="#{escaped_url}">
|
|
</a>
|
|
HTML
|
|
end
|
|
end
|
|
end
|
|
end
|