Sha256: 9f1afbe3aeb428bade117b74614f04bed3dfaa7dc1163b06d146f35cc3cbfd74

Contents?: true

Size: 718 Bytes

Versions: 61

Compression:

Stored size: 718 Bytes

Contents

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">
            <img src="#{escaped_url}">
          </a>
        HTML
      end
    end
  end
end

Version data entries

61 entries across 61 versions & 1 rubygems

Version Path
onebox-1.7.4 lib/onebox/engine/image_onebox.rb