vpcs.rb 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # frozen_string_literal: true
  2. require 'neoinfra'
  3. require 'vpc'
  4. require 'accounts'
  5. require 'fog-aws'
  6. require 'neo4j'
  7. # NeoInfra Account information
  8. module NeoInfra
  9. # Provide informations about the accounts available
  10. class Vpcs
  11. def non_default_vpc_count
  12. p Vpc.all
  13. 21
  14. end
  15. def default_vpc_count
  16. 22
  17. end
  18. def load
  19. aws = NeoInfra::Aws.new
  20. @cfg = NeoInfra::Config.new
  21. neo4j_url = "http://#{@cfg.neo4j[:host]}:#{@cfg.neo4j[:port]}"
  22. Neo4j::Session.open(:server_db, neo4j_url)
  23. @cfg.accounts.each do |account|
  24. base_conf = {
  25. provider: 'AWS',
  26. aws_access_key_id: account[:key],
  27. aws_secret_access_key: account[:secret]
  28. }
  29. aws.regions.each do |region|
  30. region_conf = { region: region }
  31. new_conn = Fog::Compute.new(region_conf.merge(base_conf))
  32. # Get VPCs
  33. new_conn.vpcs.all.each do |vpc|
  34. next unless Vpc.where(vpc_id: vpc.id).empty?
  35. vpc_name = if vpc.tags.empty?
  36. vpc.id
  37. elsif vpc.tags.has_key? 'Name'
  38. vpc.tags['Name']
  39. else
  40. vpc.id
  41. end
  42. vpc_id = Vpc.new(
  43. vpc_id: vpc.id,
  44. name: vpc_name,
  45. cidr: vpc.cidr_block,
  46. state: vpc.state,
  47. default: vpc.is_default.to_s
  48. )
  49. vpc_id.save
  50. AccountVpc.create(from_node: vpc_id, to_node: AwsAccount.where(name: account[:name]).first)
  51. VpcRegion.create(from_node: vpc_id, to_node: Region.where(region: region).first)
  52. end
  53. # Get all Subnets
  54. new_conn.subnets.all.each do |subnet|
  55. next unless Subnet.where(subnet_id: subnet.subnet_id).empty?
  56. subnet_name = if subnet.tag_set.empty?
  57. subnet.subnet_id
  58. elsif subnet.tag_set.key? 'Name'
  59. subnet.tag_set['Name']
  60. else
  61. subnet.subnet_id
  62. end
  63. sn = Subnet.new(
  64. subnet_id: subnet.subnet_id,
  65. cidr: subnet.cidr_block,
  66. name: subnet_name,
  67. ip_count: subnet.available_ip_address_count,
  68. state: subnet.state
  69. )
  70. sn.save
  71. VpcSubnet.create(from_node: sn, to_node: Vpc.where(vpc_id: subnet.vpc_id).first)
  72. SubnetAz.create(from_node: sn, to_node: Az.where(az: subnet.availability_zone).first)
  73. end
  74. end
  75. end
  76. end
  77. end
  78. end