2013-02-06 03:16:51 +08:00
|
|
|
class UserActionsController < ApplicationController
|
2014-05-09 23:49:39 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def index
|
2013-05-27 09:02:58 +08:00
|
|
|
params.require(:username)
|
|
|
|
params.permit(:filter, :offset)
|
|
|
|
|
2015-12-09 13:23:15 +08:00
|
|
|
per_chunk = 30
|
2013-05-20 14:44:06 +08:00
|
|
|
|
2017-12-07 14:23:27 +08:00
|
|
|
user = fetch_user_from_params(include_inactive: current_user.try(:staff?) || (current_user && SiteSetting.show_inactive_accounts))
|
2018-10-11 01:00:08 +08:00
|
|
|
raise Discourse::NotFound unless guardian.can_see_profile?(user)
|
|
|
|
|
2017-12-08 05:16:53 +08:00
|
|
|
action_types = (params[:filter] || "").split(",").map(&:to_i)
|
2013-05-22 23:20:16 +08:00
|
|
|
|
2015-04-22 02:36:46 +08:00
|
|
|
opts = { user_id: user.id,
|
|
|
|
user: user,
|
|
|
|
offset: params[:offset].to_i,
|
|
|
|
limit: per_chunk,
|
2017-12-08 05:16:53 +08:00
|
|
|
action_types: action_types,
|
2015-04-22 02:36:46 +08:00
|
|
|
guardian: guardian,
|
|
|
|
ignore_private_messages: params[:filter] ? false : true }
|
|
|
|
|
|
|
|
# Pending is restricted
|
|
|
|
stream = if opts[:action_types].include?(UserAction::PENDING)
|
|
|
|
guardian.ensure_can_see_notifications!(user)
|
|
|
|
UserAction.stream_queued(opts)
|
|
|
|
else
|
|
|
|
UserAction.stream(opts)
|
|
|
|
end
|
|
|
|
|
2016-11-29 14:55:39 +08:00
|
|
|
stream = stream.to_a
|
|
|
|
if stream.length == 0 && (help_key = params['no_results_help_key'])
|
|
|
|
if user.id == guardian.user.try(:id)
|
|
|
|
help_key += ".self"
|
|
|
|
else
|
2016-11-29 15:01:09 +08:00
|
|
|
help_key += ".others"
|
2016-11-29 14:55:39 +08:00
|
|
|
end
|
|
|
|
render json: {
|
|
|
|
user_action: [],
|
|
|
|
no_results_help: I18n.t(help_key)
|
|
|
|
}
|
|
|
|
else
|
|
|
|
render_serialized(stream, UserActionSerializer, root: 'user_actions')
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2013-05-27 09:02:58 +08:00
|
|
|
params.require(:id)
|
2014-08-30 01:46:50 +08:00
|
|
|
render_serialized(UserAction.stream_item(params[:id], guardian), UserActionSerializer)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2014-05-12 18:02:32 +08:00
|
|
|
def private_messages
|
|
|
|
# DO NOT REMOVE
|
2015-12-10 08:39:33 +08:00
|
|
|
# TODO should preload messages to avoid extra http req
|
2014-05-12 18:02:32 +08:00
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|