summaryrefslogtreecommitdiff
path: root/lib/gitlab/diff/suggestion.rb
blob: 027c7a31bcf036a197cd5b3069fb6da4606659ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true

module Gitlab
  module Diff
    class Suggestion
      include Suggestible
      include Gitlab::Utils::StrongMemoize

      attr_reader :diff_file, :lines_above, :lines_below,
        :target_line

      def initialize(text, line:, above:, below:, diff_file:)
        @text = text
        @target_line = line
        @lines_above = above.to_i
        @lines_below = below.to_i
        @diff_file = diff_file
      end

      def to_hash
        {
          from_content: from_content,
          to_content: to_content,
          lines_above: @lines_above,
          lines_below: @lines_below
        }
      end

      def from_content
        strong_memoize(:from_content) do
          fetch_from_content
        end
      end

      def to_content
        # The parsed suggestion doesn't have information about the correct
        # ending characters (we may have a line break, or not), so we take
        # this information from the last line being changed (last
        # characters).
        endline_chars = line_break_chars(from_content.lines.last)
        "#{@text}#{endline_chars}"
      end

      private

      def line_break_chars(line)
        match = /\r\n|\r|\n/.match(line)
        match[0] if match
      end
    end
  end
end