aws.rb 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # frozen_string_literal: true
  2. require 'accounts'
  3. require 'regions'
  4. require 'mime-types'
  5. require 'fog-aws'
  6. require 's3'
  7. require 'neo4j'
  8. require 'neoinfra/config'
  9. require 'neoinfra/cloudwatch'
  10. # NeoInfra Account information
  11. module NeoInfra
  12. # Provide informations about the accounts available
  13. class Aws
  14. def regions
  15. @cfg = NeoInfra::Config.new
  16. account = @cfg.accounts.first
  17. base_conf = {
  18. provider: 'AWS',
  19. aws_access_key_id: account[:key],
  20. aws_secret_access_key: account[:secret]
  21. }
  22. conn = Fog::Compute.new(base_conf)
  23. conn.describe_regions.data[:body]['regionInfo'].collect { |x| x['regionName'] }
  24. end
  25. def region_count
  26. Region.all.length
  27. end
  28. def az_count
  29. Az.all.length
  30. end
  31. def azs(region)
  32. @cfg = NeoInfra::Config.new
  33. account = @cfg.accounts.first
  34. base_conf = {
  35. provider: 'AWS',
  36. aws_access_key_id: account[:key],
  37. aws_secret_access_key: account[:secret],
  38. region: region
  39. }
  40. conn = Fog::Compute.new(base_conf)
  41. conn.describe_availability_zones.data[:body]['availabilityZoneInfo'].collect { |x| x['zoneName'] }
  42. end
  43. def load_regions
  44. @cfg = NeoInfra::Config.new
  45. neo4j_url = "http://#{@cfg.neo4j[:host]}:#{@cfg.neo4j[:port]}"
  46. Neo4j::Session.open(:server_db, neo4j_url)
  47. regions.each do |region|
  48. next unless Region.where(region: region).empty?
  49. r = Region.new(
  50. region: region
  51. )
  52. r.save
  53. azs(region).each do |az|
  54. next unless Az.where(az: az).empty?
  55. a = Az.new(az: az)
  56. a.save
  57. AzRegion.create(from_node: a, to_node: Region.where(region: region).first)
  58. end
  59. end
  60. end
  61. def load_buckets
  62. @cfg = NeoInfra::Config.new
  63. cw = NeoInfra::Cloudwatch.new
  64. neo4j_url = "http://#{@cfg.neo4j[:host]}:#{@cfg.neo4j[:port]}"
  65. Neo4j::Session.open(:server_db, neo4j_url)
  66. @cfg.accounts.each do |account|
  67. base_conf = {
  68. provider: 'AWS',
  69. aws_access_key_id: account[:key],
  70. aws_secret_access_key: account[:secret]
  71. }
  72. s = Fog::Storage.new(base_conf)
  73. s.directories.each do |bucket|
  74. next unless Bucket.where(name: bucket.key).empty?
  75. b = Bucket.new(
  76. name: bucket.key,
  77. size: cw.get_bucket_size(account[:key], account[:secret], bucket.location, bucket.key)
  78. )
  79. b.save
  80. BucketRegion.create(from_node: b, to_node: Region.where(region: bucket.location).first)
  81. BucketAccount.create(from_node: b, to_node: AwsAccount.where(name: account[:name]).first)
  82. end
  83. end
  84. end
  85. end
  86. end