Sha256: 76cd976ed794005ef5c4ff4cdb89e51c06a3802a4268f0d94c1f5a538881282e
Contents?: true
Size: 1.26 KB
Versions: 25
Compression:
Stored size: 1.26 KB
Contents
module Onebox module Engine class GithubCommitOnebox include Engine include LayoutSupport include JSON matches_regexp Regexp.new("^https?://(?:www\.)?(?:(?:\w)+\.)?(github)\.com(?:/)?(?:.)*/commits?/") 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>[^/]+)/commits?/(?<sha>[^/]+)}) @match = @url.match(%{github\.com/(?<owner>[^/]+)/(?<repository>[^/]+)/pull/(?<pr>[^/]+)/commits?/(?<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 result['message'] = result['commit']['message'].split("\n", 2).last.strip end ulink = URI(link) result['commit_date'] = Time.parse(result['commit']['author']['date']).strftime("%I:%M%p - %d %b %y") result['domain'] = "#{ulink.host}/#{ulink.path.split('/')[1]}/#{ulink.path.split('/')[2]}" result end end end end
Version data entries
25 entries across 25 versions & 1 rubygems