2011-10-08 23:36:38 +02:00
|
|
|
class NotesController < ApplicationController
|
2011-10-26 15:46:25 +02:00
|
|
|
before_filter :project
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
2011-12-15 22:57:46 +01:00
|
|
|
|
|
|
|
before_filter :authorize_read_note!
|
2011-10-26 15:46:25 +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-02-27 19:29:27 +01:00
|
|
|
notes
|
|
|
|
respond_with(@notes)
|
2012-02-24 08:16:06 +01:00
|
|
|
end
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
def create
|
|
|
|
@note = @project.notes.new(params[:note])
|
|
|
|
@note.author = current_user
|
2011-12-17 14:58:35 +01:00
|
|
|
@note.notify = true if params[:notify] == '1'
|
2011-12-24 17:28:20 +01:00
|
|
|
@note.notify_author = true if params[:notify_author] == '1'
|
2011-12-17 14:58:35 +01:00
|
|
|
@note.save
|
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|
|
2011-10-26 15:46:25 +02:00
|
|
|
format.js { render :nothing => true }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-02-24 08:16:06 +01:00
|
|
|
protected
|
|
|
|
|
2012-02-27 19:29:27 +01:00
|
|
|
def notes
|
|
|
|
@notes = case params[:target_type]
|
|
|
|
when "commit"
|
|
|
|
then project.commit_notes(project.commit((params[:target_id]))).fresh.limit(20)
|
|
|
|
when "snippet"
|
|
|
|
then project.snippets.find(params[:target_id]).notes
|
|
|
|
when "wall"
|
2012-02-27 19:34:55 +01:00
|
|
|
then project.common_notes.order("created_at DESC").fresh.limit(50)
|
2012-02-27 19:29:27 +01:00
|
|
|
when "issue"
|
|
|
|
then project.issues.find(params[:target_id]).notes.inc_author.order("created_at DESC").limit(20)
|
|
|
|
when "merge_request"
|
|
|
|
then project.merge_requests.find(params[:target_id]).notes.inc_author.order("created_at DESC").limit(20)
|
|
|
|
end
|
|
|
|
|
|
|
|
@notes = if params[:last_id]
|
|
|
|
@notes.where("id > ?", params[:last_id])
|
|
|
|
elsif params[:first_id]
|
|
|
|
@notes.where("id < ?", params[:first_id])
|
|
|
|
else
|
|
|
|
@notes
|
|
|
|
end
|
2012-02-24 08:16:06 +01:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|