Class: Db
- Inherits:
-
Object
- Object
- Db
- Defined in:
- lib/service/db.rb,
lib/domain/tag/db.rb,
lib/domain/site/db.rb,
lib/domain/asset/db.rb,
lib/domain/report/db.rb,
lib/domain/country/db.rb,
lib/domain/project/db.rb,
lib/domain/software/db.rb,
lib/domain/site_target/db.rb,
lib/domain/vulnerability/db.rb,
lib/domain/operating_system/db.rb,
lib/domain/shared_credential/db.rb
Instance Attribute Summary collapse
-
#connection ⇒ Object
readonly
Returns the value of attribute connection.
-
#db ⇒ Object
readonly
Returns the value of attribute db.
-
#host ⇒ Object
readonly
Returns the value of attribute host.
-
#port ⇒ Object
readonly
Returns the value of attribute port.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Instance Method Summary collapse
- #all(model_class) ⇒ Object
- #bulk_copy(models = []) ⇒ Object
- #bulk_copy_csv(table_name:, columns: [], data: []) ⇒ Object
- #bulk_upsert(models = []) ⇒ Object
- #countries ⇒ Object
- #fetch_cmdb_assets ⇒ Object
- #fetch_cmdb_discovery_sites ⇒ Object
- #fetch_cmdb_vulnerability_sites ⇒ Object
- #fetch_country_discovery_sites_from_db ⇒ Object
- #fetch_cyberark_shared_credentials(_country_code) ⇒ Object
- #fetch_out_of_vm_scope_asset_ids ⇒ Object
- #fetch_shared_credentials ⇒ Object
- #fetch_utr_site_from_cmdb ⇒ Object
- #fetch_view(view, &block) ⇒ Object
- #find_by(model_class, attribute, value) ⇒ Object
- #grant_existing_view_access(user, role, schema) ⇒ Object
- #grant_future_view_access(user, role, schema) ⇒ Object
- #grant_view_access(user, role, schema = 'public') ⇒ Object
-
#initialize(host:, db:, user:, port:) ⇒ Db
constructor
A new instance of Db.
- #operating_system_found_on_assets ⇒ Object
- #product_in_cmdb_eos ⇒ Object
- #save_cisa_kev(vulnerability) ⇒ Object
- #save_country_discovery_site(site) ⇒ Object
- #save_country_discovery_site_targets(site_targets = []) ⇒ Object
- #save_microsoft_product_lifecycle(models) ⇒ Object
- #save_project_report_details(details = []) ⇒ Object
- #save_project_report_findings(details = []) ⇒ Object
- #save_vulnerability_with_second_step(vulns) ⇒ Object
- #select(model_class, view_name) ⇒ Object
- #software_database ⇒ Object
- #software_found_on_assets ⇒ Object
- #softwares(type) ⇒ Object
- #upsert(model) ⇒ Object
- #upsert_without_primary_key(model) ⇒ Object
Constructor Details
#initialize(host:, db:, user:, port:) ⇒ Db
Returns a new instance of Db.
11 12 13 14 15 16 17 |
# File 'lib/service/db.rb', line 11 def initialize(host:, db:, user:, port:) @host = host @db = db @user = user @port = port @connection = PG.connect(host:, dbname: db, port:, user:) end |
Instance Attribute Details
#connection ⇒ Object (readonly)
Returns the value of attribute connection.
9 10 11 |
# File 'lib/service/db.rb', line 9 def connection @connection end |
#db ⇒ Object (readonly)
Returns the value of attribute db.
9 10 11 |
# File 'lib/service/db.rb', line 9 def db @db end |
#host ⇒ Object (readonly)
Returns the value of attribute host.
9 10 11 |
# File 'lib/service/db.rb', line 9 def host @host end |
#port ⇒ Object (readonly)
Returns the value of attribute port.
9 10 11 |
# File 'lib/service/db.rb', line 9 def port @port end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
9 10 11 |
# File 'lib/service/db.rb', line 9 def user @user end |
Instance Method Details
#all(model_class) ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/service/db.rb', line 19 def all(model_class) sql = "SELECT * FROM #{model_class.table_name}" result = @connection.exec(sql) result.map do |row| model_class.new(row) end end |
#bulk_copy(models = []) ⇒ Object
84 85 86 87 88 89 90 91 92 |
# File 'lib/service/db.rb', line 84 def bulk_copy(models = []) return if models.empty? model = models.first table_name = model.class.table_name columns = model.class.columns data = models.map(&:to_csv) bulk_copy_csv(table_name:, columns:, data:) end |
#bulk_copy_csv(table_name:, columns: [], data: []) ⇒ Object
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/service/db.rb', line 94 def bulk_copy_csv(table_name:, columns: [], data: []) column_names = columns.empty? ? '' : "( #{columns.join(',')})" = ProgressBar.create( title: "Copy to #{table_name}", total: data.length, format: '%a %B %p%% %t' ) @connection.copy_data("COPY #{table_name} #{column_names} from STDIN with (FORMAT csv)") do data.each do |row| sanitized_row = row.map { |cell| escape_csv_value(cell) } connection.put_copy_data(sanitized_row.join(',') + "\n") .increment end end end |
#bulk_upsert(models = []) ⇒ Object
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/service/db.rb', line 162 def bulk_upsert(models = []) return if models.empty? model_class = models.first.class table_name = model_class.table_name columns = model_class.columns column_names = columns.join(', ') placeholders = columns.map.with_index(1) { |_, i| "$#{i}" }.join(', ') conflict_target = model_class.primary_key.join(', ') update_assignments = columns.map do |column| "#{column} = EXCLUDED.#{column}" end.join(', ') sql = <<-SQL INSERT INTO #{table_name} (#{column_names}) VALUES (#{placeholders}) ON CONFLICT (#{conflict_target}) DO UPDATE SET #{update_assignments}; SQL = ProgressBar.create( title: "Upserting to #{table_name}", total: models.length, format: '%a %B %p%% %t' ) @connection.prepare('bulk_upsert_statement', sql) @connection.transaction do models.each do |model| @connection.exec_prepared('bulk_upsert_statement', model.to_csv) .increment end end rescue PG::Error => e puts "An error occurred: #{e.}" ensure @connection.exec('DEALLOCATE bulk_upsert_statement') end |
#countries ⇒ Object
10 11 12 |
# File 'lib/domain/country/db.rb', line 10 def countries @countries ||= fetch_all_countries end |
#fetch_cmdb_assets ⇒ Object
6 7 8 9 10 |
# File 'lib/domain/tag/db.rb', line 6 def fetch_cmdb_assets fetch_view('utr_asset_view') do |row| CmdbAsset.from_csv(row) end end |
#fetch_cmdb_discovery_sites ⇒ Object
8 9 10 11 12 |
# File 'lib/domain/site/db.rb', line 8 def fetch_cmdb_discovery_sites fetch_view(CmdbDiscoverySite.view) do |row| yield CmdbDiscoverySite.from_csv(row) end end |
#fetch_cmdb_vulnerability_sites ⇒ Object
14 15 16 17 18 |
# File 'lib/domain/site/db.rb', line 14 def fetch_cmdb_vulnerability_sites fetch_view(CmdbVulnerabilitySite.view) do |row| yield CmdbVulnerabilitySite.from_csv(row) end end |
#fetch_country_discovery_sites_from_db ⇒ Object
20 21 22 23 24 |
# File 'lib/domain/site/db.rb', line 20 def fetch_country_discovery_sites_from_db fetch_view(CountryDiscoverySite.view) do |row| yield CountryDiscoverySite.from_csv(row) end end |
#fetch_cyberark_shared_credentials(_country_code) ⇒ Object
25 26 27 28 29 |
# File 'lib/domain/site_target/db.rb', line 25 def fetch_cyberark_shared_credentials(_country_code) credentials = fetch_shared_credentials credentials.select do |credential| end end |
#fetch_out_of_vm_scope_asset_ids ⇒ Object
12 13 14 15 16 17 18 |
# File 'lib/domain/asset/db.rb', line 12 def fetch_out_of_vm_scope_asset_ids ids = [] fetch_view('asset_out_of_vm_scope_view') do |row| ids << row[:id].to_i end ids end |
#fetch_shared_credentials ⇒ Object
7 8 9 10 11 |
# File 'lib/domain/site_target/db.rb', line 7 def fetch_shared_credentials fetch_view('country_view') do |row| Country.from_csv(row) end end |
#fetch_utr_site_from_cmdb ⇒ Object
7 8 9 10 11 |
# File 'lib/domain/report/db.rb', line 7 def fetch_utr_site_from_cmdb fetch_view('utr_site_view') do |row| CmdbDiscoverySite.from_csv(row) end end |
#fetch_view(view, &block) ⇒ Object
154 155 156 157 158 159 160 |
# File 'lib/service/db.rb', line 154 def fetch_view(view, &block) ENV['PGPASSFILE'] = '/Users/ckyony/.pgpass' command = "psql -d #{db} -U #{user} -h '#{host}' -p #{port} -c \"\\copy (SELECT * FROM #{view}) to STDOUT with CSV HEADER;\"" result = `#{command}` rows = CSV.new(result, headers: true, header_converters: :symbol) rows.map(&block) end |
#find_by(model_class, attribute, value) ⇒ Object
35 36 37 38 39 40 41 42 43 44 |
# File 'lib/service/db.rb', line 35 def find_by(model_class, attribute, value) sql = "SELECT * FROM #{model_class.table_name} WHERE #{attribute} = $1" result = @connection.exec_params(sql, [value]) result.map do |row| model_class.new(row) end return nil if result.ntuples.zero? model_class.new(result.first.symbolize_keys) end |
#grant_existing_view_access(user, role, schema) ⇒ Object
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/service/db.rb', line 53 def grant_existing_view_access(user, role, schema) query = <<-SQL DO $$ DECLARE r RECORD; BEGIN FOR r IN (SELECT table_schema, table_name FROM information_schema.views v JOIN pg_views pv ON v.table_schema = pv.schemaname AND v.table_name = pv.viewname WHERE table_schema = '#{schema}' AND pv.viewowner = '#{role}' ) LOOP EXECUTE 'GRANT SELECT ON ' || quote_ident(r.table_schema) || '.' || quote_ident(r.table_name) || ' TO ' || '#{user}'; END LOOP; END $$ LANGUAGE plpgsql; SQL puts "query #{query}" @connection.exec(query) end |
#grant_future_view_access(user, role, schema) ⇒ Object
77 78 79 80 81 82 |
# File 'lib/service/db.rb', line 77 def grant_future_view_access(user, role, schema) query = <<-SQL ALTER DEFAULT PRIVILEGES FOR ROLE #{role} IN SCHEMA #{schema} GRANT SELECT ON TABLES TO #{user}; SQL @connection.exec(query) end |
#grant_view_access(user, role, schema = 'public') ⇒ Object
46 47 48 49 50 51 |
# File 'lib/service/db.rb', line 46 def grant_view_access(user, role, schema = 'public') puts "user, role,schema #{[user, role, schema]}" grant_existing_view_access(user, role, schema) grant_future_view_access(user, role, schema) @connection.close end |
#operating_system_found_on_assets ⇒ Object
8 9 10 |
# File 'lib/domain/operating_system/db.rb', line 8 def select(OperatingSystem, 'operating_system_view') end |
#product_in_cmdb_eos ⇒ Object
23 24 25 |
# File 'lib/domain/software/db.rb', line 23 def product_in_cmdb_eos all(CmdbEos) end |
#save_cisa_kev(vulnerability) ⇒ Object
7 8 9 |
# File 'lib/domain/vulnerability/db.rb', line 7 def save_cisa_kev(vulnerability) upsert(vulnerability) end |
#save_country_discovery_site(site) ⇒ Object
26 27 28 |
# File 'lib/domain/site/db.rb', line 26 def save_country_discovery_site(site) upsert(site) end |
#save_country_discovery_site_targets(site_targets = []) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/domain/site_target/db.rb', line 13 def save_country_discovery_site_targets(site_targets = []) site_targets.each do |target| next if target.type == 'host' discovery_site_target = DiscoverySiteTarget.new( site_id: target.site_id, subnet: target.target ) upsert(discovery_site_target) end end |
#save_microsoft_product_lifecycle(models) ⇒ Object
27 28 29 |
# File 'lib/domain/software/db.rb', line 27 def save_microsoft_product_lifecycle(models) bulk_copy(models) end |
#save_project_report_details(details = []) ⇒ Object
6 7 8 |
# File 'lib/domain/project/db.rb', line 6 def save_project_report_details(details = []) bulk_copy(details) end |
#save_project_report_findings(details = []) ⇒ Object
10 11 12 |
# File 'lib/domain/project/db.rb', line 10 def save_project_report_findings(details = []) bulk_upsert(details) end |
#save_vulnerability_with_second_step(vulns) ⇒ Object
11 12 13 14 15 16 |
# File 'lib/domain/vulnerability/db.rb', line 11 def save_vulnerability_with_second_step(vulns) vulns.each do |vuln| p vuln upsert(vuln) end end |
#select(model_class, view_name) ⇒ Object
27 28 29 30 31 32 33 |
# File 'lib/service/db.rb', line 27 def select(model_class, view_name) sql = "SELECT * FROM #{view_name}" result = @connection.exec(sql) result.map do |row| model_class.new(row) end end |
#software_database ⇒ Object
21 |
# File 'lib/domain/software/db.rb', line 21 def software_database; end |
#software_found_on_assets ⇒ Object
8 9 10 |
# File 'lib/domain/software/db.rb', line 8 def software_found_on_assets select(Software, 'software_view') end |
#softwares(type) ⇒ Object
12 13 14 15 16 17 18 19 |
# File 'lib/domain/software/db.rb', line 12 def softwares(type) list = select(Software, 'software_view') return list if type == 'all' return list.select(&:db?) if type == 'db' list.reject(&:db?) end |
#upsert(model) ⇒ Object
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
# File 'lib/service/db.rb', line 110 def upsert(model) table_name = model.class.table_name columns = model.class.columns column_names = columns.join(', ') placeholders = columns.map.with_index(1) { |_, i| "$#{i}" }.join(', ') conflict_target = model.class.primary_key.join(', ') # Unique identifier assumption # puts "---- conflict_target: #{conflict_target}" # puts "---- table_name: #{table_name}" # puts "---- model.class: #{model.class}" # puts "---- model.class.primary_key: #{model.class.primary_key}" update_assignments = columns.map do |column| "#{column} = EXCLUDED.#{column}" end.join(', ') sql = <<-SQL INSERT INTO #{table_name} (#{column_names}) VALUES (#{placeholders}) ON CONFLICT (#{conflict_target}) DO UPDATE SET #{update_assignments}; SQL @connection.exec_params(sql, model.to_csv) rescue PG::Error => e puts "An error occurred: #{e.}" end |
#upsert_without_primary_key(model) ⇒ Object
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/service/db.rb', line 138 def upsert_without_primary_key(model) table_name = model.class.table_name columns = model.class.columns column_names = columns.join(', ') placeholders = columns.map.with_index(1) { |_, i| "$#{i}" }.join(', ') sql = <<-SQL INSERT INTO #{table_name} (#{column_names}) VALUES (#{placeholders}) SQL @connection.exec_params(sql, model.to_csv) rescue PG::Error => e puts "An error occurred: #{e.}" end |