Newer
Older
# Copyright (c) 2010-2011, Diaspora Inc. This file is
# 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!, :except => [:index]
rescue_from ActiveRecord::RecordNotFound do
render :nothing => true, :status => 404
end
target = current_user.find_visible_shareable_by_id(Post, params[:post_id])
if target
@comment = current_user.build_comment(:text => text, :post => target)
if @comment.save
Rails.logger.info("event => :create, :type => :comment, :user => #{current_user.diaspora_handle},
:status => :success, :comment => #{@comment.id}, :chars => #{params[:text].length}")
current_user.dispatch_post(@comment)
respond_to do |format|
format.json{ render :json => @comment.as_api_response(:backbone), :status => 201 }
format.html{ render :nothing => true, :status => 201 }
format.mobile{ render :partial => 'comment', :locals => {:post => @comment.post, :comment => @comment} }
end
else
MrZYX
a validé
render :nothing => true, :status => 422
danielvincent
a validé
end
MrZYX
a validé
render :nothing => true, :status => 422
end
@comment = Comment.find(params[:id])
if current_user.owns?(@comment) || current_user.owns?(@comment.parent)
current_user.retract(@comment)
respond_to do |format|
Dan Hansen
a validé
format.js { render :nothing => true, :status => 204 }
format.json { render :nothing => true, :status => 204 }
format.mobile{ redirect_to @comment.post }
respond_to do |format|
format.mobile {redirect_to :back}
format.any(:js, :json) {render :nothing => true, :status => 403}
def new
render :layout => false
end
Raphael Sofaer
a validé
def index
if user_signed_in?
@post = current_user.find_visible_shareable_by_id(Post, params[:post_id])
else
@post = Post.find_by_id_and_public(params[:post_id], true)
end
Raphael Sofaer
a validé
if @post
format.json { render :json => @comments.as_api_response(:backbone), :status => 200 }
format.mobile{render :layout => false}
Raphael Sofaer
a validé
else
raise ActiveRecord::RecordNotFound.new
end
end