Sha256: 204860b25fc2254f35bad66af7784f9f62df7427f5ce121d36ffd9180c0b0450

Contents?: true

Size: 1.04 KB

Versions: 41

Compression:

Stored size: 1.04 KB

Contents

# frozen_string_literal: true

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

        created_at = Time.parse(result['created_at'])
        result['created_at'] = created_at.strftime("%I:%M%p - %d %b %y %Z")
        result['created_at_date'] = created_at.strftime("%F")
        result['created_at_time'] = created_at.strftime("%T")

        ulink = URI(link)
        result['domain'] = "#{ulink.host}/#{ulink.path.split('/')[1]}/#{ulink.path.split('/')[2]}"
        result
      end
    end
  end
end

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
onebox-2.2.11 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.10 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.9 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.8 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.6 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.5 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.4 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.2 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.1 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.0 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.1.9 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.1.8 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.1.7 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.1.6 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.1.5 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.1.4 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.1.3 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.1.2 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.1.1 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.1.0 lib/onebox/engine/github_pullrequest_onebox.rb