Sha256: f8e6477785567f0e4d89cddf091427b65284b76ad60bf23b54dfb5b60e5db021

Contents?: true

Size: 1.23 KB

Versions: 7

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

require_relative '../mixins/github_body'

module Onebox
  module Engine
    class GithubPullRequestOnebox
      include Engine
      include LayoutSupport
      include JSON
      include Onebox::Mixins::GithubBody

      GITHUB_COMMENT_REGEX = /(<!--.*?-->\r\n)/

      matches_regexp(/^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['body'], result['excerpt'] = compute_body(result['body'])

        result
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
onebox-2.2.19 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.18 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.17 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.16 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.15 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.14 lib/onebox/engine/github_pullrequest_onebox.rb
onebox-2.2.13 lib/onebox/engine/github_pullrequest_onebox.rb