mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:56:01 +08:00
5d4221fbe1
Before ``` Your Results: (note for timings- percentile is first, duration is second in millisecs) --- topic_admin: 50: 19 75: 19 90: 21 99: 27 topic: 50: 56 75: 62 90: 64 99: 99 timings: load_rails: 1262 ruby-version: 2.4.1-p111 rss_kb: 198432 pss_kb: 136612 virtual: physical architecture: amd64 operatingsystem: Ubuntu memorysize: 15.59 GB kernelversion: 4.10.0 physicalprocessorcount: 1 processor0: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz rss_kb_9877: 327892 pss_kb_9877: 263671 rss_kb_9946: 325468 pss_kb_9946: 261671 rss_kb_10153: 326456 pss_kb_10153: 262657 ``` After ``` Your Results: (note for timings- percentile is first, duration is second in millisecs) --- topic_admin: 50: 18 75: 18 90: 20 99: 28 topic: 50: 41 75: 42 90: 46 99: 49 timings: load_rails: 1201 ruby-version: 2.4.1-p111 rss_kb: 187936 pss_kb: 123596 virtual: physical architecture: amd64 operatingsystem: Ubuntu memorysize: 15.59 GB kernelversion: 4.10.0 physicalprocessorcount: 1 processor0: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz rss_kb_26478: 342360 pss_kb_26478: 276696 rss_kb_26547: 340368 pss_kb_26547: 275930 rss_kb_26747: 338964 pss_kb_26747: 274466 ```
96 lines
2.7 KiB
Ruby
96 lines
2.7 KiB
Ruby
require_dependency 'discourse'
|
|
|
|
class PostActionsController < ApplicationController
|
|
before_filter :ensure_logged_in
|
|
before_filter :fetch_post_from_params
|
|
before_filter :fetch_post_action_type_id_from_params
|
|
|
|
def create
|
|
raise Discourse::NotFound if @post.blank?
|
|
|
|
taken = PostAction.counts_for([@post], current_user)[@post.id]
|
|
|
|
guardian.ensure_post_can_act!(
|
|
@post,
|
|
PostActionType.types[@post_action_type_id],
|
|
opts: {
|
|
is_warning: params[:is_warning],
|
|
taken_actions: taken
|
|
}
|
|
)
|
|
|
|
args = {}
|
|
args[:message] = params[:message] if params[:message].present?
|
|
args[:is_warning] = params[:is_warning] if params[:is_warning].present? && guardian.is_staff?
|
|
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)
|
|
|
|
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
|
|
|
|
if @post_action_type_id == PostActionType.types[:like]
|
|
limiter = post_action.post_action_rate_limiter
|
|
response.headers['Discourse-Actions-Remaining'] = limiter.remaining.to_s
|
|
response.headers['Discourse-Actions-Max'] = limiter.max.to_s
|
|
end
|
|
render_post_json(@post, _add_raw = false)
|
|
end
|
|
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)
|
|
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)
|
|
|
|
@post.reload
|
|
render_post_json(@post, _add_raw = false)
|
|
end
|
|
|
|
def defer_flags
|
|
guardian.ensure_can_defer_flags!(@post)
|
|
|
|
PostAction.defer_flags!(@post, current_user)
|
|
|
|
render json: { success: true }
|
|
end
|
|
|
|
private
|
|
|
|
def fetch_post_from_params
|
|
params.require(:id)
|
|
|
|
flag_topic = params[:flag_topic]
|
|
flag_topic = flag_topic && (flag_topic == true || flag_topic == "true")
|
|
|
|
post_id = if flag_topic
|
|
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
|
|
end
|
|
|
|
def fetch_post_action_type_id_from_params
|
|
params.require(:post_action_type_id)
|
|
@post_action_type_id = params[:post_action_type_id].to_i
|
|
end
|
|
end
|