Sha256: 293cafa31016c75cb56b56634c6a01370a53df7e559473ab605b51efd5f928b0
Contents?: true
Size: 763 Bytes
Versions: 7
Compression:
Stored size: 763 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
7 entries across 7 versions & 1 rubygems