2013-06-23 12:47:22 -04:00
|
|
|
class Projects::NotesController < Projects::ApplicationController
|
2011-10-08 17:36:38 -04:00
|
|
|
# Authorize
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authorize_read_note!
|
2015-06-26 10:44:21 -04:00
|
|
|
before_action :authorize_create_note!, only: [:create]
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authorize_admin_note!, only: [:update, :destroy]
|
2015-11-18 18:31:15 -05:00
|
|
|
before_action :find_current_user_notes, except: [:destroy, :delete_attachment, :award_toggle]
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-02-24 02:16:06 -05:00
|
|
|
def index
|
2014-04-28 06:42:01 -04:00
|
|
|
current_fetched_at = Time.now.to_i
|
2012-10-29 10:56:17 -04:00
|
|
|
|
2014-04-28 06:21:49 -04:00
|
|
|
notes_json = { notes: [], last_fetched_at: current_fetched_at }
|
2012-10-10 06:06:30 -04:00
|
|
|
|
2013-12-25 15:32:23 -05:00
|
|
|
@notes.each do |note|
|
2016-01-19 12:17:56 -05:00
|
|
|
next if note.cross_reference_not_visible_for?(current_user)
|
|
|
|
|
|
|
|
notes_json[:notes] << note_json(note)
|
2013-11-29 07:46:40 -05:00
|
|
|
end
|
2013-12-25 15:32:23 -05:00
|
|
|
|
|
|
|
render json: notes_json
|
2012-02-24 02:16:06 -05:00
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def create
|
2014-06-26 09:49:22 -04:00
|
|
|
@note = Notes::CreateService.new(project, current_user, note_params).execute
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
2016-01-19 12:17:56 -05:00
|
|
|
format.json { render json: note_json(@note) }
|
2015-10-20 03:28:28 -04:00
|
|
|
format.html { redirect_back_or_default }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-25 15:32:23 -05:00
|
|
|
def update
|
2015-07-30 08:45:54 -04:00
|
|
|
@note = Notes::UpdateService.new(project, current_user, note_params).execute(note)
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
2016-01-19 12:17:56 -05:00
|
|
|
format.json { render json: note_json(@note) }
|
2015-10-20 03:28:28 -04:00
|
|
|
format.html { redirect_back_or_default }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-25 15:32:23 -05:00
|
|
|
def destroy
|
2014-08-29 08:19:35 -04:00
|
|
|
if note.editable?
|
|
|
|
note.destroy
|
|
|
|
note.reset_events_cache
|
|
|
|
end
|
2013-06-25 18:46:07 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
2013-12-25 15:32:23 -05:00
|
|
|
format.js { render nothing: true }
|
2013-06-25 18:46:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_attachment
|
2013-12-25 15:32:23 -05:00
|
|
|
note.remove_attachment!
|
|
|
|
note.update_attribute(:attachment, nil)
|
2013-06-25 18:46:07 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.js { render nothing: true }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-11-11 08:12:51 -05:00
|
|
|
def award_toggle
|
2015-11-21 11:32:59 -05: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 11:12:17 -05:00
|
|
|
|
2015-11-11 08:12:51 -05:00
|
|
|
data = {
|
|
|
|
author: current_user,
|
|
|
|
is_award: true,
|
2015-12-14 21:53:52 -05:00
|
|
|
note: note_params[:note].delete(":")
|
2015-11-11 08:12:51 -05:00
|
|
|
}
|
|
|
|
|
2015-11-19 11:12:17 -05:00
|
|
|
note = noteable.notes.find_by(data)
|
2015-11-11 08:12:51 -05:00
|
|
|
|
|
|
|
if note
|
|
|
|
note.destroy
|
|
|
|
else
|
2015-11-19 11:12:17 -05:00
|
|
|
Notes::CreateService.new(project, current_user, note_params).execute
|
2015-11-11 08:12:51 -05:00
|
|
|
end
|
|
|
|
|
2015-11-18 18:31:15 -05:00
|
|
|
render json: { ok: true }
|
2015-11-11 08:12:51 -05:00
|
|
|
end
|
|
|
|
|
2013-12-25 15:32:23 -05:00
|
|
|
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)
|
2016-01-19 12:17:56 -05:00
|
|
|
return unless note.for_diff_line?
|
|
|
|
|
2015-06-05 18:24:05 -04:00
|
|
|
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] }
|
2016-01-27 10:59:16 -05:00
|
|
|
end
|
2015-06-05 18:24:05 -04:00
|
|
|
else
|
|
|
|
template = "projects/notes/_diff_notes_with_reply"
|
|
|
|
locals = { notes: [note] }
|
|
|
|
end
|
|
|
|
|
2013-12-25 15:32:23 -05:00
|
|
|
render_to_string(
|
2015-06-05 18:24:05 -04:00
|
|
|
template,
|
2013-12-25 15:32:23 -05:00
|
|
|
layout: false,
|
|
|
|
formats: [:html],
|
2015-06-05 18:24:05 -04:00
|
|
|
locals: locals
|
2013-12-25 15:32:23 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2014-06-24 07:57:59 -04:00
|
|
|
def note_to_discussion_with_diff_html(note)
|
2014-06-25 03:14:35 -04:00
|
|
|
return unless note.for_diff_line?
|
|
|
|
|
2014-06-24 07:57:59 -04:00
|
|
|
render_to_string(
|
|
|
|
"projects/notes/_discussion",
|
|
|
|
layout: false,
|
|
|
|
formats: [:html],
|
|
|
|
locals: { discussion_notes: [note] }
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2016-01-19 12:17:56 -05:00
|
|
|
def note_json(note)
|
2015-12-02 04:13:29 -05:00
|
|
|
if note.valid?
|
2016-01-19 12:17:56 -05:00
|
|
|
{
|
2015-12-02 04:51:46 -05:00
|
|
|
valid: true,
|
2015-12-02 04:13:29 -05:00
|
|
|
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
|
2016-01-19 12:17:56 -05:00
|
|
|
{
|
2015-12-02 04:51:46 -05:00
|
|
|
valid: false,
|
|
|
|
award: note.is_award,
|
|
|
|
errors: note.errors
|
|
|
|
}
|
2015-12-02 04:13:29 -05:00
|
|
|
end
|
2013-12-25 15:32:23 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_admin_note!
|
|
|
|
return access_denied! unless can?(current_user, :admin_note, note)
|
|
|
|
end
|
2014-06-26 09:49:22 -04:00
|
|
|
|
|
|
|
def note_params
|
|
|
|
params.require(:note).permit(
|
|
|
|
:note, :noteable, :noteable_id, :noteable_type, :project_id,
|
|
|
|
:attachment, :line_code, :commit_id
|
|
|
|
)
|
|
|
|
end
|
2015-03-02 18:05:23 -05:00
|
|
|
|
|
|
|
def find_current_user_notes
|
|
|
|
@notes = NotesFinder.new.execute(project, current_user, params)
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|