2016-01-28 08:49:21 -05:00
|
|
|
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)
|
|
|
|
|
|
|
|
sha = commit.sha
|
|
|
|
if prev_sha != sha
|
|
|
|
groups << current_group if current_group
|
|
|
|
current_group = { commit: commit, lines: [] }
|
|
|
|
end
|
|
|
|
|
|
|
|
line = highlighted_lines[i].html_safe if highlight
|
|
|
|
current_group[:lines] << line
|
|
|
|
|
|
|
|
prev_sha = 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
|
2017-06-06 17:20:24 -04:00
|
|
|
@blob.load_all_data!
|
2016-06-10 18:42:43 -04:00
|
|
|
@highlighted_lines ||=
|
|
|
|
Gitlab::Highlight.highlight(@blob.path, @blob.data, repository: repository).lines
|
2016-01-28 08:49:21 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def project
|
|
|
|
commit.project
|
|
|
|
end
|
|
|
|
|
|
|
|
def repository
|
|
|
|
project.repository
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|