mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 21:54:48 +02:00
Merge pull request #1432 from internetee/add-audit-log-to-registrant-verifications
Add audit log to registrant verifications
This commit is contained in:
commit
6d876039c5
9 changed files with 377 additions and 199 deletions
|
@ -57,6 +57,7 @@ class Domain < ApplicationRecord
|
||||||
|
|
||||||
has_many :legal_documents, as: :documentable
|
has_many :legal_documents, as: :documentable
|
||||||
accepts_nested_attributes_for :legal_documents, reject_if: proc { |attrs| attrs[:body].blank? }
|
accepts_nested_attributes_for :legal_documents, reject_if: proc { |attrs| attrs[:body].blank? }
|
||||||
|
has_many :registrant_verifications, dependent: :destroy
|
||||||
|
|
||||||
after_initialize do
|
after_initialize do
|
||||||
self.pending_json = {} if pending_json.blank?
|
self.pending_json = {} if pending_json.blank?
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
# Used in Registrant portal to collect registrant verifications
|
# Used in Registrant portal to collect registrant verifications
|
||||||
# Registrant postgres user can access this table directly.
|
# Registrant postgres user can access this table directly.
|
||||||
class RegistrantVerification < ApplicationRecord
|
class RegistrantVerification < ApplicationRecord
|
||||||
|
has_paper_trail class_name: 'RegistrantVerificationVersion'
|
||||||
|
|
||||||
# actions
|
# actions
|
||||||
CONFIRMED = 'confirmed'
|
CONFIRMED = 'confirmed'
|
||||||
REJECTED = 'rejected'
|
REJECTED = 'rejected'
|
||||||
|
|
7
app/models/version/registrant_verification_version.rb
Normal file
7
app/models/version/registrant_verification_version.rb
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
class RegistrantVerificationVersion < PaperTrail::Version
|
||||||
|
include VersionSession
|
||||||
|
self.table_name = :log_registrant_verifications
|
||||||
|
self.sequence_name = :log_registrant_verifications_id_seq
|
||||||
|
|
||||||
|
scope :deleted, -> { where(event: 'destroy') }
|
||||||
|
end
|
|
@ -0,0 +1,24 @@
|
||||||
|
class AddJsonBasedVersionToRegistrantVerifications < ActiveRecord::Migration[5.0]
|
||||||
|
def change
|
||||||
|
name = 'registrant_verification'
|
||||||
|
table_name = "log_#{name.tableize}"
|
||||||
|
|
||||||
|
create_table table_name do |t|
|
||||||
|
t.string :item_type, null: false
|
||||||
|
t.integer :item_id, null: false
|
||||||
|
t.string :event, null: false
|
||||||
|
t.string :whodunnit
|
||||||
|
t.json :object
|
||||||
|
t.json :object_changes
|
||||||
|
t.datetime :created_at
|
||||||
|
t.string :session
|
||||||
|
end
|
||||||
|
add_index table_name, [:item_type, :item_id]
|
||||||
|
add_index table_name, :whodunnit
|
||||||
|
|
||||||
|
add_column name.tableize, :creator_id_tmp, :integer
|
||||||
|
add_column name.tableize, :updater_id_tmp, :integer
|
||||||
|
rename_column name.tableize, :creator_id_tmp, :creator_id
|
||||||
|
rename_column name.tableize, :updater_id_tmp, :updater_id
|
||||||
|
end
|
||||||
|
end
|
466
db/structure.sql
466
db/structure.sql
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,15 @@
|
||||||
|
namespace :data_migrations do
|
||||||
|
task delete_orphaned_registrant_verifications: :environment do
|
||||||
|
orphaned_registrant_verifications = RegistrantVerification.where.not(domain_id: Domain.ids)
|
||||||
|
orphaned_registrant_verification_count = orphaned_registrant_verifications.count
|
||||||
|
processed_registrant_verification_count = 0
|
||||||
|
|
||||||
|
orphaned_registrant_verifications.each do |registrant_verification|
|
||||||
|
registrant_verification.destroy!
|
||||||
|
processed_registrant_verification_count += 1
|
||||||
|
end
|
||||||
|
|
||||||
|
puts "Processed: #{processed_registrant_verification_count} out of" \
|
||||||
|
" #{orphaned_registrant_verification_count}"
|
||||||
|
end
|
||||||
|
end
|
6
test/fixtures/registrant_verifications.yml
vendored
Normal file
6
test/fixtures/registrant_verifications.yml
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
one:
|
||||||
|
action: confirmed
|
||||||
|
action_type: domain_delete
|
||||||
|
created_at: <%= Time.zone.parse('2010-07-05') %>
|
||||||
|
domain: shop
|
||||||
|
verification_token: 1234
|
12
test/models/registrant_verification_test.rb
Normal file
12
test/models/registrant_verification_test.rb
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
require 'test_helper'
|
||||||
|
|
||||||
|
class RegistrantVerificationTest < ActiveSupport::TestCase
|
||||||
|
def test_audit_log
|
||||||
|
registrant_verification = registrant_verifications(:one)
|
||||||
|
random_action = "random#{rand(100)}"
|
||||||
|
|
||||||
|
assert_difference -> { RegistrantVerificationVersion.count } do
|
||||||
|
registrant_verification.update_attributes!(action: random_action)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -0,0 +1,43 @@
|
||||||
|
require 'test_helper'
|
||||||
|
|
||||||
|
class ArchiveOrphanedRegistrantVerificationsTest < ActiveSupport::TestCase
|
||||||
|
def test_deletes_orphaned_registrant_verifications
|
||||||
|
create_orphaned_registrant_verification
|
||||||
|
|
||||||
|
assert_difference 'RegistrantVerification.count', -1 do
|
||||||
|
capture_io do
|
||||||
|
run_task
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_keeps_non_orphaned_registrant_verifications_intact
|
||||||
|
assert_no_difference 'RegistrantVerification.count' do
|
||||||
|
capture_io do
|
||||||
|
run_task
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_output
|
||||||
|
create_orphaned_registrant_verification
|
||||||
|
|
||||||
|
assert_output "Processed: 1 out of 1\n" do
|
||||||
|
run_task
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def create_orphaned_registrant_verification
|
||||||
|
non_existent_domain_id = 55
|
||||||
|
assert_not_includes Domain.ids, non_existent_domain_id
|
||||||
|
|
||||||
|
RegistrantVerification.connection.disable_referential_integrity do
|
||||||
|
registrant_verifications(:one).update_columns(domain_id: non_existent_domain_id)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def run_task
|
||||||
|
Rake::Task['data_migrations:delete_orphaned_registrant_verifications'].execute end
|
||||||
|
end
|
Loading…
Add table
Add a link
Reference in a new issue