Sha256: 2963859dc09e82e04079efaa258e4da8b0c3f4a6f8f94117d2bb0df9af74731c
Contents?: true
Size: 1.13 KB
Versions: 7
Compression:
Stored size: 1.13 KB
Contents
module Onebox module Engine class GithubCommitOnebox include Engine include LayoutSupport include JSON matches_regexp Regexp.new("^http(?:s)?://(?:www\.)?(?:(?:\w)+\.)?(github)\.com(?:/)?(?:.)*/commit/") def url "https://api.github.com/repos/#{match[:owner]}/#{match[:repository]}/commits/#{match[:sha]}" end private def match @match ||= @url.match(%{github\.com/(?<owner>[^/]+)/(?<repository>[^/]+)/commit/(?<sha>[^/]+)}) 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 result['commit_date'] = Time.parse(result['commit']['author']['date']).strftime("%I:%M%p - %d %b %y") result['repository_path'] = "#{URI(link).host}/#{URI(link).path.split('/')[1]}/#{URI(link).path.split('/')[2]}" result['repository_url'] = "https://#{result['repository_path']}" result end end end end
Version data entries
7 entries across 7 versions & 1 rubygems