2010-03-16 15:46:21 -07:00
|
|
|
require 'fog/collection'
|
|
|
|
require 'fog/aws/models/ec2/volume'
|
|
|
|
|
2009-08-14 09:19:40 -07:00
|
|
|
module Fog
|
|
|
|
module AWS
|
2010-03-16 15:46:21 -07:00
|
|
|
module EC2
|
2009-08-14 09:19:40 -07:00
|
|
|
|
2010-03-16 15:46:21 -07:00
|
|
|
class Mock
|
|
|
|
def volumes(attributes = {})
|
|
|
|
Fog::AWS::EC2::Volumes.new({
|
|
|
|
:connection => self
|
|
|
|
}.merge!(attributes))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Real
|
|
|
|
def volumes(attributes = {})
|
|
|
|
Fog::AWS::EC2::Volumes.new({
|
|
|
|
:connection => self
|
|
|
|
}.merge!(attributes))
|
|
|
|
end
|
2009-08-14 09:19:40 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
class Volumes < Fog::Collection
|
|
|
|
|
2009-09-23 21:23:54 -07:00
|
|
|
attribute :volume_id
|
2010-01-08 11:29:07 -08:00
|
|
|
attribute :server
|
2009-09-23 21:23:54 -07:00
|
|
|
|
2009-10-30 00:11:50 -07:00
|
|
|
model Fog::AWS::EC2::Volume
|
2009-10-29 23:35:28 -07:00
|
|
|
|
2009-09-27 21:31:15 -07:00
|
|
|
def initialize(attributes)
|
|
|
|
@volume_id ||= []
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2009-10-29 23:35:28 -07:00
|
|
|
def all(volume_id = @volume_id)
|
2010-01-04 22:03:24 -08:00
|
|
|
@volume_id = volume_id
|
2009-09-23 21:23:54 -07:00
|
|
|
data = connection.describe_volumes(volume_id).body
|
2010-03-06 20:02:10 -08:00
|
|
|
load(data['volumeSet'])
|
2010-01-08 11:29:07 -08:00
|
|
|
if server
|
2010-03-06 20:02:10 -08:00
|
|
|
self.replace(self.select {|volume| volume.server_id == server.id})
|
2009-10-06 18:55:39 -07:00
|
|
|
end
|
2010-03-08 17:56:55 -08:00
|
|
|
self
|
2009-08-14 09:19:40 -07:00
|
|
|
end
|
|
|
|
|
2009-09-23 21:23:54 -07:00
|
|
|
def get(volume_id)
|
2009-10-22 20:46:15 -07:00
|
|
|
if volume_id
|
|
|
|
all(volume_id).first
|
|
|
|
end
|
2009-11-08 12:16:52 -08:00
|
|
|
rescue Excon::Errors::BadRequest
|
2009-09-23 21:23:54 -07:00
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2009-08-14 09:19:40 -07:00
|
|
|
def new(attributes = {})
|
2010-01-08 11:29:07 -08:00
|
|
|
if server
|
|
|
|
super({ :server => server }.merge!(attributes))
|
2009-12-05 14:53:42 -08:00
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
2009-09-23 21:23:54 -07:00
|
|
|
end
|
|
|
|
|
2009-08-14 09:19:40 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|