2009-10-02 02:22:47 -04:00
|
|
|
#!/usr/bin/env ruby
|
2013-06-25 20:11:28 -04:00
|
|
|
|
2010-10-13 16:20:18 -04:00
|
|
|
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'fog'))
|
2013-06-25 20:11:28 -04:00
|
|
|
require 'optparse'
|
2009-10-02 02:22:47 -04:00
|
|
|
require 'irb'
|
|
|
|
require 'yaml'
|
2013-06-25 20:11:28 -04:00
|
|
|
|
|
|
|
options = OptionParser.new do |opts|
|
2013-06-26 22:32:35 -04:00
|
|
|
opts.banner = 'usage: fog [options] CREDENTIAL'
|
2013-06-25 20:11:28 -04:00
|
|
|
|
2013-06-26 22:32:35 -04:00
|
|
|
opts.on('-C', '--credentials-path FILE', 'Path to the credentials file') do |file|
|
2013-06-25 20:59:54 -04:00
|
|
|
Fog.credentials_path = file
|
|
|
|
end
|
|
|
|
|
2013-07-01 16:57:52 -04:00
|
|
|
opts.on_tail('-v', '--version', 'Prints the version') do
|
2013-06-25 20:11:28 -04:00
|
|
|
puts Fog::VERSION
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
|
|
|
|
opts.on_tail('-h', '--help', 'Prints this message') do
|
|
|
|
puts opts
|
|
|
|
exit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
options.parse!
|
|
|
|
|
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?
|
2011-08-14 09:03:43 -04:00
|
|
|
begin
|
|
|
|
Fog::Errors.missing_credentials
|
|
|
|
rescue Fog::Errors::LoadError => error
|
|
|
|
abort error.message
|
|
|
|
end
|
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
|
|
|
|
2011-07-20 12:08:11 -04:00
|
|
|
result = instance_eval(ARGV[1..-1].join(' '))
|
2012-04-25 10:31:28 -04:00
|
|
|
puts(Fog::JSON.encode(result))
|
2010-10-19 16:00:27 -04:00
|
|
|
|
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)
|
|
|
|
|
2012-12-06 18:41:34 -05:00
|
|
|
trap 'INT' do
|
|
|
|
@irb.signal_handle
|
|
|
|
end
|
|
|
|
|
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
|