gitlab-org--gitlab-foss/app/models/audit_event.rb

60 lines
1.4 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class AuditEvent < ApplicationRecord
include CreatedAtFilterable
include IgnorableColumns
ignore_column :updated_at, remove_with: '13.3', remove_after: '2020-08-22'
serialize :details, Hash # rubocop:disable Cop/ActiveRecordSerialize
2015-07-03 11:54:50 +00:00
belongs_to :user, foreign_key: :author_id
validates :author_id, presence: true
validates :entity_id, presence: true
validates :entity_type, presence: true
scope :by_entity_type, -> (entity_type) { where(entity_type: entity_type) }
scope :by_entity_id, -> (entity_id) { where(entity_id: entity_id) }
scope :by_author_id, -> (author_id) { where(author_id: author_id) }
2015-07-03 11:54:50 +00:00
after_initialize :initialize_details
def self.order_by(method)
case method.to_s
when 'created_asc'
order(id: :asc)
else
order(id: :desc)
end
end
2015-07-03 11:54:50 +00:00
def initialize_details
self.details = {} if details.nil?
end
def author_name
lazy_author.name
2015-07-03 11:54:50 +00:00
end
def formatted_details
details.merge(details.slice(:from, :to).transform_values(&:to_s))
end
def lazy_author
BatchLoader.for(author_id).batch(default_value: default_author_value) do |author_ids, loader|
User.where(id: author_ids).find_each do |user|
loader.call(user.id, user)
end
end
end
private
def default_author_value
::Gitlab::Audit::NullAuthor.for(author_id, details[:author_name])
end
2015-07-03 11:54:50 +00:00
end
AuditEvent.prepend_if_ee('EE::AuditEvent')