Sha256: 3056021d612d8ea065524e5eaa8b89e73363a148147a6b0e190ee0f75f5b661a
Contents?: true
Size: 1.75 KB
Versions: 44
Compression:
Stored size: 1.75 KB
Contents
# frozen_string_literal: true module Onebox module Engine class GithubCommitOnebox include Engine include LayoutSupport include JSON matches_regexp Regexp.new("^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 @match @match = @url.match(%{github\.com/(?<owner>[^/]+)/(?<repository>[^/]+)/commit/(?<sha>[^/]+)}) @match = @url.match(%{github\.com/(?<owner>[^/]+)/(?<repository>[^/]+)/pull/(?<pr>[^/]+)/commit/(?<sha>[^/]+)}) if @match.nil? @match end def data result = raw.clone result['link'] = link result['title'] = result['commit']['message'].split("\n").first if result['commit']['message'].lines.count > 1 message = result['commit']['message'].split("\n", 2).last.strip message_words = message.gsub("\n\n", "\n").gsub("\n", "<br>").split(" ") max_words = 20 result['message'] = message_words[0..max_words].join(" ") result['message'] += "..." if message_words.length > max_words result['message'] = result['message'].gsub("<br>", "\n") end ulink = URI(link) 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['domain'] = "#{ulink.host}/#{ulink.path.split('/')[1]}/#{ulink.path.split('/')[2]}" result end end end end
Version data entries
44 entries across 44 versions & 1 rubygems