debian-mirror-gitlab/lib/gitlab/blame.rb
2021-04-17 20:07:23 +05:30

57 lines
1.1 KiB
Ruby

# frozen_string_literal: true
module Gitlab
class Blame
attr_accessor :blob, :commit
def initialize(blob, commit)
@blob = blob
@commit = commit
end
def groups(highlight: true)
prev_sha = nil
groups = []
current_group = nil
i = 0
blame.each do |commit, line|
commit = Commit.new(commit, project)
commit.lazy_author # preload author
if prev_sha != commit.sha
groups << current_group if current_group
current_group = { commit: commit, lines: [] }
end
current_group[:lines] << (highlight ? highlighted_lines[i].html_safe : line)
prev_sha = commit.sha
i += 1
end
groups << current_group if current_group
groups
end
private
def blame
@blame ||= Gitlab::Git::Blame.new(repository, @commit.id, @blob.path)
end
def highlighted_lines
@blob.load_all_data!
@highlighted_lines ||= @blob.present.highlight.lines
end
def project
commit.project
end
def repository
project.repository
end
end
end