2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-10-31 08:02:26 -04:00
|
|
|
class Admin::UsersController < Admin::StaffController
|
2022-12-08 07:42:33 -05:00
|
|
|
MAX_SIMILAR_USERS = 10
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
before_action :fetch_user,
|
|
|
|
only: %i[
|
|
|
|
suspend
|
2013-11-07 13:53:32 -05:00
|
|
|
unsuspend
|
2014-06-05 23:02:52 -04:00
|
|
|
log_out
|
2013-10-22 15:53:08 -04:00
|
|
|
revoke_admin
|
|
|
|
revoke_moderation
|
|
|
|
grant_moderation
|
|
|
|
approve
|
|
|
|
activate
|
|
|
|
deactivate
|
2017-11-10 12:18:08 -05:00
|
|
|
silence
|
|
|
|
unsilence
|
2013-10-22 15:53:08 -04:00
|
|
|
trust_level
|
2014-09-13 16:55:26 -04:00
|
|
|
trust_level_lock
|
2014-07-13 14:11:38 -04:00
|
|
|
add_group
|
|
|
|
remove_group
|
2014-02-10 16:59:36 -05:00
|
|
|
primary_group
|
2016-05-06 13:34:33 -04:00
|
|
|
anonymize
|
2020-04-22 04:37:51 -04:00
|
|
|
merge
|
2017-12-21 20:18:12 -05:00
|
|
|
reset_bounce_score
|
2018-12-14 19:01:35 -05:00
|
|
|
disable_second_factor
|
2020-09-15 10:00:10 -04:00
|
|
|
delete_posts_batch
|
|
|
|
sso_record
|
|
|
|
]
|
2013-05-31 11:41:40 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def index
|
2014-11-03 06:46:08 -05:00
|
|
|
users = ::AdminUserIndexQuery.new(params).find_users
|
|
|
|
|
2019-01-11 11:10:02 -05:00
|
|
|
opts = {}
|
2014-11-03 06:46:08 -05:00
|
|
|
if params[:show_emails] == "true"
|
2019-01-18 09:26:44 -05:00
|
|
|
StaffActionLogger.new(current_user).log_show_emails(users, context: request.path)
|
2019-01-11 11:10:02 -05:00
|
|
|
opts[:emails_desired] = true
|
2014-11-03 06:46:08 -05:00
|
|
|
end
|
|
|
|
|
2019-01-11 11:10:02 -05:00
|
|
|
render_serialized(users, AdminUserListSerializer, opts)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2015-09-26 09:56:36 -04:00
|
|
|
@user = User.find_by(id: params[:id])
|
2015-05-06 21:00:51 -04:00
|
|
|
raise Discourse::NotFound unless @user
|
2022-12-08 07:42:33 -05:00
|
|
|
|
|
|
|
similar_users = User.real.where.not(id: @user.id).where(ip_address: @user.ip_address)
|
|
|
|
|
|
|
|
render_serialized(
|
|
|
|
@user,
|
|
|
|
AdminDetailedUserSerializer,
|
|
|
|
root: false,
|
|
|
|
similar_users: similar_users.limit(MAX_SIMILAR_USERS),
|
|
|
|
similar_users_count: similar_users.count,
|
|
|
|
)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2018-12-14 05:04:18 -05:00
|
|
|
def delete_posts_batch
|
2018-12-14 19:01:35 -05:00
|
|
|
deleted_posts = @user.delete_posts_in_batches(guardian)
|
2018-12-14 05:04:18 -05:00
|
|
|
# staff action logs will have an entry for each post
|
|
|
|
|
|
|
|
render json: { posts_deleted: deleted_posts.length }
|
2013-02-07 02:11:56 -05:00
|
|
|
end
|
2013-04-04 12:59:44 -04:00
|
|
|
|
2018-05-25 11:45:42 -04:00
|
|
|
# DELETE action to delete penalty history for a user
|
|
|
|
def penalty_history
|
|
|
|
# We don't delete any history, we merely remove the action type
|
|
|
|
# with a removed type. It can still be viewed in the logs but
|
|
|
|
# will not affect TL3 promotions.
|
|
|
|
sql = <<~SQL
|
|
|
|
UPDATE user_histories
|
|
|
|
SET action = CASE
|
|
|
|
WHEN action = :silence_user THEN :removed_silence_user
|
|
|
|
WHEN action = :unsilence_user THEN :removed_unsilence_user
|
|
|
|
WHEN action = :suspend_user THEN :removed_suspend_user
|
|
|
|
WHEN action = :unsuspend_user THEN :removed_unsuspend_user
|
|
|
|
END
|
|
|
|
WHERE target_user_id = :user_id
|
|
|
|
AND action IN (
|
|
|
|
:silence_user,
|
|
|
|
:suspend_user,
|
|
|
|
:unsilence_user,
|
|
|
|
:unsuspend_user
|
|
|
|
)
|
|
|
|
SQL
|
|
|
|
|
2018-06-19 02:13:14 -04:00
|
|
|
DB.exec(
|
2018-05-25 11:45:42 -04:00
|
|
|
sql,
|
|
|
|
UserHistory
|
|
|
|
.actions
|
|
|
|
.slice(
|
|
|
|
:silence_user,
|
|
|
|
:suspend_user,
|
|
|
|
:unsilence_user,
|
|
|
|
:unsuspend_user,
|
|
|
|
:removed_silence_user,
|
|
|
|
:removed_unsilence_user,
|
|
|
|
:removed_suspend_user,
|
|
|
|
:removed_unsuspend_user,
|
|
|
|
)
|
|
|
|
.merge(user_id: params[:user_id].to_i),
|
|
|
|
)
|
|
|
|
|
|
|
|
render json: success_json
|
|
|
|
end
|
|
|
|
|
2013-11-07 13:53:32 -05:00
|
|
|
def suspend
|
|
|
|
guardian.ensure_can_suspend!(@user)
|
2020-11-03 10:38:56 -05:00
|
|
|
|
|
|
|
if @user.suspended?
|
|
|
|
suspend_record = @user.suspend_record
|
|
|
|
message =
|
|
|
|
I18n.t(
|
|
|
|
"user.already_suspended",
|
|
|
|
staff: suspend_record.acting_user.username,
|
|
|
|
time_ago:
|
2023-05-25 08:53:59 -04:00
|
|
|
AgeWords.time_ago_in_words(
|
2020-11-03 10:38:56 -05:00
|
|
|
suspend_record.created_at,
|
|
|
|
true,
|
|
|
|
scope: :"datetime.distance_in_words_verbose",
|
2023-01-09 07:20:10 -05:00
|
|
|
),
|
2020-11-03 10:38:56 -05:00
|
|
|
)
|
|
|
|
return render json: failed_json.merge(message: message), status: 409
|
|
|
|
end
|
|
|
|
|
2020-08-26 21:05:33 -04:00
|
|
|
params.require(%i[suspend_until reason])
|
|
|
|
|
2022-12-08 07:42:33 -05:00
|
|
|
all_users = [@user]
|
|
|
|
if Array === params[:other_user_ids]
|
|
|
|
all_users.concat(User.where(id: params[:other_user_ids]).to_a)
|
|
|
|
all_users.uniq!
|
|
|
|
end
|
2017-09-13 14:43:36 -04:00
|
|
|
|
|
|
|
user_history = nil
|
|
|
|
|
2022-12-08 07:42:33 -05:00
|
|
|
all_users.each do |user|
|
|
|
|
user.suspended_till = params[:suspend_until]
|
|
|
|
user.suspended_at = DateTime.now
|
|
|
|
|
|
|
|
message = params[:message]
|
2017-09-13 14:43:36 -04:00
|
|
|
|
2022-12-08 07:42:33 -05:00
|
|
|
User.transaction do
|
|
|
|
user.save!
|
|
|
|
|
|
|
|
user_history =
|
|
|
|
StaffActionLogger.new(current_user).log_user_suspend(
|
|
|
|
user,
|
|
|
|
params[:reason],
|
|
|
|
message: message,
|
|
|
|
post_id: params[:post_id],
|
|
|
|
)
|
|
|
|
end
|
|
|
|
user.logged_out
|
|
|
|
|
|
|
|
if message.present?
|
|
|
|
Jobs.enqueue(
|
|
|
|
:critical_user_email,
|
|
|
|
type: "account_suspended",
|
|
|
|
user_id: user.id,
|
|
|
|
user_history_id: user_history.id,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
DiscourseEvent.trigger(
|
|
|
|
:user_suspended,
|
|
|
|
user: user,
|
|
|
|
reason: params[:reason],
|
2017-11-20 12:33:02 -05:00
|
|
|
message: message,
|
2022-12-08 07:42:33 -05:00
|
|
|
user_history: user_history,
|
|
|
|
post_id: params[:post_id],
|
|
|
|
suspended_till: params[:suspend_until],
|
|
|
|
suspended_at: DateTime.now,
|
2017-09-13 14:43:36 -04:00
|
|
|
)
|
|
|
|
end
|
2018-01-11 12:56:28 -05:00
|
|
|
|
2018-01-30 16:31:29 -05:00
|
|
|
perform_post_action
|
|
|
|
|
2017-09-13 14:11:33 -04:00
|
|
|
render_json_dump(
|
|
|
|
suspension: {
|
|
|
|
suspend_reason: params[:reason],
|
2018-01-11 10:54:27 -05:00
|
|
|
full_suspend_reason: user_history.try(:details),
|
2017-09-13 14:11:33 -04:00
|
|
|
suspended_till: @user.suspended_till,
|
2022-06-01 08:54:23 -04:00
|
|
|
suspended_at: @user.suspended_at,
|
|
|
|
suspended_by: BasicUserSerializer.new(current_user, root: false).as_json,
|
2017-09-13 14:11:33 -04:00
|
|
|
},
|
|
|
|
)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-11-07 13:53:32 -05:00
|
|
|
def unsuspend
|
|
|
|
guardian.ensure_can_suspend!(@user)
|
|
|
|
@user.suspended_till = nil
|
|
|
|
@user.suspended_at = nil
|
2013-02-05 14:16:51 -05:00
|
|
|
@user.save!
|
2013-11-07 13:53:32 -05:00
|
|
|
StaffActionLogger.new(current_user).log_user_unsuspend(@user)
|
2017-09-13 14:11:33 -04:00
|
|
|
|
2018-11-08 16:32:59 -05:00
|
|
|
DiscourseEvent.trigger(:user_unsuspended, user: @user)
|
|
|
|
|
2019-10-17 19:49:26 -04:00
|
|
|
render_json_dump(suspension: { suspended_till: nil, suspended_at: nil })
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-06-05 23:02:52 -04:00
|
|
|
def log_out
|
2014-12-01 08:03:25 -05:00
|
|
|
if @user
|
2017-01-31 17:21:37 -05:00
|
|
|
@user.user_auth_tokens.destroy_all
|
2016-07-04 05:20:30 -04:00
|
|
|
@user.logged_out
|
2014-12-01 08:03:25 -05:00
|
|
|
render json: success_json
|
|
|
|
else
|
|
|
|
render json: { error: I18n.t("admin_js.admin.users.id_not_found") }, status: 404
|
|
|
|
end
|
2014-06-05 23:02:52 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def revoke_admin
|
2013-05-31 11:41:40 -04:00
|
|
|
guardian.ensure_can_revoke_admin!(@user)
|
|
|
|
@user.revoke_admin!
|
2016-01-27 04:38:16 -05:00
|
|
|
StaffActionLogger.new(current_user).log_revoke_admin(@user)
|
FIX: Revoking admin or moderator status doesn't require refresh to delete/anonymize/merge user (#14073)
* FIX: Revoking admin or moderator status doesn't require refresh to delete/anonymize/merge user
On the /admin/users/<id>/<username> page, there are action buttons that are either visible or hidden depending on a few fields from the AdminDetailsSerializer: `can_be_deleted`, `can_be_anonymized`, `can_be_merged`, `can_delete_all_posts`.
These fields are updated when granting/revoking admin or moderator status. However, those updates were not being reflected on the page. E.g. if a user is granted moderation privileges, the 'anonymize user' and 'merge' buttons still appear on the page, which is inconsistent with the backend state of the user. It requires refreshing the page to update the state.
This commit fixes that issue, by syncing the client model state with the server state when handling a successful response from the server. Now, when revoking privileges, the buttons automatically appear without refreshing the page. Similarly, when granting moderator privileges, the buttons automatically disappear without refreshing the page.
* Add detailed user response to spec for changed routes.
Add tests to verify that the revoke_moderation, grant_moderation, and revoke_admin routes return a response formatted according to the AdminDetailedUserSerializer.
2021-08-18 21:57:16 -04:00
|
|
|
render_serialized(@user, AdminDetailedUserSerializer, root: false)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def grant_admin
|
FEATURE: Centralized 2FA page (#15377)
2FA support in Discourse was added and grown gradually over the years: we first
added support for TOTP for logins, then we implemented backup codes, and last
but not least, security keys. 2FA usage was initially limited to logging in,
but it has been expanded and we now require 2FA for risky actions such as
adding a new admin to the site.
As a result of this gradual growth of the 2FA system, technical debt has
accumulated to the point where it has become difficult to require 2FA for more
actions. We now have 5 different 2FA UI implementations and each one has to
support all 3 2FA methods (TOTP, backup codes, and security keys) which makes
it difficult to maintain a consistent UX for these different implementations.
Moreover, there is a lot of repeated logic in the server-side code behind these
5 UI implementations which hinders maintainability even more.
This commit is the first step towards repaying the technical debt: it builds a
system that centralizes as much as possible of the 2FA server-side logic and
UI. The 2 main components of this system are:
1. A dedicated page for 2FA with support for all 3 methods.
2. A reusable server-side class that centralizes the 2FA logic (the
`SecondFactor::AuthManager` class).
From a top-level view, the 2FA flow in this new system looks like this:
1. User initiates an action that requires 2FA;
2. Server is aware that 2FA is required for this action, so it redirects the
user to the 2FA page if the user has a 2FA method, otherwise the action is
performed.
3. User submits the 2FA form on the page;
4. Server validates the 2FA and if it's successful, the action is performed and
the user is redirected to the previous page.
A more technically-detailed explanation/documentation of the new system is
available as a comment at the top of the `lib/second_factor/auth_manager.rb`
file. Please note that the details are not set in stone and will likely change
in the future, so please don't use the system in your plugins yet.
Since this is a new system that needs to be tested, we've decided to migrate
only the 2FA for adding a new admin to the new system at this time (in this
commit). Our plan is to gradually migrate the remaining 2FA implementations to
the new system.
For screenshots of the 2FA page, see PR #15377 on GitHub.
2022-02-17 04:12:59 -05:00
|
|
|
result = run_second_factor!(SecondFactor::Actions::GrantAdmin)
|
|
|
|
if result.no_second_factors_enabled?
|
2021-09-14 08:19:28 -04:00
|
|
|
render json: success_json.merge(email_confirmation_required: true)
|
FEATURE: Centralized 2FA page (#15377)
2FA support in Discourse was added and grown gradually over the years: we first
added support for TOTP for logins, then we implemented backup codes, and last
but not least, security keys. 2FA usage was initially limited to logging in,
but it has been expanded and we now require 2FA for risky actions such as
adding a new admin to the site.
As a result of this gradual growth of the 2FA system, technical debt has
accumulated to the point where it has become difficult to require 2FA for more
actions. We now have 5 different 2FA UI implementations and each one has to
support all 3 2FA methods (TOTP, backup codes, and security keys) which makes
it difficult to maintain a consistent UX for these different implementations.
Moreover, there is a lot of repeated logic in the server-side code behind these
5 UI implementations which hinders maintainability even more.
This commit is the first step towards repaying the technical debt: it builds a
system that centralizes as much as possible of the 2FA server-side logic and
UI. The 2 main components of this system are:
1. A dedicated page for 2FA with support for all 3 methods.
2. A reusable server-side class that centralizes the 2FA logic (the
`SecondFactor::AuthManager` class).
From a top-level view, the 2FA flow in this new system looks like this:
1. User initiates an action that requires 2FA;
2. Server is aware that 2FA is required for this action, so it redirects the
user to the 2FA page if the user has a 2FA method, otherwise the action is
performed.
3. User submits the 2FA form on the page;
4. Server validates the 2FA and if it's successful, the action is performed and
the user is redirected to the previous page.
A more technically-detailed explanation/documentation of the new system is
available as a comment at the top of the `lib/second_factor/auth_manager.rb`
file. Please note that the details are not set in stone and will likely change
in the future, so please don't use the system in your plugins yet.
Since this is a new system that needs to be tested, we've decided to migrate
only the 2FA for adding a new admin to the new system at this time (in this
commit). Our plan is to gradually migrate the remaining 2FA implementations to
the new system.
For screenshots of the 2FA page, see PR #15377 on GitHub.
2022-02-17 04:12:59 -05:00
|
|
|
else
|
|
|
|
render json: success_json
|
2021-09-14 08:19:28 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-12 17:58:08 -05:00
|
|
|
def revoke_moderation
|
2013-05-31 11:41:40 -04:00
|
|
|
guardian.ensure_can_revoke_moderation!(@user)
|
|
|
|
@user.revoke_moderation!
|
2016-01-27 04:38:16 -05:00
|
|
|
StaffActionLogger.new(current_user).log_revoke_moderation(@user)
|
FIX: Revoking admin or moderator status doesn't require refresh to delete/anonymize/merge user (#14073)
* FIX: Revoking admin or moderator status doesn't require refresh to delete/anonymize/merge user
On the /admin/users/<id>/<username> page, there are action buttons that are either visible or hidden depending on a few fields from the AdminDetailsSerializer: `can_be_deleted`, `can_be_anonymized`, `can_be_merged`, `can_delete_all_posts`.
These fields are updated when granting/revoking admin or moderator status. However, those updates were not being reflected on the page. E.g. if a user is granted moderation privileges, the 'anonymize user' and 'merge' buttons still appear on the page, which is inconsistent with the backend state of the user. It requires refreshing the page to update the state.
This commit fixes that issue, by syncing the client model state with the server state when handling a successful response from the server. Now, when revoking privileges, the buttons automatically appear without refreshing the page. Similarly, when granting moderator privileges, the buttons automatically disappear without refreshing the page.
* Add detailed user response to spec for changed routes.
Add tests to verify that the revoke_moderation, grant_moderation, and revoke_admin routes return a response formatted according to the AdminDetailedUserSerializer.
2021-08-18 21:57:16 -04:00
|
|
|
render_serialized(@user, AdminDetailedUserSerializer, root: false)
|
2013-02-12 17:58:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def grant_moderation
|
|
|
|
guardian.ensure_can_grant_moderation!(@user)
|
2013-05-06 00:49:56 -04:00
|
|
|
@user.grant_moderation!
|
2016-01-27 04:38:16 -05:00
|
|
|
StaffActionLogger.new(current_user).log_grant_moderation(@user)
|
FIX: Revoking admin or moderator status doesn't require refresh to delete/anonymize/merge user (#14073)
* FIX: Revoking admin or moderator status doesn't require refresh to delete/anonymize/merge user
On the /admin/users/<id>/<username> page, there are action buttons that are either visible or hidden depending on a few fields from the AdminDetailsSerializer: `can_be_deleted`, `can_be_anonymized`, `can_be_merged`, `can_delete_all_posts`.
These fields are updated when granting/revoking admin or moderator status. However, those updates were not being reflected on the page. E.g. if a user is granted moderation privileges, the 'anonymize user' and 'merge' buttons still appear on the page, which is inconsistent with the backend state of the user. It requires refreshing the page to update the state.
This commit fixes that issue, by syncing the client model state with the server state when handling a successful response from the server. Now, when revoking privileges, the buttons automatically appear without refreshing the page. Similarly, when granting moderator privileges, the buttons automatically disappear without refreshing the page.
* Add detailed user response to spec for changed routes.
Add tests to verify that the revoke_moderation, grant_moderation, and revoke_admin routes return a response formatted according to the AdminDetailedUserSerializer.
2021-08-18 21:57:16 -04:00
|
|
|
render_serialized(@user, AdminDetailedUserSerializer, root: false)
|
2013-02-12 17:58:08 -05:00
|
|
|
end
|
|
|
|
|
2014-07-13 14:11:38 -04:00
|
|
|
def add_group
|
|
|
|
group = Group.find(params[:group_id].to_i)
|
2020-04-20 21:50:20 -04:00
|
|
|
raise Discourse::NotFound unless group
|
2021-07-28 07:04:04 -04:00
|
|
|
|
2020-04-20 21:50:20 -04:00
|
|
|
return render_json_error(I18n.t("groups.errors.can_not_modify_automatic")) if group.automatic
|
2021-07-28 07:04:04 -04:00
|
|
|
guardian.ensure_can_edit!(group)
|
2015-10-28 12:21:54 -04:00
|
|
|
|
2016-12-11 10:36:15 -05:00
|
|
|
group.add(@user)
|
|
|
|
GroupActionLogger.new(current_user, group).log_add_user_to_group(@user)
|
2015-10-28 12:21:54 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2014-07-13 14:11:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def remove_group
|
|
|
|
group = Group.find(params[:group_id].to_i)
|
2020-04-20 21:50:20 -04:00
|
|
|
raise Discourse::NotFound unless group
|
2021-07-28 07:04:04 -04:00
|
|
|
|
2020-04-20 21:50:20 -04:00
|
|
|
return render_json_error(I18n.t("groups.errors.can_not_modify_automatic")) if group.automatic
|
2021-07-28 07:04:04 -04:00
|
|
|
guardian.ensure_can_edit!(group)
|
2017-08-04 12:13:20 -04:00
|
|
|
|
2021-07-28 07:04:04 -04:00
|
|
|
if group.remove(@user)
|
|
|
|
GroupActionLogger.new(current_user, group).log_remove_user_from_group(@user)
|
|
|
|
end
|
2017-08-04 12:13:20 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2014-07-13 14:11:38 -04:00
|
|
|
end
|
|
|
|
|
2014-02-10 16:59:36 -05:00
|
|
|
def primary_group
|
2017-08-04 12:13:20 -04:00
|
|
|
if params[:primary_group_id].present?
|
|
|
|
primary_group_id = params[:primary_group_id].to_i
|
|
|
|
if group = Group.find(primary_group_id)
|
2022-11-11 06:06:05 -05:00
|
|
|
guardian.ensure_can_change_primary_group!(@user, group)
|
|
|
|
|
2017-08-04 12:13:20 -04:00
|
|
|
@user.primary_group_id = primary_group_id if group.user_ids.include?(@user.id)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
@user.primary_group_id = nil
|
2017-05-17 12:42:04 -04:00
|
|
|
end
|
2017-08-04 12:13:20 -04:00
|
|
|
|
|
|
|
@user.save!
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2014-02-10 16:59:36 -05:00
|
|
|
end
|
|
|
|
|
2013-07-03 04:27:40 -04:00
|
|
|
def trust_level
|
|
|
|
guardian.ensure_can_change_trust_level!(@user)
|
2014-09-29 23:12:33 -04:00
|
|
|
level = params[:level].to_i
|
|
|
|
|
2017-11-23 15:55:44 -05:00
|
|
|
if @user.manual_locked_trust_level.nil?
|
2019-05-06 21:27:05 -04:00
|
|
|
if [0, 1, 2].include?(level) && Promotion.public_send("tl#{level + 1}_met?", @user)
|
2017-11-23 15:55:44 -05:00
|
|
|
@user.manual_locked_trust_level = level
|
|
|
|
@user.save
|
|
|
|
elsif level == 3 && Promotion.tl3_lost?(@user)
|
|
|
|
@user.manual_locked_trust_level = level
|
|
|
|
@user.save
|
|
|
|
end
|
2014-09-29 23:12:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
@user.change_trust_level!(level, log_action_for: current_user)
|
2014-06-16 20:46:30 -04:00
|
|
|
|
2013-07-03 04:27:40 -04:00
|
|
|
render_serialized(@user, AdminUserSerializer)
|
2014-07-29 15:54:20 -04:00
|
|
|
rescue Discourse::InvalidAccess => e
|
|
|
|
render_json_error(e.message)
|
2013-07-03 04:27:40 -04:00
|
|
|
end
|
|
|
|
|
2014-09-13 16:55:26 -04:00
|
|
|
def trust_level_lock
|
|
|
|
guardian.ensure_can_change_trust_level!(@user)
|
|
|
|
|
2014-09-29 23:12:33 -04:00
|
|
|
new_lock = params[:locked].to_s
|
2015-05-26 09:16:55 -04:00
|
|
|
return render_json_error I18n.t("errors.invalid_boolean") unless new_lock =~ /true|false/
|
2014-09-13 16:55:26 -04:00
|
|
|
|
2017-11-23 15:55:44 -05:00
|
|
|
@user.manual_locked_trust_level = (new_lock == "true") ? @user.trust_level : nil
|
2014-09-13 16:55:26 -04:00
|
|
|
@user.save
|
2014-09-29 23:12:33 -04:00
|
|
|
|
2017-01-10 16:45:36 -05:00
|
|
|
StaffActionLogger.new(current_user).log_lock_trust_level(@user)
|
2017-11-23 15:55:44 -05:00
|
|
|
Promotion.recalculate(@user, current_user)
|
2014-09-29 23:12:33 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2014-09-13 16:55:26 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def approve
|
2019-04-16 14:42:47 -04:00
|
|
|
guardian.ensure_can_approve!(@user)
|
|
|
|
|
|
|
|
reviewable =
|
|
|
|
ReviewableUser.find_by(target: @user) ||
|
|
|
|
Jobs::CreateUserReviewable.new.execute(user_id: @user.id).reviewable
|
|
|
|
|
2019-04-17 11:26:43 -04:00
|
|
|
reviewable.perform(current_user, :approve_user)
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def approve_bulk
|
2019-04-17 11:26:43 -04:00
|
|
|
Reviewable.bulk_perform_targets(current_user, :approve_user, "ReviewableUser", params[:users])
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-05-07 21:58:34 -04:00
|
|
|
def activate
|
|
|
|
guardian.ensure_can_activate!(@user)
|
2017-07-31 12:54:09 -04:00
|
|
|
# ensure there is an active email token
|
2021-11-25 02:34:39 -05:00
|
|
|
if !@user.email_tokens.active.exists?
|
|
|
|
@user.email_tokens.create!(email: @user.email, scope: EmailToken.scopes[:signup])
|
2023-01-09 07:20:10 -05:00
|
|
|
end
|
2013-05-07 21:58:34 -04:00
|
|
|
@user.activate
|
2017-01-10 16:45:36 -05:00
|
|
|
StaffActionLogger.new(current_user).log_user_activate(@user, I18n.t("user.activated_by_staff"))
|
2014-12-08 13:16:57 -05:00
|
|
|
render json: success_json
|
2013-05-07 21:58:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def deactivate
|
|
|
|
guardian.ensure_can_deactivate!(@user)
|
2019-04-03 12:04:05 -04:00
|
|
|
@user.deactivate(current_user)
|
2018-05-07 22:44:49 -04:00
|
|
|
StaffActionLogger.new(current_user).log_user_deactivate(
|
|
|
|
@user,
|
|
|
|
I18n.t("user.deactivated_by_staff"),
|
|
|
|
params.slice(:context),
|
|
|
|
)
|
2014-04-28 13:46:28 -04:00
|
|
|
refresh_browser @user
|
2019-12-30 10:14:29 -05:00
|
|
|
render json: success_json
|
2013-05-07 21:58:34 -04:00
|
|
|
end
|
|
|
|
|
2017-11-10 12:18:08 -05:00
|
|
|
def silence
|
|
|
|
guardian.ensure_can_silence_user! @user
|
2017-11-13 13:41:36 -05:00
|
|
|
|
2020-11-03 10:38:56 -05:00
|
|
|
if @user.silenced?
|
|
|
|
silenced_record = @user.silenced_record
|
|
|
|
message =
|
|
|
|
I18n.t(
|
|
|
|
"user.already_silenced",
|
|
|
|
staff: silenced_record.acting_user.username,
|
|
|
|
time_ago:
|
2023-05-25 08:53:59 -04:00
|
|
|
AgeWords.time_ago_in_words(
|
2020-11-03 10:38:56 -05:00
|
|
|
silenced_record.created_at,
|
|
|
|
true,
|
|
|
|
scope: :"datetime.distance_in_words_verbose",
|
2023-01-09 07:20:10 -05:00
|
|
|
),
|
2020-11-03 10:38:56 -05:00
|
|
|
)
|
|
|
|
return render json: failed_json.merge(message: message), status: 409
|
|
|
|
end
|
|
|
|
|
2022-12-08 07:42:33 -05:00
|
|
|
all_users = [@user]
|
|
|
|
if Array === params[:other_user_ids]
|
|
|
|
all_users.concat(User.where(id: params[:other_user_ids]).to_a)
|
|
|
|
all_users.uniq!
|
|
|
|
end
|
2017-11-13 13:41:36 -05:00
|
|
|
|
2022-12-08 07:42:33 -05:00
|
|
|
user_history = nil
|
|
|
|
|
|
|
|
all_users.each do |user|
|
|
|
|
silencer =
|
|
|
|
UserSilencer.new(
|
|
|
|
user,
|
|
|
|
current_user,
|
|
|
|
silenced_till: params[:silenced_till],
|
|
|
|
reason: params[:reason],
|
|
|
|
message_body: params[:message],
|
|
|
|
keep_posts: true,
|
|
|
|
post_id: params[:post_id],
|
2017-11-13 13:41:36 -05:00
|
|
|
)
|
2022-12-08 07:42:33 -05:00
|
|
|
|
|
|
|
if silencer.silence
|
|
|
|
user_history = silencer.user_history
|
|
|
|
Jobs.enqueue(
|
|
|
|
:critical_user_email,
|
|
|
|
type: "account_silenced",
|
|
|
|
user_id: user.id,
|
|
|
|
user_history_id: user_history.id,
|
|
|
|
)
|
|
|
|
end
|
2017-11-13 13:41:36 -05:00
|
|
|
end
|
2022-12-08 07:42:33 -05:00
|
|
|
|
2018-01-30 16:31:29 -05:00
|
|
|
perform_post_action
|
2017-11-13 13:41:36 -05:00
|
|
|
|
|
|
|
render_json_dump(
|
|
|
|
silence: {
|
|
|
|
silenced: true,
|
2022-12-08 07:42:33 -05:00
|
|
|
silence_reason: user_history.try(:details),
|
2017-11-13 13:41:36 -05:00
|
|
|
silenced_till: @user.silenced_till,
|
2018-07-22 18:08:36 -04:00
|
|
|
silenced_at: @user.silenced_at,
|
2018-03-29 17:07:09 -04:00
|
|
|
silenced_by: BasicUserSerializer.new(current_user, root: false).as_json,
|
2017-11-13 13:41:36 -05:00
|
|
|
},
|
|
|
|
)
|
2013-05-31 11:41:40 -04:00
|
|
|
end
|
|
|
|
|
2017-11-10 12:18:08 -05:00
|
|
|
def unsilence
|
|
|
|
guardian.ensure_can_unsilence_user! @user
|
|
|
|
UserSilencer.unsilence(@user, current_user)
|
2017-11-13 13:41:36 -05:00
|
|
|
|
|
|
|
render_json_dump(
|
|
|
|
unsilence: {
|
|
|
|
silenced: false,
|
|
|
|
silence_reason: nil,
|
|
|
|
silenced_till: nil,
|
2018-07-22 18:08:36 -04:00
|
|
|
silenced_at: nil,
|
2017-11-13 13:41:36 -05:00
|
|
|
},
|
|
|
|
)
|
2013-05-31 11:41:40 -04:00
|
|
|
end
|
|
|
|
|
2017-12-21 20:18:12 -05:00
|
|
|
def disable_second_factor
|
2018-02-20 01:44:51 -05:00
|
|
|
guardian.ensure_can_disable_second_factor!(@user)
|
2018-06-28 04:12:32 -04:00
|
|
|
user_second_factor = @user.user_second_factors
|
2020-07-07 15:19:30 -04:00
|
|
|
user_security_key = @user.security_keys
|
|
|
|
raise Discourse::InvalidParameters if user_second_factor.empty? && user_security_key.empty?
|
2018-02-20 01:44:51 -05:00
|
|
|
|
2018-06-28 04:12:32 -04:00
|
|
|
user_second_factor.destroy_all
|
2020-07-07 15:19:30 -04:00
|
|
|
user_security_key.destroy_all
|
2018-02-20 01:44:51 -05:00
|
|
|
StaffActionLogger.new(current_user).log_disable_second_factor_auth(@user)
|
|
|
|
|
2022-02-04 18:43:53 -05:00
|
|
|
Jobs.enqueue(:critical_user_email, type: "account_second_factor_disabled", user_id: @user.id)
|
2018-02-20 01:44:51 -05:00
|
|
|
|
|
|
|
render json: success_json
|
2017-12-21 20:18:12 -05:00
|
|
|
end
|
|
|
|
|
2013-04-11 16:04:20 -04:00
|
|
|
def destroy
|
2014-07-28 13:17:37 -04:00
|
|
|
user = User.find_by(id: params[:id].to_i)
|
2013-04-11 16:04:20 -04:00
|
|
|
guardian.ensure_can_delete_user!(user)
|
2018-05-03 16:18:19 -04:00
|
|
|
|
2022-06-22 17:20:41 -04:00
|
|
|
options = params.slice(:context, :delete_as_spammer)
|
|
|
|
%i[delete_posts block_email block_urls block_ip].each do |param_name|
|
|
|
|
options[param_name] = ActiveModel::Type::Boolean.new.cast(params[param_name])
|
|
|
|
end
|
2019-01-18 10:04:29 -05:00
|
|
|
options[:prepare_for_destroy] = true
|
2018-05-03 16:18:19 -04:00
|
|
|
|
|
|
|
hijack do
|
|
|
|
begin
|
|
|
|
if UserDestroyer.new(current_user).destroy(user, options)
|
|
|
|
render json: { deleted: true }
|
|
|
|
else
|
|
|
|
render json: {
|
|
|
|
deleted: false,
|
|
|
|
user: AdminDetailedUserSerializer.new(user, root: false).as_json,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
rescue UserDestroyer::PostsExistError
|
2018-05-10 15:04:36 -04:00
|
|
|
render json: {
|
|
|
|
deleted: false,
|
2021-06-22 05:29:35 -04:00
|
|
|
message:
|
|
|
|
I18n.t(
|
|
|
|
"user.cannot_delete_has_posts",
|
|
|
|
username: user.username,
|
|
|
|
count: user.posts.joins(:topic).count,
|
|
|
|
),
|
2018-05-22 18:17:44 -04:00
|
|
|
},
|
|
|
|
status: 403
|
2013-07-24 13:48:55 -04:00
|
|
|
end
|
2013-04-11 16:04:20 -04:00
|
|
|
end
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-03-19 10:27:21 -04:00
|
|
|
def badges
|
|
|
|
end
|
|
|
|
|
2014-09-24 20:19:26 -04:00
|
|
|
def tl3_requirements
|
2014-01-23 16:40:10 -05:00
|
|
|
end
|
|
|
|
|
2014-07-07 16:18:18 -04:00
|
|
|
def ip_info
|
|
|
|
params.require(:ip)
|
|
|
|
|
2018-10-30 21:38:57 -04:00
|
|
|
render json: DiscourseIpInfo.get(params[:ip], resolve_hostname: true)
|
2014-07-07 16:18:18 -04:00
|
|
|
end
|
2013-05-31 11:41:40 -04:00
|
|
|
|
2014-10-27 20:25:02 -04:00
|
|
|
def sync_sso
|
2021-02-08 05:04:33 -05:00
|
|
|
return render body: nil, status: 404 unless SiteSetting.enable_discourse_connect
|
2014-10-27 20:25:02 -04:00
|
|
|
|
2018-12-07 10:01:44 -05:00
|
|
|
begin
|
2022-01-06 07:28:46 -05:00
|
|
|
sso =
|
|
|
|
DiscourseConnect.parse(
|
|
|
|
"sso=#{params[:sso]}&sig=#{params[:sig]}",
|
|
|
|
secure_session: secure_session,
|
|
|
|
)
|
|
|
|
rescue DiscourseConnect::ParseError
|
2021-02-08 05:04:33 -05:00
|
|
|
return(
|
|
|
|
render json: failed_json.merge(message: I18n.t("discourse_connect.login_error")),
|
|
|
|
status: 422
|
2023-01-09 07:20:10 -05:00
|
|
|
)
|
2018-12-07 10:01:44 -05:00
|
|
|
end
|
2014-10-27 20:25:02 -04:00
|
|
|
|
2016-03-26 01:28:49 -04:00
|
|
|
begin
|
|
|
|
user = sso.lookup_or_create_user
|
2022-03-30 15:22:22 -04:00
|
|
|
DiscourseEvent.trigger(:sync_sso, user)
|
2016-03-26 01:28:49 -04:00
|
|
|
render_serialized(user, AdminDetailedUserSerializer, root: false)
|
|
|
|
rescue ActiveRecord::RecordInvalid => ex
|
|
|
|
render json: failed_json.merge(message: ex.message), status: 403
|
2022-01-06 07:28:46 -05:00
|
|
|
rescue DiscourseConnect::BlankExternalId => ex
|
2021-02-08 05:04:33 -05:00
|
|
|
render json: failed_json.merge(message: I18n.t("discourse_connect.blank_id_error")),
|
|
|
|
status: 422
|
2016-03-26 01:28:49 -04:00
|
|
|
end
|
2014-10-27 20:25:02 -04:00
|
|
|
end
|
|
|
|
|
2014-11-20 13:59:20 -05:00
|
|
|
def delete_other_accounts_with_same_ip
|
|
|
|
params.require(:ip)
|
|
|
|
params.require(:exclude)
|
|
|
|
params.require(:order)
|
|
|
|
|
|
|
|
user_destroyer = UserDestroyer.new(current_user)
|
2017-11-22 09:43:54 -05:00
|
|
|
options = {
|
|
|
|
delete_posts: true,
|
|
|
|
block_email: true,
|
|
|
|
block_urls: true,
|
|
|
|
block_ip: true,
|
|
|
|
delete_as_spammer: true,
|
|
|
|
context: I18n.t("user.destroy_reasons.same_ip_address", ip_address: params[:ip]),
|
|
|
|
}
|
2014-11-20 13:59:20 -05:00
|
|
|
|
2014-11-24 13:34:04 -05:00
|
|
|
AdminUserIndexQuery
|
|
|
|
.new(params)
|
|
|
|
.find_users(50)
|
2018-03-28 04:20:08 -04:00
|
|
|
.each { |user| user_destroyer.destroy(user, options) }
|
2014-11-20 13:59:20 -05:00
|
|
|
|
|
|
|
render json: success_json
|
|
|
|
end
|
|
|
|
|
2014-11-24 13:34:04 -05:00
|
|
|
def total_other_accounts_with_same_ip
|
|
|
|
params.require(:ip)
|
|
|
|
params.require(:exclude)
|
|
|
|
params.require(:order)
|
|
|
|
|
|
|
|
render json: { total: AdminUserIndexQuery.new(params).count_users }
|
|
|
|
end
|
|
|
|
|
2015-03-06 16:44:54 -05:00
|
|
|
def anonymize
|
|
|
|
guardian.ensure_can_anonymize_user!(@user)
|
2020-12-15 15:48:16 -05:00
|
|
|
opts = {}
|
|
|
|
opts[:anonymize_ip] = params[:anonymize_ip] if params[:anonymize_ip].present?
|
|
|
|
|
|
|
|
if user = UserAnonymizer.new(@user, current_user, opts).make_anonymous
|
2015-03-06 16:44:54 -05:00
|
|
|
render json: success_json.merge(username: user.username)
|
|
|
|
else
|
|
|
|
render json:
|
|
|
|
failed_json.merge(user: AdminDetailedUserSerializer.new(user, root: false).as_json)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-22 04:37:51 -04:00
|
|
|
def merge
|
|
|
|
target_username = params.require(:target_username)
|
|
|
|
target_user = User.find_by_username(target_username)
|
2020-04-30 11:29:33 -04:00
|
|
|
raise Discourse::NotFound if target_user.blank?
|
2020-04-22 04:37:51 -04:00
|
|
|
|
2020-04-22 08:12:09 -04:00
|
|
|
guardian.ensure_can_merge_users!(@user, target_user)
|
2020-04-22 04:37:51 -04:00
|
|
|
|
2020-12-09 23:52:08 -05:00
|
|
|
Jobs.enqueue(
|
|
|
|
:merge_user,
|
|
|
|
user_id: @user.id,
|
|
|
|
target_user_id: target_user.id,
|
|
|
|
current_user_id: current_user.id,
|
|
|
|
)
|
|
|
|
render json: success_json
|
2020-04-22 04:37:51 -04:00
|
|
|
end
|
|
|
|
|
2016-05-06 13:34:33 -04:00
|
|
|
def reset_bounce_score
|
|
|
|
guardian.ensure_can_reset_bounce_score!(@user)
|
2017-02-20 04:37:01 -05:00
|
|
|
@user.user_stat&.reset_bounce_score!
|
2023-03-21 10:26:26 -04:00
|
|
|
StaffActionLogger.new(current_user).log_reset_bounce_score(@user)
|
2016-05-06 13:34:33 -04:00
|
|
|
render json: success_json
|
|
|
|
end
|
|
|
|
|
2020-09-15 10:00:10 -04:00
|
|
|
def sso_record
|
|
|
|
guardian.ensure_can_delete_sso_record!(@user)
|
|
|
|
@user.single_sign_on_record.destroy!
|
|
|
|
render json: success_json
|
|
|
|
end
|
|
|
|
|
2013-05-31 11:41:40 -04:00
|
|
|
private
|
|
|
|
|
2018-01-30 16:31:29 -05:00
|
|
|
def perform_post_action
|
|
|
|
return unless params[:post_id].present? && params[:post_action].present?
|
2018-06-07 01:28:18 -04:00
|
|
|
|
2018-01-30 16:31:29 -05:00
|
|
|
if post = Post.where(id: params[:post_id]).first
|
|
|
|
case params[:post_action]
|
|
|
|
when "delete"
|
2019-05-30 16:42:59 -04:00
|
|
|
PostDestroyer.new(current_user, post).destroy if guardian.can_delete_post_or_topic?(post)
|
2019-05-27 12:27:16 -04:00
|
|
|
when "delete_replies"
|
2019-05-30 16:42:59 -04:00
|
|
|
if guardian.can_delete_post_or_topic?(post)
|
|
|
|
PostDestroyer.delete_with_replies(current_user, post)
|
2023-01-09 07:20:10 -05:00
|
|
|
end
|
2018-01-30 16:31:29 -05:00
|
|
|
when "edit"
|
|
|
|
revisor = PostRevisor.new(post)
|
2018-06-07 01:28:18 -04:00
|
|
|
|
2018-01-30 16:31:29 -05:00
|
|
|
# Take what the moderator edited in as gospel
|
|
|
|
revisor.revise!(
|
|
|
|
current_user,
|
|
|
|
{ raw: params[:post_edit] },
|
2018-03-12 13:49:52 -04:00
|
|
|
skip_validations: true,
|
|
|
|
skip_revision: true,
|
2018-01-30 16:31:29 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2018-06-07 01:28:18 -04:00
|
|
|
end
|
2018-01-30 16:31:29 -05:00
|
|
|
|
2013-05-31 11:41:40 -04:00
|
|
|
def fetch_user
|
2014-05-06 09:41:59 -04:00
|
|
|
@user = User.find_by(id: params[:user_id])
|
2018-12-14 19:01:35 -05:00
|
|
|
raise Discourse::NotFound unless @user
|
2013-05-31 11:41:40 -04:00
|
|
|
end
|
|
|
|
|
2014-04-28 13:46:28 -04:00
|
|
|
def refresh_browser(user)
|
2015-05-03 22:21:00 -04:00
|
|
|
MessageBus.publish "/file-change", ["refresh"], user_ids: [user.id]
|
2014-04-28 13:46:28 -04:00
|
|
|
end
|
2013-04-11 16:04:20 -04:00
|
|
|
end
|