2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
class AuditEventService
|
|
|
|
def initialize(author, entity, details = {})
|
|
|
|
@author, @entity, @details = author, entity, details
|
|
|
|
end
|
|
|
|
|
|
|
|
def for_authentication
|
|
|
|
@details = {
|
|
|
|
with: @details[:with],
|
|
|
|
target_id: @author.id,
|
2016-08-24 12:49:21 +05:30
|
|
|
target_type: 'User',
|
2017-09-10 17:25:29 +05:30
|
|
|
target_details: @author.name
|
2015-09-11 14:41:01 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def security_event
|
2018-12-13 13:39:08 +05:30
|
|
|
log_security_event_to_file
|
|
|
|
log_security_event_to_database
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def base_payload
|
|
|
|
{
|
2015-09-11 14:41:01 +05:30
|
|
|
author_id: @author.id,
|
|
|
|
entity_id: @entity.id,
|
2018-12-13 13:39:08 +05:30
|
|
|
entity_type: @entity.class.name
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def file_logger
|
|
|
|
@file_logger ||= Gitlab::AuditJsonLogger.build
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_security_event_to_file
|
|
|
|
file_logger.info(base_payload.merge(@details))
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_security_event_to_database
|
|
|
|
SecurityEvent.create(base_payload.merge(details: @details))
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
|
|
|
end
|