Commit 95488b2a authored by Peter Leitzen's avatar Peter Leitzen

Merge branch '220325-target_details_refactor' into 'master'

Refactor target_details from AuditEvent details

See merge request gitlab-org/gitlab!36567
parents 2e00c0cb 36622a3e
...@@ -5,7 +5,7 @@ class AuditEvent < ApplicationRecord ...@@ -5,7 +5,7 @@ class AuditEvent < ApplicationRecord
include IgnorableColumns include IgnorableColumns
include BulkInsertSafe include BulkInsertSafe
PARALLEL_PERSISTENCE_COLUMNS = [:author_name, :entity_path].freeze PARALLEL_PERSISTENCE_COLUMNS = [:author_name, :entity_path, :target_details].freeze
ignore_column :updated_at, remove_with: '13.4', remove_after: '2020-09-22' ignore_column :updated_at, remove_with: '13.4', remove_after: '2020-09-22'
......
...@@ -5,8 +5,14 @@ module EE ...@@ -5,8 +5,14 @@ module EE
extend ActiveSupport::Concern extend ActiveSupport::Concern
extend ::Gitlab::Utils::Override extend ::Gitlab::Utils::Override
TEXT_LIMIT = {
target_details: 5_500
}.freeze
prepended do prepended do
scope :by_entity, -> (entity_type, entity_id) { by_entity_type(entity_type).by_entity_id(entity_id) } scope :by_entity, -> (entity_type, entity_id) { by_entity_type(entity_type).by_entity_id(entity_id) }
before_validation :truncate_target_details
end end
def entity def entity
...@@ -21,6 +27,10 @@ module EE ...@@ -21,6 +27,10 @@ module EE
AuditEventPresenter.new(self) AuditEventPresenter.new(self)
end end
def target_details
super || details[:target_details]
end
def lazy_entity def lazy_entity
BatchLoader.for(entity_id) BatchLoader.for(entity_id)
.batch( .batch(
...@@ -30,5 +40,11 @@ module EE ...@@ -30,5 +40,11 @@ module EE
model.where(id: ids).find_each { |record| loader.call(record.id, record) } model.where(id: ids).find_each { |record| loader.call(record.id, record) }
end end
end end
private
def truncate_target_details
self.target_details = self.details[:target_details] = target_details&.truncate(TEXT_LIMIT[:target_details])
end
end end
end end
...@@ -14,7 +14,7 @@ class AuditEventPresenter < Gitlab::View::Presenter::Simple ...@@ -14,7 +14,7 @@ class AuditEventPresenter < Gitlab::View::Presenter::Simple
end end
def target def target
details[:target_details] audit_event.target_details
end end
def ip_address def ip_address
......
...@@ -9,6 +9,7 @@ FactoryBot.define do ...@@ -9,6 +9,7 @@ FactoryBot.define do
entity_type { 'User' } entity_type { 'User' }
entity_id { target_user.id } entity_id { target_user.id }
entity_path { target_user.full_path } entity_path { target_user.full_path }
target_details { target_user.name }
ip_address { IPAddr.new '127.0.0.1' } ip_address { IPAddr.new '127.0.0.1' }
author_name { 'Jane Doe' } author_name { 'Jane Doe' }
details do details do
...@@ -31,6 +32,7 @@ FactoryBot.define do ...@@ -31,6 +32,7 @@ FactoryBot.define do
entity_type { 'Project' } entity_type { 'Project' }
entity_id { target_project.id } entity_id { target_project.id }
entity_path { target_project.full_path } entity_path { target_project.full_path }
target_details { target_project.name }
ip_address { IPAddr.new '127.0.0.1' } ip_address { IPAddr.new '127.0.0.1' }
details do details do
{ {
...@@ -53,6 +55,7 @@ FactoryBot.define do ...@@ -53,6 +55,7 @@ FactoryBot.define do
entity_type { 'Group' } entity_type { 'Group' }
entity_id { target_group.id } entity_id { target_group.id }
entity_path { target_group.full_path } entity_path { target_group.full_path }
target_details { target_group.name }
ip_address { IPAddr.new '127.0.0.1' } ip_address { IPAddr.new '127.0.0.1' }
details do details do
{ {
......
...@@ -14,8 +14,11 @@ RSpec.describe AuditEvent, type: :model do ...@@ -14,8 +14,11 @@ RSpec.describe AuditEvent, type: :model do
end end
describe 'callbacks' do describe 'callbacks' do
let_it_be(:details) { { author_name: 'Kungfu Panda', entity_path: 'gitlab-org/gitlab' } } context 'parallel_persist' do
let_it_be(:event) { create(:project_audit_event, details: details) } let_it_be(:details) do
{ author_name: 'Kungfu Panda', entity_path: 'gitlab-org/gitlab', target_details: 'Project X' }
end
let_it_be(:event) { create(:project_audit_event, details: details, target_details: nil) }
it 'sets author_name' do it 'sets author_name' do
expect(event[:author_name]).to eq('Kungfu Panda') expect(event[:author_name]).to eq('Kungfu Panda')
...@@ -24,6 +27,38 @@ RSpec.describe AuditEvent, type: :model do ...@@ -24,6 +27,38 @@ RSpec.describe AuditEvent, type: :model do
it 'sets entity_path' do it 'sets entity_path' do
expect(event[:entity_path]).to eq('gitlab-org/gitlab') expect(event[:entity_path]).to eq('gitlab-org/gitlab')
end end
it 'sets target_details' do
expect(event[:target_details]).to eq('Project X')
end
end
describe '#truncate_target_details' do
where(:database_column, :details_value, :expected_value) do
text_limit = described_class::TEXT_LIMIT[:target_details]
long_value = 'a' * (text_limit + 1)
truncated_long_value = long_value.truncate(text_limit)
short_value = 'a' * text_limit
[
[nil, nil, nil],
[long_value, nil, truncated_long_value],
[short_value, nil, short_value],
[nil, long_value, truncated_long_value],
[nil, short_value, short_value],
[long_value, 'something', truncated_long_value]
]
end
with_them do
let(:audit_event) { create(:audit_event, target_details: database_column, details: { target_details: details_value }) }
it 'expects both values to be the same and correct' do
expect(audit_event.target_details).to eq(expected_value)
expect(audit_event.details[:target_details]).to eq(expected_value)
end
end
end
end end
describe '.by_entity' do describe '.by_entity' do
......
...@@ -110,8 +110,10 @@ RSpec.describe AuditEventPresenter do ...@@ -110,8 +110,10 @@ RSpec.describe AuditEventPresenter do
end end
end end
it 'exposes the target' do describe '#target' do
expect(presenter.target).to eq(details[:target_details]) it 'delegates to the model object' do
expect(presenter.target).to equal(audit_event.target_details)
end
end end
context 'exposes the ip address' do context 'exposes the ip address' do
......
...@@ -10,6 +10,7 @@ RSpec.describe EE::AuditEvents::CustomAuditEventService do ...@@ -10,6 +10,7 @@ RSpec.describe EE::AuditEvents::CustomAuditEventService do
let(:entity) { create(:project) } let(:entity) { create(:project) }
let(:entity_type) { 'Project' } let(:entity_type) { 'Project' }
let(:custom_message) { 'Custom Event' } let(:custom_message) { 'Custom Event' }
let(:target_details) { nil }
let(:service) { described_class.new(user, entity, ip_address, custom_message) } let(:service) { described_class.new(user, entity, ip_address, custom_message) }
end end
end end
......
...@@ -7,6 +7,7 @@ RSpec.describe EE::AuditEvents::ImpersonationAuditEventService do ...@@ -7,6 +7,7 @@ RSpec.describe EE::AuditEvents::ImpersonationAuditEventService do
let(:ip_address) { '127.0.0.1' } let(:ip_address) { '127.0.0.1' }
let(:message) { 'Impersonation Started' } let(:message) { 'Impersonation Started' }
let(:logger) { instance_double(Gitlab::AuditJsonLogger) } let(:logger) { instance_double(Gitlab::AuditJsonLogger) }
let(:target_details) { nil }
let(:service) { described_class.new(impersonator, ip_address, message) } let(:service) { described_class.new(impersonator, ip_address, message) }
describe '#security_event' do describe '#security_event' do
...@@ -29,7 +30,8 @@ RSpec.describe EE::AuditEvents::ImpersonationAuditEventService do ...@@ -29,7 +30,8 @@ RSpec.describe EE::AuditEvents::ImpersonationAuditEventService do
expect(security_event.details).to eq(custom_message: message, expect(security_event.details).to eq(custom_message: message,
ip_address: ip_address, ip_address: ip_address,
action: :custom) action: :custom,
target_details: target_details)
expect(security_event.author_id).to eq(impersonator.id) expect(security_event.author_id).to eq(impersonator.id)
expect(security_event.entity_id).to eq(impersonator.id) expect(security_event.entity_id).to eq(impersonator.id)
expect(security_event.entity_type).to eq('User') expect(security_event.entity_type).to eq('User')
......
...@@ -10,6 +10,7 @@ RSpec.describe EE::AuditEvents::RepositoryDownloadStartedAuditEventService do ...@@ -10,6 +10,7 @@ RSpec.describe EE::AuditEvents::RepositoryDownloadStartedAuditEventService do
let(:entity) { create(:project) } let(:entity) { create(:project) }
let(:entity_type) { 'Project' } let(:entity_type) { 'Project' }
let(:custom_message) { 'Repository Download Started' } let(:custom_message) { 'Repository Download Started' }
let(:target_details) { nil }
let(:service) { described_class.new(user, entity, ip_address) } let(:service) { described_class.new(user, entity, ip_address) }
end end
end end
......
...@@ -62,6 +62,7 @@ RSpec.shared_examples 'logs the custom audit event' do ...@@ -62,6 +62,7 @@ RSpec.shared_examples 'logs the custom audit event' do
expect(security_event.details).to eq(custom_message: custom_message, expect(security_event.details).to eq(custom_message: custom_message,
ip_address: ip_address, ip_address: ip_address,
target_details: target_details,
action: :custom) action: :custom)
expect(security_event.author_id).to eq(user.id) expect(security_event.author_id).to eq(user.id)
expect(security_event.entity_id).to eq(entity.id) expect(security_event.entity_id).to eq(entity.id)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment