Sha256: ecc378b3b92fc7c2a5ef996913b6dc0c8ed200b551313af34c20d0332428d31a
Contents?: true
Size: 1.29 KB
Versions: 37
Compression:
Stored size: 1.29 KB
Contents
module Onebox module Engine class PastebinOnebox include Engine include LayoutSupport MAX_LINES = 10 matches_regexp(/^http?:\/\/pastebin\.com/) private def data @data ||= { title: 'pastebin.com', link: link, content: content, truncated?: truncated? } end def content lines.take(MAX_LINES).join("\n") end def truncated? lines.size > MAX_LINES end def lines return @lines if @lines response = Onebox::Helpers.fetch_response("http://pastebin.com/raw/#{paste_key}", 1) @lines = response.body.split("\n") end def paste_key if uri.path =~ /\/raw\// match = uri.path.match(/\/raw\/([^\/]+)/) return match[1] if match && match[1] elsif uri.path =~ /\/download\// match = uri.path.match(/\/download\/([^\/]+)/) return match[1] if match && match[1] elsif uri.path =~ /\/embed\// match = uri.path.match(/\/embed\/([^\/]+)/) return match[1] if match && match[1] else match = uri.path.match(/\/([^\/]+)/) return match[1] if match && match[1] end nil rescue return nil end end end end
Version data entries
37 entries across 37 versions & 1 rubygems