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-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
|
|
|
|
|
|
|
|
def create
|
|
|
|
@note = @project.notes.new(params[:note])
|
|
|
|
@note.author = current_user
|
|
|
|
|
|
|
|
if @note.save
|
|
|
|
notify if params[:notify] == '1'
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
protected
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
def notify
|
|
|
|
@project.users.reject { |u| u.id == current_user.id } .each do |u|
|
|
|
|
case @note.noteable_type
|
|
|
|
when "Commit" then
|
|
|
|
Notify.note_commit_email(u, @note).deliver
|
|
|
|
when "Issue" then
|
|
|
|
Notify.note_issue_email(u, @note).deliver
|
2011-10-16 17:07:10 -04:00
|
|
|
when "Snippet"
|
|
|
|
true
|
2011-10-08 17:36:38 -04:00
|
|
|
else
|
|
|
|
Notify.note_wall_email(u, @note).deliver
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|