2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
class UserActionsController < ApplicationController
|
|
|
|
def index
|
2022-02-22 06:02:04 -05:00
|
|
|
user_actions_params.require(:username)
|
2013-05-26 21:02:58 -04:00
|
|
|
|
2023-01-09 07:20:10 -05:00
|
|
|
user =
|
|
|
|
fetch_user_from_params(
|
|
|
|
include_inactive:
|
|
|
|
current_user.try(:staff?) || (current_user && SiteSetting.show_inactive_accounts),
|
|
|
|
)
|
2022-02-22 06:02:04 -05:00
|
|
|
offset = [0, user_actions_params[:offset].to_i].max
|
|
|
|
action_types = (user_actions_params[:filter] || "").split(",").map(&:to_i)
|
|
|
|
limit = user_actions_params.fetch(:limit, 30).to_i
|
2013-05-22 11:20:16 -04:00
|
|
|
|
2021-09-29 08:24:28 -04:00
|
|
|
raise Discourse::NotFound unless guardian.can_see_profile?(user)
|
|
|
|
raise Discourse::NotFound unless guardian.can_see_user_actions?(user, action_types)
|
|
|
|
|
2019-01-15 21:40:16 -05:00
|
|
|
opts = {
|
|
|
|
user_id: user.id,
|
|
|
|
user: user,
|
2019-08-20 06:03:16 -04:00
|
|
|
offset: offset,
|
2019-09-09 11:03:57 -04:00
|
|
|
limit: limit,
|
2019-01-15 21:40:16 -05:00
|
|
|
action_types: action_types,
|
|
|
|
guardian: guardian,
|
2022-02-22 06:02:04 -05:00
|
|
|
ignore_private_messages: params[:filter].blank?,
|
2023-01-09 07:20:10 -05:00
|
|
|
acting_username: params[:acting_username],
|
2019-01-15 21:40:16 -05:00
|
|
|
}
|
2015-04-21 14:36:46 -04:00
|
|
|
|
2019-01-03 12:03:01 -05:00
|
|
|
stream = UserAction.stream(opts).to_a
|
2023-01-09 07:20:10 -05:00
|
|
|
render_serialized(stream, UserActionSerializer, root: "user_actions")
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2013-05-26 21:02:58 -04:00
|
|
|
params.require(:id)
|
2014-08-29 13:46:50 -04:00
|
|
|
render_serialized(UserAction.stream_item(params[:id], guardian), UserActionSerializer)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-05-12 06:02:32 -04:00
|
|
|
def private_messages
|
|
|
|
# DO NOT REMOVE
|
2015-12-09 19:39:33 -05:00
|
|
|
# TODO should preload messages to avoid extra http req
|
2014-05-12 06:02:32 -04:00
|
|
|
end
|
|
|
|
|
2022-02-22 06:02:04 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def user_actions_params
|
|
|
|
@user_actions_params ||= params.permit(:username, :filter, :offset, :acting_username, :limit)
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|