gitlabhq/app/controllers/notes_controller.rb

77 lines
1.8 KiB
Ruby
Raw Normal View History

class NotesController < ProjectResourceController
2011-10-08 23:36:38 +02:00
# Authorize
2011-12-15 22:57:46 +01:00
before_filter :authorize_read_note!
before_filter :authorize_write_note!, only: [:create]
2011-10-08 23:36:38 +02:00
respond_to :js
2012-02-24 08:16:06 +01:00
def index
@target_note = Note.new(noteable_type: params[:target_type].camelize,
noteable_id: params[:target_id])
@target = @target_note.noteable
@notes = Notes::LoadContext.new(project, current_user, params).execute
if params[:target_type] == "merge_request"
@mixed_targets = true
@discussions = discussions_from_notes
end
2012-02-27 19:29:27 +01:00
respond_with(@notes)
2012-02-24 08:16:06 +01:00
end
2011-10-08 23:36:38 +02:00
def create
2012-07-31 07:32:49 +02:00
@note = Notes::CreateContext.new(project, current_user, params).execute
2011-10-08 23:36:38 +02:00
respond_to do |format|
format.html {redirect_to :back}
format.js
2011-10-08 23:36:38 +02:00
end
end
def destroy
@note = @project.notes.find(params[:id])
2011-10-17 12:39:03 +02:00
return access_denied! unless can?(current_user, :admin_note, @note)
2011-10-08 23:36:38 +02:00
@note.destroy
respond_to do |format|
format.js { render nothing: true }
2011-10-08 23:36:38 +02:00
end
end
2012-08-08 11:25:24 +02:00
def preview
render text: view_context.markdown(params[:note])
2012-08-08 11:25:24 +02:00
end
protected
2012-02-24 08:16:06 +01:00
def discussion_notes_for(note)
@notes.select do |other_note|
note.discussion_id == other_note.discussion_id
end
end
def discussions_from_notes
discussion_ids = []
discussions = []
@notes.each do |note|
next if discussion_ids.include?(note.discussion_id)
# don't group notes for the main target
if for_main_target?(note)
discussions << [note]
else
discussions << discussion_notes_for(note)
discussion_ids << note.discussion_id
end
end
discussions
end
# Helps to distinguish e.g. commit notes in mr notes list
def for_main_target?(note)
!@mixed_targets || (@target.class.name == note.noteable_type && !note.for_diff_line?)
2012-02-24 08:16:06 +01:00
end
2011-10-08 23:36:38 +02:00
end