debian-mirror-gitlab/lib/gitlab/github_import/representation/diff_note.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

148 lines
4.2 KiB
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
# frozen_string_literal: true
module Gitlab
module GithubImport
module Representation
class DiffNote
include ToHash
include ExposeAttribute
2019-07-31 22:56:46 +05:30
NOTEABLE_ID_REGEX = %r{/pull/(?<iid>\d+)}i.freeze
2021-12-11 22:18:48 +05:30
expose_attribute :noteable_id, :commit_id, :file_path,
:diff_hunk, :author, :created_at, :updated_at,
:original_commit_id, :note_id, :end_line, :start_line,
2023-03-04 22:38:38 +05:30
:side, :in_reply_to_id, :discussion_id
2018-03-17 18:26:18 +05:30
# Builds a diff note from a GitHub API response.
#
2022-11-25 23:54:43 +05:30
# note - An instance of `Hash` containing the note details.
2022-08-27 11:52:29 +05:30
def self.from_api_response(note, additional_data = {})
2022-11-25 23:54:43 +05:30
matches = note[:html_url].match(NOTEABLE_ID_REGEX)
2018-03-17 18:26:18 +05:30
unless matches
raise(
ArgumentError,
2022-11-25 23:54:43 +05:30
"The note URL #{note[:html_url].inspect} is not supported"
2018-03-17 18:26:18 +05:30
)
end
2022-11-25 23:54:43 +05:30
user = Representation::User.from_api_response(note[:user]) if note[:user]
2018-03-17 18:26:18 +05:30
hash = {
noteable_id: matches[:iid].to_i,
2022-11-25 23:54:43 +05:30
file_path: note[:path],
commit_id: note[:commit_id],
original_commit_id: note[:original_commit_id],
diff_hunk: note[:diff_hunk],
2018-03-17 18:26:18 +05:30
author: user,
2022-11-25 23:54:43 +05:30
note: note[:body],
created_at: note[:created_at],
updated_at: note[:updated_at],
note_id: note[:id],
end_line: note[:line],
start_line: note[:start_line],
side: note[:side],
2023-03-04 22:38:38 +05:30
in_reply_to_id: note[:in_reply_to_id],
discussion_id: DiffNotes::DiscussionId.new(note).find_or_generate
2018-03-17 18:26:18 +05:30
}
new(hash)
end
# Builds a new note using a Hash that was built from a JSON payload.
def self.from_json_hash(raw_hash)
hash = Representation.symbolize_hash(raw_hash)
hash[:author] &&= Representation::User.from_json_hash(hash[:author])
new(hash)
end
2023-03-04 22:38:38 +05:30
attr_accessor :merge_request
2021-12-11 22:18:48 +05:30
2018-03-17 18:26:18 +05:30
# attributes - A Hash containing the raw note details. The keys of this
# Hash must be Symbols.
def initialize(attributes)
@attributes = attributes
2021-12-11 22:18:48 +05:30
@note_formatter = DiffNotes::SuggestionFormatter.new(
note: attributes[:note],
start_line: attributes[:start_line],
end_line: attributes[:end_line]
)
end
def noteable_type
2023-03-04 22:38:38 +05:30
DiffNotes::DiscussionId::NOTEABLE_TYPE
2021-12-11 22:18:48 +05:30
end
def contains_suggestion?
@note_formatter.contains_suggestion?
end
def note
@note_formatter.formatted_note
2018-03-17 18:26:18 +05:30
end
def line_code
diff_line = Gitlab::Diff::Parser.new.parse(diff_hunk.lines).to_a.last
2021-12-11 22:18:48 +05:30
Gitlab::Git.diff_line_code(file_path, diff_line.new_pos, diff_line.old_pos)
2018-03-17 18:26:18 +05:30
end
# Returns a Hash that can be used to populate `notes.st_diff`, removing
# the need for requesting Git data for every diff note.
2021-12-11 22:18:48 +05:30
# Used when importing with LegacyDiffNote
2018-03-17 18:26:18 +05:30
def diff_hash
{
diff: diff_hunk,
new_path: file_path,
old_path: file_path,
# These fields are not displayed for LegacyDiffNote notes, so it
# doesn't really matter what we set them to.
a_mode: '100644',
b_mode: '100644',
new_file: false
}
end
2021-11-18 22:05:49 +05:30
2021-12-11 22:18:48 +05:30
# Used when importing with DiffNote
def diff_position
position_params = {
diff_refs: merge_request.diff_refs,
old_path: file_path,
new_path: file_path
}
Gitlab::Diff::Position.new(position_params.merge(diff_line_params))
2021-11-18 22:05:49 +05:30
end
def github_identifiers
{
note_id: note_id,
noteable_id: noteable_id,
noteable_type: noteable_type
}
end
2021-12-11 22:18:48 +05:30
private
# Required by ExposeAttribute
attr_reader :attributes
def diff_line_params
if addition?
{ new_line: end_line, old_line: nil }
else
{ new_line: nil, old_line: end_line }
end
end
def addition?
side == 'RIGHT'
end
2018-03-17 18:26:18 +05:30
end
end
end
end