dcdfa04b32
* adds basic discussions API for issues and snippets * reorganizes notes specs (so same tests can be used for all noteable types - issues, MRs, snippets)
44 lines
1.1 KiB
Ruby
44 lines
1.1 KiB
Ruby
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
|
|
discussion = Note.find_discussion(discussion_id)
|
|
noteable = discussion.noteable
|
|
|
|
return nil unless noteable_without_project?(noteable)
|
|
|
|
discussion
|
|
end
|
|
end
|
|
|
|
def noteable_without_project?(noteable)
|
|
return true if noteable.is_a?(PersonalSnippet) && can?(current_user, :comment_personal_snippet, noteable)
|
|
|
|
false
|
|
end
|
|
end
|
|
end
|