Sha256: 1cab7e8c2d297a2f6831a37aa4aa9fa3589f15dadbf361f737cf183679b2dfc4

Contents?: true

Size: 1.58 KB

Versions: 142

Compression:

Stored size: 1.58 KB

Contents

module Onebox
  module Engine
    class GithubGistOnebox
      include Engine
      include LayoutSupport
      include JSON

      MAX_FILES = 3

      matches_regexp Regexp.new("^http(?:s)?://gist\\.(?:(?:\\w)+\\.)?(github)\\.com(?:/)?")
      always_https

      def url
        "https://api.github.com/gists/#{match[:sha]}"
      end

      private

      def data
        @data ||= {
          title: 'gist.github.com',
          link: link,
          gist_files: gist_files.take(MAX_FILES),
          truncated_files?: truncated_files?
        }
      end

      def truncated_files?
        gist_files.size > MAX_FILES
      end

      def gist_files
        return [] unless gist_api

        @gist_files ||= gist_api["files"].values.map do |file_json|
          GistFile.new(file_json)
        end
      end

      def gist_api
        @raw ||= raw.clone
      rescue OpenURI::HTTPError
        # The Gist API rate limit of 60 requests per hour was reached.
        nil
      end

      def match
        @match ||= @url.match(%r{gist\.github\.com/([^/]+/)?(?<sha>[0-9a-f]+)})
      end

      class GistFile
        attr_reader :filename
        attr_reader :language

        MAX_LINES = 10

        def initialize(json)
          @json = json
          @filename = @json["filename"]
          @language = @json["language"]
        end

        def content
          lines.take(MAX_LINES).join("\n")
        end

        def truncated?
          lines.size > MAX_LINES
        end

        private

        def lines
          @lines ||= @json["content"].split("\n")
        end
      end

    end
  end
end

Version data entries

142 entries across 142 versions & 1 rubygems

Version Path
onebox-1.8.48 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.47 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.46 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.45 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.44 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.43 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.42 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.41 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.40 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.39 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.38 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.36 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.35 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.34 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.33 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.32 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.31 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.30 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.29 lib/onebox/engine/github_gist_onebox.rb
onebox-1.8.28 lib/onebox/engine/github_gist_onebox.rb