84 lines
2.6 KiB
Ruby
84 lines
2.6 KiB
Ruby
require_dependency 'discourse'
|
|
|
|
class PostActionsController < ApplicationController
|
|
|
|
before_filter :ensure_logged_in, except: :users
|
|
before_filter :fetch_post_from_params
|
|
before_filter :fetch_post_action_type_id_from_params
|
|
|
|
def create
|
|
guardian.ensure_post_can_act!(@post, PostActionType.types[@post_action_type_id])
|
|
|
|
post_action = PostAction.act(current_user, @post, @post_action_type_id, params[:message])
|
|
|
|
if post_action.blank? || post_action.errors.present?
|
|
render_json_error(post_action)
|
|
else
|
|
# 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)
|
|
end
|
|
end
|
|
|
|
def users
|
|
guardian.ensure_can_see_post_actors!(@post.topic, @post_action_type_id)
|
|
|
|
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])
|
|
.all
|
|
|
|
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)
|
|
end
|
|
|
|
def destroy
|
|
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
|
|
|
|
raise Discourse::NotFound if post_action.blank?
|
|
|
|
guardian.ensure_can_delete!(post_action)
|
|
|
|
PostAction.remove_act(current_user, @post, post_action.post_action_type_id)
|
|
|
|
render nothing: true
|
|
end
|
|
|
|
def clear_flags
|
|
guardian.ensure_can_clear_flags!(@post)
|
|
|
|
PostAction.clear_flags!(@post, current_user.id, @post_action_type_id)
|
|
@post.reload
|
|
|
|
if @post.is_flagged?
|
|
render json: {success: true, hidden: true}
|
|
else
|
|
@post.unhide!
|
|
render json: {success: true, hidden: false}
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def fetch_post_from_params
|
|
requires_parameter(:id)
|
|
finder = Post.where(id: params[:id])
|
|
|
|
# Include deleted posts if the user is a moderator (to guardian ?)
|
|
finder = finder.with_deleted if current_user.try(:moderator?)
|
|
|
|
@post = finder.first
|
|
guardian.ensure_can_see!(@post)
|
|
end
|
|
|
|
def fetch_post_action_type_id_from_params
|
|
requires_parameter(:post_action_type_id)
|
|
@post_action_type_id = params[:post_action_type_id].to_i
|
|
end
|
|
end
|