1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/linode/models/compute/stack_scripts.rb

33 lines
821 B
Ruby
Raw Normal View History

2011-03-01 16:37:27 -05:00
require 'fog/core/collection'
require 'fog/linode/models/compute/stack_script'
2011-03-01 16:37:27 -05:00
module Fog
module Compute
class Linode
2011-03-01 16:37:27 -05:00
class StackScripts < Fog::Collection
model Fog::Compute::Linode::StackScript
2011-03-01 16:37:27 -05:00
def all
load stackscripts
end
def get(id)
new stackscripts(id).first
rescue Fog::Compute::Linode::NotFound
2011-03-01 16:37:27 -05:00
nil
end
private
def stackscripts(id=nil)
connection.stackscript_list(id).body['DATA'].map { |script| map_stackscript script }
end
def map_stackscript(script)
script = script.each_with_object({}) { |(k, v), h| h[k.downcase.to_sym] = v }
script.merge! :id => script[:stackscriptid], :name => script[:label]
end
end
end
end
end