discourse/app/controllers/post_actions_controller.rb

89 lines
2.5 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require_dependency 'discourse'
class PostActionsController < ApplicationController
before_filter :ensure_logged_in, except: :users
before_filter :fetch_post_from_params
2013-05-03 20:52:45 -04:00
before_filter :fetch_post_action_type_id_from_params
2013-02-05 14:16:51 -05:00
def create
taken = PostAction.counts_for([@post], current_user)[@post.id]
guardian.ensure_post_can_act!(@post, PostActionType.types[@post_action_type_id], taken_actions: taken)
2013-02-05 14:16:51 -05:00
args = {}
args[:message] = params[:message] if params[:message].present?
args[:take_action] = true if guardian.is_staff? && params[:take_action] == 'true'
args[:flag_topic] = true if params[:flag_topic] == 'true'
post_action = PostAction.act(current_user, @post, @post_action_type_id, args)
2013-02-05 14:16:51 -05:00
2013-05-03 20:52:45 -04:00
if post_action.blank? || post_action.errors.present?
render_json_error(post_action)
2013-02-07 10:45:24 -05:00
else
2013-05-03 20:52:45 -04:00
# We need to reload or otherwise we are showing the old values on the front end
@post.reload
render_post_json(@post, _add_raw = false)
2013-02-05 14:16:51 -05:00
end
end
def users
2013-05-03 20:52:45 -04:00
guardian.ensure_can_see_post_actors!(@post.topic, @post_action_type_id)
2013-02-05 14:16:51 -05:00
post_actions = @post.post_actions.where(post_action_type_id: @post_action_type_id).includes(:user)
render_serialized(post_actions.to_a, PostActionUserSerializer)
2013-02-05 14:16:51 -05:00
end
def destroy
post_action = current_user.post_actions.find_by(post_id: params[:id].to_i, post_action_type_id: @post_action_type_id, deleted_at: nil)
2013-02-05 14:16:51 -05:00
raise Discourse::NotFound if post_action.blank?
2013-05-03 20:52:45 -04:00
2013-02-05 14:16:51 -05:00
guardian.ensure_can_delete!(post_action)
2013-05-03 20:52:45 -04:00
2013-02-05 14:16:51 -05:00
PostAction.remove_act(current_user, @post, post_action.post_action_type_id)
@post.reload
render_post_json(@post, _add_raw = false)
2013-02-05 14:16:51 -05:00
end
def defer_flags
guardian.ensure_can_defer_flags!(@post)
2013-02-06 23:15:48 -05:00
PostAction.defer_flags!(@post, current_user)
2013-02-06 23:15:48 -05:00
render json: { success: true }
2013-02-06 23:15:48 -05:00
end
2013-02-05 14:16:51 -05:00
private
2013-02-07 10:45:24 -05:00
def fetch_post_from_params
params.require(:id)
2014-02-05 17:54:16 -05:00
flag_topic = params[:flag_topic]
flag_topic = flag_topic && (flag_topic == true || flag_topic == "true")
post_id = if flag_topic
2014-02-05 17:54:16 -05:00
begin
Topic.find(params[:id]).posts.first.id
rescue
raise Discourse::NotFound
end
else
params[:id]
end
finder = Post.where(id: post_id)
# Include deleted posts if the user is a staff
finder = finder.with_deleted if guardian.is_staff?
@post = finder.first
2013-02-05 14:16:51 -05:00
guardian.ensure_can_see!(@post)
end
2013-05-03 20:52:45 -04:00
def fetch_post_action_type_id_from_params
params.require(:post_action_type_id)
2013-05-03 20:52:45 -04:00
@post_action_type_id = params[:post_action_type_id].to_i
end
2013-02-05 14:16:51 -05:00
end