discourse/app/models/user_history.rb

88 lines
2.9 KiB
Ruby
Raw Normal View History

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'
validates_presence_of :action
2013-09-10 21:21:16 -04:00
scope :only_staff_actions, ->{ where("action IN (?)", UserHistory.staff_action_ids) }
def self.actions
@actions ||= Enum.new( :delete_user,
:change_trust_level,
:change_site_setting,
:change_site_customization,
:delete_site_customization,
:checked_for_custom_avatar,
:notified_about_avatar)
end
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,
:change_site_customization,
:delete_site_customization]
end
def self.staff_action_ids
@staff_action_ids ||= staff_actions.map { |a| actions[a] }
end
def self.with_filters(filters)
query = self
2013-09-10 21:21:16 -04:00
if filters[:action_name] and action_id = UserHistory.actions[filters[:action_name].to_sym]
query = query.where('action = ?', action_id)
end
2013-09-10 21:21:16 -04:00
[:acting_user, :target_user].each do |key|
2013-08-09 16:58:57 -04:00
if filters[key] and obj_id = User.where(username_lower: filters[key].downcase).pluck(:id)
query = query.where("#{key.to_s}_id = ?", obj_id)
end
end
query = query.where("subject = ?", filters[:subject]) if filters[:subject]
query
end
def self.exists_for_user?(user, action_type)
self.where(target_user_id: user.id, action: UserHistory.actions[action_type]).exists?
end
def new_value_is_json?
2013-09-10 21:21:16 -04:00
[UserHistory.actions[:change_site_customization], UserHistory.actions[:delete_site_customization]].include?(action)
end
def previous_value_is_json?
new_value_is_json?
end
end
# == Schema Information
#
2013-07-23 17:58:26 -04:00
# Table name: staff_action_logs
#
# id :integer not null, primary key
# action :integer not null
2013-07-23 17:58:26 -04:00
# staff_user_id :integer not null
# target_user_id :integer
# details :text
# created_at :datetime not null
# updated_at :datetime not null
2013-08-13 16:09:27 -04:00
# context :string(255)
# ip_address :string(255)
# email :string(255)
2013-08-27 20:42:58 -04:00
# subject :text
# previous_value :text
# new_value :text
2013-08-13 16:09:27 -04:00
#
# Indexes
#
# index_staff_action_logs_on_action_and_id (action,id)
# index_staff_action_logs_on_staff_user_id_and_id (staff_user_id,id)
2013-08-27 20:42:58 -04:00
# index_staff_action_logs_on_subject_and_id (subject,id)
2013-08-13 16:09:27 -04:00
# index_staff_action_logs_on_target_user_id_and_id (target_user_id,id)
#