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
|
2013-05-03 20:52:45 -04:00
|
|
|
guardian.ensure_post_can_act!(@post, PostActionType.types[@post_action_type_id])
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-05-31 17:38:28 -04:00
|
|
|
args = {}
|
|
|
|
args[:message] = params[:message] if params[:message].present?
|
|
|
|
args[:take_action] = true if guardian.is_staff? and params[:take_action] == '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
|
|
|
|
post_serializer = PostSerializer.new(@post, scope: guardian, root: false)
|
|
|
|
render_json_dump(post_serializer)
|
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
|
|
|
|
2013-05-03 20:52:45 -04:00
|
|
|
users = User.select(['null as post_url','users.id', 'users.username', 'users.username_lower', 'users.email','post_actions.related_post_id'])
|
|
|
|
.joins(:post_actions)
|
|
|
|
.where(['post_actions.post_id = ? and post_actions.post_action_type_id = ? and post_actions.deleted_at IS NULL', @post.id, @post_action_type_id])
|
2013-07-22 14:44:11 -04:00
|
|
|
.to_a
|
2013-04-22 03:45:03 -04:00
|
|
|
|
|
|
|
urls = Post.urls(users.map{|u| u.related_post_id})
|
|
|
|
users.each do |u|
|
|
|
|
u.post_url = urls[u.related_post_id.to_i]
|
|
|
|
end
|
|
|
|
|
|
|
|
render_serialized(users, PostActionUserSerializer)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2013-05-03 20:52:45 -04:00
|
|
|
post_action = current_user.post_actions.where(post_id: params[:id].to_i, post_action_type_id: @post_action_type_id, deleted_at: nil).first
|
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)
|
|
|
|
|
|
|
|
render nothing: true
|
|
|
|
end
|
|
|
|
|
2013-02-06 23:15:48 -05:00
|
|
|
def clear_flags
|
2013-02-08 19:04:14 -05:00
|
|
|
guardian.ensure_can_clear_flags!(@post)
|
2013-02-06 23:15:48 -05:00
|
|
|
|
2013-05-03 20:52:45 -04:00
|
|
|
PostAction.clear_flags!(@post, current_user.id, @post_action_type_id)
|
2013-02-06 23:15:48 -05:00
|
|
|
@post.reload
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
if @post.is_flagged?
|
2013-02-06 23:15:48 -05:00
|
|
|
render json: {success: true, hidden: true}
|
|
|
|
else
|
|
|
|
@post.unhide!
|
|
|
|
render json: {success: true, hidden: false}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
private
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
def fetch_post_from_params
|
2013-06-05 03:23:51 -04:00
|
|
|
params.require(:id)
|
2013-02-08 19:04:14 -05:00
|
|
|
finder = Post.where(id: params[:id])
|
|
|
|
|
2013-03-20 00:05:19 -04:00
|
|
|
# Include deleted posts if the user is a moderator (to guardian ?)
|
2013-04-08 11:57:23 -04:00
|
|
|
finder = finder.with_deleted if current_user.try(:moderator?)
|
2013-02-08 19:04:14 -05:00
|
|
|
|
|
|
|
@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
|
2013-06-05 03:23:51 -04:00
|
|
|
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
|