2013-09-10 21:21:16 -04:00
|
|
|
# UserHistory stores information about actions that users have taken,
|
|
|
|
# like deleting users, changing site settings, dimissing notifications, etc.
|
|
|
|
# Use other classes, like StaffActionLogger, to log records to this table.
|
|
|
|
class UserHistory < ActiveRecord::Base
|
|
|
|
belongs_to :acting_user, class_name: 'User'
|
|
|
|
belongs_to :target_user, class_name: 'User'
|
2013-04-11 16:04:20 -04:00
|
|
|
|
2014-10-01 11:40:13 -04:00
|
|
|
belongs_to :post
|
|
|
|
belongs_to :topic
|
2015-09-17 03:51:32 -04:00
|
|
|
belongs_to :category
|
2014-10-01 11:40:13 -04:00
|
|
|
|
2013-04-11 16:04:20 -04:00
|
|
|
validates_presence_of :action
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
scope :only_staff_actions, -> { where("action IN (?)", UserHistory.staff_action_ids) }
|
2013-09-10 21:21:16 -04:00
|
|
|
|
2014-02-28 16:30:45 -05:00
|
|
|
before_save :set_admin_only
|
|
|
|
|
2013-04-11 16:04:20 -04:00
|
|
|
def self.actions
|
2016-01-08 05:53:52 -05:00
|
|
|
@actions ||= Enum.new(delete_user: 1,
|
|
|
|
change_trust_level: 2,
|
|
|
|
change_site_setting: 3,
|
2017-04-12 10:52:52 -04:00
|
|
|
change_theme: 4,
|
|
|
|
delete_theme: 5,
|
2016-01-08 05:53:52 -05:00
|
|
|
checked_for_custom_avatar: 6, # not used anymore
|
|
|
|
notified_about_avatar: 7,
|
|
|
|
notified_about_sequential_replies: 8,
|
|
|
|
notified_about_dominating_topic: 9,
|
|
|
|
suspend_user: 10,
|
|
|
|
unsuspend_user: 11,
|
|
|
|
facebook_no_email: 12,
|
|
|
|
grant_badge: 13,
|
|
|
|
revoke_badge: 14,
|
|
|
|
auto_trust_level_change: 15,
|
|
|
|
check_email: 16,
|
|
|
|
delete_post: 17,
|
|
|
|
delete_topic: 18,
|
|
|
|
impersonate: 19,
|
|
|
|
roll_up: 20,
|
|
|
|
change_username: 21,
|
|
|
|
custom: 22,
|
|
|
|
custom_staff: 23,
|
|
|
|
anonymize_user: 24,
|
|
|
|
reviewed_post: 25,
|
|
|
|
change_category_settings: 26,
|
|
|
|
delete_category: 27,
|
|
|
|
create_category: 28,
|
2016-01-14 15:05:11 -05:00
|
|
|
change_site_text: 29,
|
|
|
|
block_user: 30,
|
2016-01-27 04:38:16 -05:00
|
|
|
unblock_user: 31,
|
|
|
|
grant_admin: 32,
|
|
|
|
revoke_admin: 33,
|
|
|
|
grant_moderation: 34,
|
2016-02-27 12:38:24 -05:00
|
|
|
revoke_moderation: 35,
|
2017-01-16 13:53:31 -05:00
|
|
|
backup_create: 36,
|
2016-05-02 17:15:32 -04:00
|
|
|
rate_limited_like: 37, # not used anymore
|
2016-07-25 12:57:06 -04:00
|
|
|
revoke_email: 38,
|
|
|
|
deactivate_user: 39,
|
2017-01-10 16:45:36 -05:00
|
|
|
wizard_step: 40,
|
|
|
|
lock_trust_level: 41,
|
|
|
|
unlock_trust_level: 42,
|
2017-01-11 01:46:48 -05:00
|
|
|
activate_user: 43,
|
2017-01-16 13:53:31 -05:00
|
|
|
change_readonly_mode: 44,
|
|
|
|
backup_download: 45,
|
2017-02-03 16:59:05 -05:00
|
|
|
backup_destroy: 46,
|
2017-02-23 00:48:57 -05:00
|
|
|
notified_about_get_a_room: 47,
|
|
|
|
change_name: 48)
|
2013-04-11 16:04:20 -04:00
|
|
|
end
|
2013-08-09 10:06:02 -04:00
|
|
|
|
2013-09-10 21:21:16 -04:00
|
|
|
# Staff actions is a subset of all actions, used to audit actions taken by staff users.
|
|
|
|
def self.staff_actions
|
|
|
|
@staff_actions ||= [:delete_user,
|
|
|
|
:change_trust_level,
|
|
|
|
:change_site_setting,
|
2017-04-12 10:52:52 -04:00
|
|
|
:change_theme,
|
|
|
|
:delete_theme,
|
2015-12-18 08:31:04 -05:00
|
|
|
:change_site_text,
|
2013-11-07 13:53:32 -05:00
|
|
|
:suspend_user,
|
2014-03-19 15:30:12 -04:00
|
|
|
:unsuspend_user,
|
|
|
|
:grant_badge,
|
2014-09-29 16:31:05 -04:00
|
|
|
:revoke_badge,
|
2014-10-01 11:40:13 -04:00
|
|
|
:check_email,
|
|
|
|
:delete_post,
|
2014-11-06 04:58:47 -05:00
|
|
|
:delete_topic,
|
2014-11-24 13:48:54 -05:00
|
|
|
:impersonate,
|
2015-01-16 17:30:46 -05:00
|
|
|
:roll_up,
|
2015-02-05 14:34:57 -05:00
|
|
|
:change_username,
|
2015-03-06 16:44:54 -05:00
|
|
|
:custom_staff,
|
2015-04-15 15:29:37 -04:00
|
|
|
:anonymize_user,
|
2015-09-17 03:51:32 -04:00
|
|
|
:reviewed_post,
|
|
|
|
:change_category_settings,
|
|
|
|
:delete_category,
|
2016-01-14 15:05:11 -05:00
|
|
|
:create_category,
|
|
|
|
:block_user,
|
2016-01-27 04:38:16 -05:00
|
|
|
:unblock_user,
|
|
|
|
:grant_admin,
|
|
|
|
:revoke_admin,
|
|
|
|
:grant_moderation,
|
2016-02-27 12:38:24 -05:00
|
|
|
:revoke_moderation,
|
2017-01-16 13:53:31 -05:00
|
|
|
:backup_create,
|
2016-07-25 12:57:06 -04:00
|
|
|
:revoke_email,
|
2017-01-10 16:45:36 -05:00
|
|
|
:deactivate_user,
|
|
|
|
:lock_trust_level,
|
|
|
|
:unlock_trust_level,
|
2017-01-11 01:46:48 -05:00
|
|
|
:activate_user,
|
2017-01-16 13:53:31 -05:00
|
|
|
:change_readonly_mode,
|
|
|
|
:backup_download,
|
|
|
|
:backup_destroy]
|
2013-09-10 21:21:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.staff_action_ids
|
|
|
|
@staff_action_ids ||= staff_actions.map { |a| actions[a] }
|
|
|
|
end
|
|
|
|
|
2014-02-28 16:30:45 -05:00
|
|
|
def self.admin_only_action_ids
|
|
|
|
@admin_only_action_ids ||= [actions[:change_site_setting]]
|
|
|
|
end
|
|
|
|
|
2013-08-09 10:06:02 -04:00
|
|
|
def self.with_filters(filters)
|
|
|
|
query = self
|
2015-02-05 14:34:57 -05:00
|
|
|
query = query.where(action: filters[:action_id]) if filters[:action_id].present?
|
|
|
|
query = query.where(custom_type: filters[:custom_type]) if filters[:custom_type].present?
|
|
|
|
|
2013-09-10 21:21:16 -04:00
|
|
|
[:acting_user, :target_user].each do |key|
|
2017-07-27 21:20:09 -04:00
|
|
|
if filters[key] && (obj_id = User.where(username_lower: filters[key].downcase).pluck(:id))
|
2014-08-14 14:20:52 -04:00
|
|
|
query = query.where("#{key}_id = ?", obj_id)
|
2013-08-09 16:58:57 -04:00
|
|
|
end
|
|
|
|
end
|
2013-08-20 13:50:51 -04:00
|
|
|
query = query.where("subject = ?", filters[:subject]) if filters[:subject]
|
2013-08-09 10:06:02 -04:00
|
|
|
query
|
|
|
|
end
|
2013-08-21 10:49:35 -04:00
|
|
|
|
2013-11-01 10:47:03 -04:00
|
|
|
def self.for(user, action_type)
|
|
|
|
self.where(target_user_id: user.id, action: UserHistory.actions[action_type])
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def self.exists_for_user?(user, action_type, opts = nil)
|
2013-09-17 14:38:39 -04:00
|
|
|
opts = opts || {}
|
|
|
|
result = self.where(target_user_id: user.id, action: UserHistory.actions[action_type])
|
|
|
|
result = result.where(topic_id: opts[:topic_id]) if opts[:topic_id]
|
|
|
|
result.exists?
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
2015-02-05 14:34:57 -05:00
|
|
|
def self.staff_filters
|
|
|
|
[:action_id, :custom_type, :acting_user, :target_user, :subject]
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def self.staff_action_records(viewer, opts = nil)
|
2015-02-05 14:34:57 -05:00
|
|
|
opts ||= {}
|
|
|
|
query = self.with_filters(opts.slice(*staff_filters)).only_staff_actions.limit(200).order('id DESC').includes(:acting_user, :target_user)
|
2014-02-28 16:30:45 -05:00
|
|
|
query = query.where(admin_only: false) unless viewer && viewer.admin?
|
|
|
|
query
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_admin_only
|
|
|
|
self.admin_only = UserHistory.admin_only_action_ids.include?(self.action)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2013-08-21 10:49:35 -04:00
|
|
|
def new_value_is_json?
|
2017-04-12 10:52:52 -04:00
|
|
|
[UserHistory.actions[:change_theme], UserHistory.actions[:delete_theme]].include?(action)
|
2013-08-21 10:49:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def previous_value_is_json?
|
|
|
|
new_value_is_json?
|
|
|
|
end
|
2013-04-11 16:04:20 -04:00
|
|
|
end
|
2013-05-23 22:48:32 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
2013-10-03 23:28:49 -04:00
|
|
|
# Table name: user_histories
|
2013-05-23 22:48:32 -04:00
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# action :integer not null
|
2013-10-03 23:28:49 -04:00
|
|
|
# acting_user_id :integer
|
2013-05-23 22:48:32 -04:00
|
|
|
# target_user_id :integer
|
|
|
|
# details :text
|
2014-08-27 01:19:25 -04:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2016-02-22 18:33:53 -05:00
|
|
|
# context :string
|
|
|
|
# ip_address :string
|
|
|
|
# email :string
|
2013-08-27 20:42:58 -04:00
|
|
|
# subject :text
|
|
|
|
# previous_value :text
|
|
|
|
# new_value :text
|
2013-10-03 23:28:49 -04:00
|
|
|
# topic_id :integer
|
2014-03-20 00:35:51 -04:00
|
|
|
# admin_only :boolean default(FALSE)
|
2014-11-19 22:53:15 -05:00
|
|
|
# post_id :integer
|
2016-02-22 18:33:53 -05:00
|
|
|
# custom_type :string
|
2015-09-17 03:51:32 -04:00
|
|
|
# category_id :integer
|
2013-08-13 16:09:27 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2013-10-03 23:28:49 -04:00
|
|
|
# index_user_histories_on_acting_user_id_and_action_and_id (acting_user_id,action,id)
|
2014-05-27 21:49:50 -04:00
|
|
|
# index_user_histories_on_action_and_id (action,id)
|
2015-09-17 03:51:32 -04:00
|
|
|
# index_user_histories_on_category_id (category_id)
|
2014-05-27 21:49:50 -04:00
|
|
|
# index_user_histories_on_subject_and_id (subject,id)
|
|
|
|
# index_user_histories_on_target_user_id_and_id (target_user_id,id)
|
2013-05-23 22:48:32 -04:00
|
|
|
#
|