gitlab-org--gitlab-foss/app/controllers/projects/notes_controller.rb

169 lines
3.9 KiB
Ruby
Raw Normal View History

class Projects::NotesController < Projects::ApplicationController
2011-10-08 21:36:38 +00:00
# Authorize
before_action :authorize_read_note!
before_action :authorize_create_note!, only: [:create]
before_action :authorize_admin_note!, only: [:update, :destroy]
2015-11-18 23:31:15 +00:00
before_action :find_current_user_notes, except: [:destroy, :delete_attachment, :award_toggle]
2011-10-08 21:36:38 +00:00
2012-02-24 07:16:06 +00:00
def index
current_fetched_at = Time.now.to_i
notes_json = { notes: [], last_fetched_at: current_fetched_at }
@notes.each do |note|
next if note.cross_reference_not_visible_for?(current_user)
notes_json[:notes] << note_json(note)
end
render json: notes_json
2012-02-24 07:16:06 +00:00
end
2011-10-08 21:36:38 +00:00
def create
@note = Notes::CreateService.new(project, current_user, note_params).execute
2011-10-08 21:36:38 +00:00
respond_to do |format|
format.json { render json: note_json(@note) }
format.html { redirect_back_or_default }
2011-10-08 21:36:38 +00:00
end
end
def update
@note = Notes::UpdateService.new(project, current_user, note_params).execute(note)
2011-10-08 21:36:38 +00:00
respond_to do |format|
format.json { render json: note_json(@note) }
format.html { redirect_back_or_default }
2011-10-08 21:36:38 +00:00
end
end
def destroy
if note.editable?
2016-04-05 23:21:02 +00:00
Notes::DeleteService.new(project, current_user).execute(note)
end
respond_to do |format|
format.js { render nothing: true }
end
end
def delete_attachment
note.remove_attachment!
note.update_attribute(:attachment, nil)
respond_to do |format|
format.js { render nothing: true }
end
end
2015-11-11 13:12:51 +00:00
def award_toggle
2015-11-21 16:32:59 +00:00
noteable = if note_params[:noteable_type] == "issue"
project.issues.find(note_params[:noteable_id])
else
project.merge_requests.find(note_params[:noteable_id])
end
2015-11-19 16:12:17 +00:00
2015-11-11 13:12:51 +00:00
data = {
author: current_user,
is_award: true,
2015-12-15 02:53:52 +00:00
note: note_params[:note].delete(":")
2015-11-11 13:12:51 +00:00
}
2015-11-19 16:12:17 +00:00
note = noteable.notes.find_by(data)
2015-11-11 13:12:51 +00:00
if note
2016-04-06 17:04:17 +00:00
note.destroy
2015-11-11 13:12:51 +00:00
else
2015-11-19 16:12:17 +00:00
Notes::CreateService.new(project, current_user, note_params).execute
2015-11-11 13:12:51 +00:00
end
2015-11-18 23:31:15 +00:00
render json: { ok: true }
2015-11-11 13:12:51 +00:00
end
private
def note
@note ||= @project.notes.find(params[:id])
end
def note_to_html(note)
render_to_string(
"projects/notes/_note",
layout: false,
formats: [:html],
locals: { note: note }
)
end
def note_to_discussion_html(note)
return unless note.for_diff_line?
if params[:view] == 'parallel'
template = "projects/notes/_diff_notes_with_reply_parallel"
locals =
if params[:line_type] == 'old'
{ notes_left: [note], notes_right: [] }
else
{ notes_left: [], notes_right: [note] }
end
else
template = "projects/notes/_diff_notes_with_reply"
locals = { notes: [note] }
end
render_to_string(
template,
layout: false,
formats: [:html],
locals: locals
)
end
def note_to_discussion_with_diff_html(note)
return unless note.for_diff_line?
render_to_string(
"projects/notes/_discussion",
layout: false,
formats: [:html],
locals: { discussion_notes: [note] }
)
end
def note_json(note)
if note.valid?
{
valid: true,
id: note.id,
discussion_id: note.discussion_id,
html: note_to_html(note),
award: note.is_award,
note: note.note,
discussion_html: note_to_discussion_html(note),
discussion_with_diff_html: note_to_discussion_with_diff_html(note)
}
else
{
valid: false,
award: note.is_award,
errors: note.errors
}
end
end
def authorize_admin_note!
return access_denied! unless can?(current_user, :admin_note, note)
end
def note_params
params.require(:note).permit(
:note, :noteable, :noteable_id, :noteable_type, :project_id,
:attachment, :line_code, :commit_id
)
end
def find_current_user_notes
@notes = NotesFinder.new.execute(project, current_user, params)
end
2011-10-08 21:36:38 +00:00
end