2012-09-27 20:59:42 +02:00
|
|
|
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!
|
2012-08-11 00:07:50 +02:00
|
|
|
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
|
2012-10-29 15:56:17 +01:00
|
|
|
@notes = Notes::LoadContext.new(project, current_user, params).execute
|
2012-12-02 20:43:39 +01:00
|
|
|
@target_type = params[:target_type].camelize
|
|
|
|
@target_id = params[:target_id]
|
2012-10-29 15:56:17 +01:00
|
|
|
|
2012-10-10 12:06:30 +02:00
|
|
|
if params[:target_type] == "merge_request"
|
2012-12-02 20:53:50 +01:00
|
|
|
@discussions = discussions_from_notes
|
2012-10-10 12:06:30 +02:00
|
|
|
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
|
2012-12-02 20:43:39 +01:00
|
|
|
@target_type = params[:target_type].camelize
|
|
|
|
@target_id = params[:target_id]
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html {redirect_to :back}
|
2011-10-26 15:46:25 +02:00
|
|
|
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|
|
2012-08-11 00:07:50 +02:00
|
|
|
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
|
2012-08-11 00:07:50 +02:00
|
|
|
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
|
|
|
|
2012-10-29 15:56:17 +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
|
2012-12-02 20:43:39 +01:00
|
|
|
if note_for_main_target?(note)
|
2012-10-29 15:56:17 +01:00
|
|
|
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
|
2012-12-02 20:43:39 +01:00
|
|
|
def note_for_main_target?(note)
|
2012-11-22 02:57:22 +01:00
|
|
|
note.for_wall? ||
|
|
|
|
(@target_type.camelize == 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
|