2011-10-08 17:36:38 -04:00
|
|
|
class NotesController < ApplicationController
|
2011-10-26 09:46:25 -04:00
|
|
|
before_filter :project
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :add_project_abilities
|
2011-12-15 16:57:46 -05:00
|
|
|
|
|
|
|
before_filter :authorize_read_note!
|
2011-10-26 09:46:25 -04:00
|
|
|
before_filter :authorize_write_note!, :only => [:create]
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_to :js
|
|
|
|
|
2012-02-24 02:16:06 -05:00
|
|
|
def index
|
2012-02-27 13:29:27 -05:00
|
|
|
notes
|
|
|
|
respond_with(@notes)
|
2012-02-24 02:16:06 -05:00
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def create
|
|
|
|
@note = @project.notes.new(params[:note])
|
|
|
|
@note.author = current_user
|
2011-12-17 08:58:35 -05:00
|
|
|
@note.notify = true if params[:notify] == '1'
|
2011-12-24 11:28:20 -05:00
|
|
|
@note.notify_author = true if params[:notify_author] == '1'
|
2011-12-17 08:58:35 -05:00
|
|
|
@note.save
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html {redirect_to :back}
|
2011-10-26 09:46:25 -04:00
|
|
|
format.js
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@note = @project.notes.find(params[:id])
|
2011-10-17 06:39:03 -04:00
|
|
|
return access_denied! unless can?(current_user, :admin_note, @note)
|
2011-10-08 17:36:38 -04:00
|
|
|
@note.destroy
|
|
|
|
|
|
|
|
respond_to do |format|
|
2011-10-26 09:46:25 -04:00
|
|
|
format.js { render :nothing => true }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-02-24 02:16:06 -05:00
|
|
|
protected
|
|
|
|
|
2012-02-27 13:29:27 -05: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 13:34:55 -05:00
|
|
|
then project.common_notes.order("created_at DESC").fresh.limit(50)
|
2012-02-27 13:29:27 -05: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 02:16:06 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|