debian-mirror-gitlab/app/services/notes/build_service.rb

53 lines
1.3 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Notes
class BuildService < ::BaseService
def execute
2018-12-05 23:21:45 +05:30
should_resolve = false
2017-08-17 22:00:37 +05:30
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)
2018-12-05 23:21:45 +05:30
should_resolve = discussion.resolved?
2017-08-17 22:00:37 +05:30
end
note = Note.new(params)
note.project = project
note.author = current_user
2018-12-05 23:21:45 +05:30
if should_resolve
note.resolve_without_save(current_user)
end
2017-08-17 22:00:37 +05:30
note
end
def find_discussion(discussion_id)
if project
project.notes.find_discussion(discussion_id)
else
discussion = Note.find_discussion(discussion_id)
noteable = discussion.noteable
2018-03-27 19:54:05 +05:30
return nil unless noteable_without_project?(noteable)
2017-08-17 22:00:37 +05:30
discussion
end
end
2018-03-27 19:54:05 +05:30
def noteable_without_project?(noteable)
return true if noteable.is_a?(PersonalSnippet) && can?(current_user, :comment_personal_snippet, noteable)
false
end
2017-08-17 22:00:37 +05:30
end
end