Sha256: 647bc870b88dd2c4a7f269e88c8b5868941e00b70d540a7a1f72d85c49937e00

Contents?: true

Size: 1.49 KB

Versions: 5

Compression:

Stored size: 1.49 KB

Contents

# frozen_string_literal: true

require_relative '../mixins/github_body'

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

      matches_regexp(/^https?:\/\/(?:www\.)?(?:(?:\w)+\.)?(github)\.com(?:\/)?(?:.)*\/commit\//)
      always_https

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

      private

      def match
        return @match if defined?(@match)

        @match = @url.match(%{github\.com/(?<owner>[^/]+)/(?<repository>[^/]+)/commit/(?<sha>[^/]+)})
        @match ||= @url.match(%{github\.com/(?<owner>[^/]+)/(?<repository>[^/]+)/pull/(?<pr>[^/]+)/commit/(?<sha>[^/]+)})

        @match
      end

      def data
        result = raw.clone

        lines = result['commit']['message'].split("\n")
        result['title'] = lines.first
        result['body'], result['excerpt'] = compute_body(lines[1..lines.length].join("\n"))

        committed_at = Time.parse(result['commit']['author']['date'])
        result['committed_at'] = committed_at.strftime("%I:%M%p - %d %b %y %Z")
        result['committed_at_date'] = committed_at.strftime("%F")
        result['committed_at_time'] = committed_at.strftime("%T")

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

        result
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
onebox-2.2.19 lib/onebox/engine/github_commit_onebox.rb
onebox-2.2.18 lib/onebox/engine/github_commit_onebox.rb
onebox-2.2.17 lib/onebox/engine/github_commit_onebox.rb
onebox-2.2.16 lib/onebox/engine/github_commit_onebox.rb
onebox-2.2.15 lib/onebox/engine/github_commit_onebox.rb