summaryrefslogtreecommitdiff
path: root/app/services/notes/build_service.rb
blob: abf25bb778bba88d1dc4ca41e3dd0148d7d9b1fb (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
module Notes
  class BuildService < ::BaseService
    def execute
      in_reply_to_discussion_id = params.delete(:in_reply_to_discussion_id)

      if in_reply_to_discussion_id.present?
        discussion = find_discussion(in_reply_to_discussion_id)

        unless discussion
          note = Note.new
          note.errors.add(:base, 'Discussion to reply to cannot be found')
          return note
        end

        params.merge!(discussion.reply_attributes)
      end

      note = Note.new(params)
      note.project = project
      note.author = current_user

      note
    end

    def find_discussion(discussion_id)
      if project
        project.notes.find_discussion(discussion_id)
      else
        # only PersonalSnippets can have discussions without project association
        discussion = Note.find_discussion(discussion_id)
        noteable = discussion.noteable

        return nil unless noteable.is_a?(PersonalSnippet) && can?(current_user, :comment_personal_snippet, noteable)

        discussion
      end
    end
  end
end