Newer
Older
# licensed under the Affero General Public License version 3 or later. See
Daniel Vincent Grippi
a validé
class CommentsController < ApplicationController
danielvincent
a validé
include ApplicationHelper
before_filter :authenticate_user!
respond_to :html
respond_to :json, :only => :show
target = current_user.find_visible_post_by_id params[:comment][:post_id]
text = params[:comment][:text]
@comment = current_user.build_comment(text, :on => target)
if @comment.save(:safe => true)
raise 'MongoMapper failed to catch a failed save' unless @comment.id
Rails.logger.info("event=comment_create user=#{current_user.diaspora_handle} status=success comment=#{@comment.id}")
danielvincent
a validé
current_user.dispatch_comment(@comment)
danielvincent
a validé
respond_to do |format|
format.js{ render :json => { :post_id => @comment.post_id,
:comment_id => @comment.id,
:html => render_to_string(:partial => type_partial(@comment), :locals => {:comment => @comment, :person => current_user, :current_user => current_user})},
danielvincent
a validé
:status => 201 }
format.html{ render :nothing => true, :status => 201 }
end
render :nothing => true, :status => 406