Sha256: 0fa163517949b8edb99516d92ac05ffd5f2d84f2c64d296ed926ad3595bbda9b
Contents?: true
Size: 778 Bytes
Versions: 8
Compression:
Stored size: 778 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" rel="noopener" class="onebox"> <img src="#{escaped_url}"> </a> HTML end end end end
Version data entries
8 entries across 8 versions & 1 rubygems