Sha256: a378f49b9042a7d02d31daac96c7d4dc272e5eb9a829d7c21a01db9653247e01

Contents?: true

Size: 871 Bytes

Versions: 26

Compression:

Stored size: 871 Bytes

Contents

module Onebox
  module Engine
    class GithubPullRequestOnebox
      include Engine
      include LayoutSupport
      include JSON

      matches_regexp Regexp.new("^https?://(?:www\\.)?(?:(?:\\w)+\\.)?(github)\\.com(?:/)?(?:.)*/pull/")
      always_https

      def url
        "https://api.github.com/repos/#{match[:owner]}/#{match[:repository]}/pulls/#{match[:number]}"
      end

      private

      def match
        @match ||= @url.match(%r{github\.com/(?<owner>[^/]+)/(?<repository>[^/]+)/pull/(?<number>[^/]+)})
      end

      def data
        result = raw.clone
        result['link'] = link
        result['created_at'] = Time.parse(result['created_at']).strftime("%I:%M%p - %d %b %y %Z")
        ulink = URI(link)
        result['domain'] = "#{ulink.host}/#{ulink.path.split('/')[1]}/#{ulink.path.split('/')[2]}"
        result
      end
    end
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
onebox-1.8.69 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-1.8.68 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-1.8.67 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-1.8.66 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-1.8.65 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-1.8.64 lib/onebox/engine/github_pullrequest_onebox.rb