Sha256: e52e24e16ee2ba04a32a3a2006444a426be6c631a7dd2e2a3f3b2091dd8a1bec
Contents?: true
Size: 764 Bytes
Versions: 31
Compression:
Stored size: 764 Bytes
Contents
# frozen_string_literal: true module Onebox module Engine class ImageOnebox include Engine matches_regexp(/^(https?:)?\/\/.+\.(png|jpg|jpeg|gif|bmp|tif|tiff)(\?.*)?$/i) def always_https? WhitelistedGenericOnebox.host_matches(uri, WhitelistedGenericOnebox.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" class="onebox"> <img src="#{escaped_url}"> </a> HTML end end end end
Version data entries
31 entries across 31 versions & 1 rubygems