1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
require 'fog/openstack/models/collection'
require 'fog/openstack/identity/v2/models/ec2_credential'
module Fog
module OpenStack
class Identity
class V2
class Ec2Credentials < Fog::OpenStack::Collection
model Fog::OpenStack::Identity::V2::Ec2Credential
attribute :user
def all(options = {})
user_id = user ? user.id : nil
options[:user_id] = user_id
ec2_credentials = service.list_ec2_credentials(options)
load_response(ec2_credentials, 'credentials')
end
def create(attributes = {})
if user
attributes[:user_id] ||= user.id
attributes[:tenant_id] ||= user.tenant_id
end
super attributes
end
def destroy(access_key)
ec2_credential = find_by_access_key(access_key)
ec2_credential.destroy
end
def find_by_access_key(access_key)
user_id = user ? user.id : nil
ec2_credential =
find { |ec2_cred| ec2_cred.access == access_key }
unless ec2_credential
response = service.get_ec2_credential(user_id, access_key)
body = response.body['credential']
body = body.merge 'service' => service
ec2_credential = Fog::OpenStack::Identity::V2::EC2Credential.new(body)
end
ec2_credential
end
end
end
end
end
end
|