Sha256: ea7edb2010305d7ba56b1fe7a1ab87c265d5ca5b22af87031f6c4d66aa4378ea
Contents?: true
Size: 583 Bytes
Versions: 38
Compression:
Stored size: 583 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 /^https:\/\/www.dropbox.com\/s\//.match @url @url.gsub!("https://www.dropbox.com","https://dl.dropboxusercontent.com") end "<a href='#{@url}' target='_blank'><img src='#{@url}'></a>" end end end end
Version data entries
38 entries across 38 versions & 1 rubygems