2009-10-02 02:22:47 -04:00
|
|
|
#!/usr/bin/env ruby
|
2010-10-13 16:20:18 -04:00
|
|
|
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'fog'))
|
2009-10-02 02:22:47 -04:00
|
|
|
require 'irb'
|
|
|
|
require 'yaml'
|
2010-09-03 04:11:45 -04:00
|
|
|
Fog.credential = ARGV.first ? ARGV.first.to_sym : nil
|
2010-10-04 17:03:22 -04:00
|
|
|
Fog.mock! if ENV['FOG_MOCK']
|
2011-05-04 16:12:52 -04:00
|
|
|
if Fog.credentials.empty?
|
|
|
|
Fog::Errors.missing_credentials
|
2010-02-06 18:42:38 -05:00
|
|
|
end
|
|
|
|
|
2011-01-07 18:41:51 -05:00
|
|
|
require 'fog/bin'
|
2010-02-15 20:15:56 -05:00
|
|
|
|
2011-05-24 20:31:05 -04:00
|
|
|
providers = Fog.available_providers
|
2010-10-19 16:00:27 -04:00
|
|
|
providers = if providers.length > 1
|
|
|
|
providers[0...-1].join(', ') << ' and ' << providers[-1]
|
|
|
|
else
|
|
|
|
providers.first
|
|
|
|
end
|
|
|
|
|
2010-03-27 21:06:32 -04:00
|
|
|
if ARGV.length > 1
|
2010-10-19 16:00:27 -04:00
|
|
|
|
|
|
|
puts(instance_eval(ARGV[1..-1].join(' ')).to_json)
|
|
|
|
|
2010-02-15 20:15:56 -05:00
|
|
|
else
|
2010-02-14 17:34:33 -05:00
|
|
|
|
2010-03-27 21:06:32 -04:00
|
|
|
ARGV.clear # Avoid passing args to IRB
|
|
|
|
IRB.setup(nil)
|
|
|
|
@irb = IRB::Irb.new(nil)
|
|
|
|
IRB.conf[:MAIN_CONTEXT] = @irb.context
|
|
|
|
IRB.conf[:PROMPT][:FOG] = IRB.conf[:PROMPT][:SIMPLE].dup
|
|
|
|
IRB.conf[:PROMPT][:FOG][:RETURN] = "%s\n"
|
|
|
|
@irb.context.prompt_mode = :FOG
|
|
|
|
@irb.context.workspace = IRB::WorkSpace.new(binding)
|
|
|
|
|
2010-09-17 14:47:06 -04:00
|
|
|
Formatador.display_line('Welcome to fog interactive!')
|
2010-12-15 18:32:33 -05:00
|
|
|
Formatador.display_line(":#{Fog.credential} provides #{providers}")
|
2010-09-21 14:11:15 -04:00
|
|
|
providers = Fog.providers
|
2010-03-27 21:06:32 -04:00
|
|
|
|
2011-06-15 17:26:43 -04:00
|
|
|
# FIXME: hacks until we can `include Fog` in bin
|
2011-06-15 20:32:15 -04:00
|
|
|
CDN = Fog::CDN
|
2011-06-16 19:28:54 -04:00
|
|
|
Compute = Fog::Compute
|
2011-06-15 20:25:01 -04:00
|
|
|
DNS = Fog::DNS
|
2011-06-15 17:26:43 -04:00
|
|
|
Storage = Fog::Storage
|
|
|
|
|
2010-03-27 21:06:32 -04:00
|
|
|
catch(:IRB_EXIT) { @irb.eval_input }
|
|
|
|
|
2010-05-01 23:46:52 -04:00
|
|
|
end
|