Sha256: e65429a31d69f24b86d3146cab7cbafff585e0b5d12c0b88dbb35a4869ee070a
Contents?: true
Size: 778 Bytes
Versions: 31
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? 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
Version data entries
31 entries across 31 versions & 1 rubygems