Move line code generation into Gitlab::Git
Having a distinct class just for that was a bit overkill
This commit is contained in:
parent
faa9bd402d
commit
9fdde3693b
|
|
@ -186,7 +186,7 @@ module API
|
|||
|
||||
lines.each do |line|
|
||||
next unless line.new_pos == params[:line] && line.type == params[:line_type]
|
||||
break opts[:line_code] = Gitlab::Git::Conflict::LineCode.generate(diff.new_path, line.new_pos, line.old_pos)
|
||||
break opts[:line_code] = Gitlab::Git.diff_line_code(diff.new_path, line.new_pos, line.old_pos)
|
||||
end
|
||||
|
||||
break if opts[:line_code]
|
||||
|
|
|
|||
|
|
@ -173,7 +173,7 @@ module API
|
|||
|
||||
lines.each do |line|
|
||||
next unless line.new_pos == params[:line] && line.type == params[:line_type]
|
||||
break opts[:line_code] = Gitlab::Git::Conflict::LineCode.generate(diff.new_path, line.new_pos, line.old_pos)
|
||||
break opts[:line_code] = Gitlab::Git.diff_line_code(diff.new_path, line.new_pos, line.old_pos)
|
||||
end
|
||||
|
||||
break if opts[:line_code]
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ module Github
|
|||
private
|
||||
|
||||
def generate_line_code(line)
|
||||
Gitlab::Git::Conflict::LineCode.generate(file_path, line.new_pos, line.old_pos)
|
||||
Gitlab::Git.diff_line_code(file_path, line.new_pos, line.old_pos)
|
||||
end
|
||||
|
||||
def on_diff?
|
||||
|
|
|
|||
|
|
@ -241,7 +241,7 @@ module Gitlab
|
|||
end
|
||||
|
||||
def generate_line_code(pr_comment)
|
||||
Gitlab::Git::Conflict::LineCode.generate(pr_comment.file_path, pr_comment.new_pos, pr_comment.old_pos)
|
||||
Gitlab::Git.diff_line_code(pr_comment.file_path, pr_comment.new_pos, pr_comment.old_pos)
|
||||
end
|
||||
|
||||
def pull_request_comment_attributes(comment)
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ module Gitlab
|
|||
end
|
||||
|
||||
def line_code(line)
|
||||
Gitlab::Git::Conflict::LineCode.generate(our_path, line.new_pos, line.old_pos)
|
||||
Gitlab::Git.diff_line_code(our_path, line.new_pos, line.old_pos)
|
||||
end
|
||||
|
||||
def create_match_line(line)
|
||||
|
|
@ -174,17 +174,6 @@ module Gitlab
|
|||
new_path: our_path)
|
||||
end
|
||||
|
||||
# Don't try to print merge_request.
|
||||
def inspect
|
||||
instance_variables = [:content, :their_path, :our_path, :our_mode, :type].map do |instance_variable|
|
||||
value = instance_variable_get("@#{instance_variable}")
|
||||
|
||||
"#{instance_variable}=\"#{value}\""
|
||||
end
|
||||
|
||||
"#<#{self.class} #{instance_variables.join(' ')}>"
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def map_raw_lines(raw_lines)
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ module Gitlab
|
|||
def line_code(line)
|
||||
return if line.meta?
|
||||
|
||||
Gitlab::Git::Conflict::LineCode.generate(file_path, line.new_pos, line.old_pos)
|
||||
Gitlab::Git.diff_line_code(file_path, line.new_pos, line.old_pos)
|
||||
end
|
||||
|
||||
def line_for_line_code(code)
|
||||
|
|
|
|||
|
|
@ -66,6 +66,10 @@ module Gitlab
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
def diff_line_code(file_path, new_line_position, old_line_position)
|
||||
"#{Digest::SHA1.hexdigest(file_path)}_#{old_line_position}_#{new_line_position}"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -19,8 +19,8 @@ module Gitlab
|
|||
begin
|
||||
@type = 'text'
|
||||
@lines = Gitlab::Git::Conflict::Parser.parse(content,
|
||||
our_path: our_path,
|
||||
their_path: their_path)
|
||||
our_path: our_path,
|
||||
their_path: their_path)
|
||||
rescue Gitlab::Git::Conflict::Parser::ParserError
|
||||
@type = 'text-editor'
|
||||
@lines = nil
|
||||
|
|
@ -46,7 +46,7 @@ module Gitlab
|
|||
end
|
||||
|
||||
def line_code(line)
|
||||
Gitlab::Git::Conflict::LineCode.generate(our_path, line[:line_new], line[:line_old])
|
||||
Gitlab::Git.diff_line_code(our_path, line[:line_new], line[:line_old])
|
||||
end
|
||||
|
||||
def resolve_lines(resolution)
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
module Gitlab
|
||||
module Git
|
||||
module Conflict
|
||||
class LineCode
|
||||
def self.generate(file_path, new_line_position, old_line_position)
|
||||
"#{Digest::SHA1.hexdigest(file_path)}_#{old_line_position}_#{new_line_position}"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
@ -38,7 +38,7 @@ module Gitlab
|
|||
end
|
||||
|
||||
def generate_line_code(line)
|
||||
Gitlab::Git::Conflict::LineCode.generate(file_path, line.new_pos, line.old_pos)
|
||||
Gitlab::Git.diff_line_code(file_path, line.new_pos, line.old_pos)
|
||||
end
|
||||
|
||||
def on_diff?
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ describe Gitlab::Diff::Position do
|
|||
|
||||
describe "#line_code" do
|
||||
it "returns the correct line code" do
|
||||
line_code = Gitlab::Git::Conflict::LineCode.generate(subject.file_path, subject.new_line, 0)
|
||||
line_code = Gitlab::Git.diff_line_code(subject.file_path, subject.new_line, 0)
|
||||
|
||||
expect(subject.line_code(project.repository)).to eq(line_code)
|
||||
end
|
||||
|
|
@ -108,7 +108,7 @@ describe Gitlab::Diff::Position do
|
|||
|
||||
describe "#line_code" do
|
||||
it "returns the correct line code" do
|
||||
line_code = Gitlab::Git::Conflict::LineCode.generate(subject.file_path, subject.new_line, 15)
|
||||
line_code = Gitlab::Git.diff_line_code(subject.file_path, subject.new_line, 15)
|
||||
|
||||
expect(subject.line_code(project.repository)).to eq(line_code)
|
||||
end
|
||||
|
|
@ -149,7 +149,7 @@ describe Gitlab::Diff::Position do
|
|||
|
||||
describe "#line_code" do
|
||||
it "returns the correct line code" do
|
||||
line_code = Gitlab::Git::Conflict::LineCode.generate(subject.file_path, subject.new_line, subject.old_line)
|
||||
line_code = Gitlab::Git.diff_line_code(subject.file_path, subject.new_line, subject.old_line)
|
||||
|
||||
expect(subject.line_code(project.repository)).to eq(line_code)
|
||||
end
|
||||
|
|
@ -189,7 +189,7 @@ describe Gitlab::Diff::Position do
|
|||
|
||||
describe "#line_code" do
|
||||
it "returns the correct line code" do
|
||||
line_code = Gitlab::Git::Conflict::LineCode.generate(subject.file_path, 13, subject.old_line)
|
||||
line_code = Gitlab::Git.diff_line_code(subject.file_path, 13, subject.old_line)
|
||||
|
||||
expect(subject.line_code(project.repository)).to eq(line_code)
|
||||
end
|
||||
|
|
@ -233,7 +233,7 @@ describe Gitlab::Diff::Position do
|
|||
|
||||
describe "#line_code" do
|
||||
it "returns the correct line code" do
|
||||
line_code = Gitlab::Git::Conflict::LineCode.generate(subject.file_path, subject.new_line, 5)
|
||||
line_code = Gitlab::Git.diff_line_code(subject.file_path, subject.new_line, 5)
|
||||
|
||||
expect(subject.line_code(project.repository)).to eq(line_code)
|
||||
end
|
||||
|
|
@ -274,7 +274,7 @@ describe Gitlab::Diff::Position do
|
|||
|
||||
describe "#line_code" do
|
||||
it "returns the correct line code" do
|
||||
line_code = Gitlab::Git::Conflict::LineCode.generate(subject.file_path, subject.new_line, subject.old_line)
|
||||
line_code = Gitlab::Git.diff_line_code(subject.file_path, subject.new_line, subject.old_line)
|
||||
|
||||
expect(subject.line_code(project.repository)).to eq(line_code)
|
||||
end
|
||||
|
|
@ -314,7 +314,7 @@ describe Gitlab::Diff::Position do
|
|||
|
||||
describe "#line_code" do
|
||||
it "returns the correct line code" do
|
||||
line_code = Gitlab::Git::Conflict::LineCode.generate(subject.file_path, 4, subject.old_line)
|
||||
line_code = Gitlab::Git.diff_line_code(subject.file_path, 4, subject.old_line)
|
||||
|
||||
expect(subject.line_code(project.repository)).to eq(line_code)
|
||||
end
|
||||
|
|
@ -357,7 +357,7 @@ describe Gitlab::Diff::Position do
|
|||
|
||||
describe "#line_code" do
|
||||
it "returns the correct line code" do
|
||||
line_code = Gitlab::Git::Conflict::LineCode.generate(subject.file_path, 0, subject.old_line)
|
||||
line_code = Gitlab::Git.diff_line_code(subject.file_path, 0, subject.old_line)
|
||||
|
||||
expect(subject.line_code(project.repository)).to eq(line_code)
|
||||
end
|
||||
|
|
@ -399,7 +399,7 @@ describe Gitlab::Diff::Position do
|
|||
|
||||
describe "#line_code" do
|
||||
it "returns the correct line code" do
|
||||
line_code = Gitlab::Git::Conflict::LineCode.generate(subject.file_path, subject.new_line, 0)
|
||||
line_code = Gitlab::Git.diff_line_code(subject.file_path, subject.new_line, 0)
|
||||
|
||||
expect(subject.line_code(project.repository)).to eq(line_code)
|
||||
end
|
||||
|
|
@ -447,7 +447,7 @@ describe Gitlab::Diff::Position do
|
|||
|
||||
describe "#line_code" do
|
||||
it "returns the correct line code" do
|
||||
line_code = Gitlab::Git::Conflict::LineCode.generate(subject.file_path, 0, subject.old_line)
|
||||
line_code = Gitlab::Git.diff_line_code(subject.file_path, 0, subject.old_line)
|
||||
|
||||
expect(subject.line_code(project.repository)).to eq(line_code)
|
||||
end
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ describe DiffNote do
|
|||
|
||||
describe "#line_code" do
|
||||
it "returns the correct line code" do
|
||||
line_code = Gitlab::Git::Conflict::LineCode.generate(position.file_path, position.formatter.new_line, 15)
|
||||
line_code = Gitlab::Git.diff_line_code(position.file_path, position.formatter.new_line, 15)
|
||||
|
||||
expect(subject.line_code).to eq(line_code)
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in New Issue