Sha256: db43e80b1e173c2707b591b96653f0c6b24f1296e3b918ae16f09d552ae894ed

Contents?: true

Size: 1.32 KB

Versions: 32

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true

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) rescue ""
        @lines = response.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
        nil
      end
    end
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
onebox-1.9.30 lib/onebox/engine/pastebin_onebox.rb
onebox-1.9.29 lib/onebox/engine/pastebin_onebox.rb
onebox-1.9.28.4 lib/onebox/engine/pastebin_onebox.rb
onebox-1.9.28.3 lib/onebox/engine/pastebin_onebox.rb
onebox-1.9.28.2 lib/onebox/engine/pastebin_onebox.rb
onebox-1.9.28.1 lib/onebox/engine/pastebin_onebox.rb
onebox-1.9.28 lib/onebox/engine/pastebin_onebox.rb
onebox-1.9.27.2 lib/onebox/engine/pastebin_onebox.rb
onebox-1.9.27.1 lib/onebox/engine/pastebin_onebox.rb
onebox-1.9.26 lib/onebox/engine/pastebin_onebox.rb
onebox-1.9.25 lib/onebox/engine/pastebin_onebox.rb
onebox-1.9.24 lib/onebox/engine/pastebin_onebox.rb