mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
101 lines
2 KiB
Ruby
101 lines
2 KiB
Ruby
require 'rubygems'
|
|
require 'base64'
|
|
require 'cgi'
|
|
require 'digest/md5'
|
|
require 'hmac-sha1'
|
|
require 'hmac-sha2'
|
|
require 'mime/types'
|
|
|
|
current_directory = File.dirname(__FILE__)
|
|
require "#{current_directory}/aws/ec2"
|
|
require "#{current_directory}/aws/simpledb"
|
|
require "#{current_directory}/aws/s3"
|
|
|
|
module Fog
|
|
module AWS
|
|
|
|
def self.reload
|
|
current_directory = File.dirname(__FILE__)
|
|
load "#{current_directory}/aws/ec2.rb"
|
|
Fog::AWS::EC2.reload
|
|
load "#{current_directory}/aws/simpledb.rb"
|
|
Fog::AWS::SimpleDB.reload
|
|
load "#{current_directory}/aws/s3.rb"
|
|
Fog::AWS::S3.reload
|
|
end
|
|
|
|
if Fog.mocking?
|
|
srand(Time.now.to_i)
|
|
|
|
class Mock
|
|
|
|
def self.etag
|
|
hex(32)
|
|
end
|
|
|
|
def self.instance_id
|
|
end
|
|
|
|
def self.ip_address
|
|
ip = []
|
|
4.times do
|
|
ip << numbers(rand(3) + 1).to_i.to_s # remove leading 0
|
|
end
|
|
ip.join('.')
|
|
end
|
|
|
|
def self.request_id
|
|
request_id = []
|
|
request_id << hex(8)
|
|
3.times do
|
|
request_id << hex(4)
|
|
end
|
|
request_id << hex(12)
|
|
request_id.join('-')
|
|
end
|
|
|
|
def self.snapshot_id
|
|
"snap-#{hex(8)}"
|
|
end
|
|
|
|
def self.volume_id
|
|
"vol-#{hex(8)}"
|
|
end
|
|
|
|
private
|
|
|
|
def self.random_selection(characters, length)
|
|
selection = ''
|
|
length.times do
|
|
position = rand(characters.length)
|
|
selection << characters[position..position]
|
|
end
|
|
selection
|
|
end
|
|
|
|
def self.letters(length)
|
|
random_selection(
|
|
'abcdefghijklmnopqrstuvwxyz',
|
|
length
|
|
)
|
|
end
|
|
|
|
def self.numbers(length)
|
|
random_selection(
|
|
'0123456789',
|
|
length
|
|
)
|
|
end
|
|
|
|
def self.hex(length)
|
|
random_selection(
|
|
'0123456789abcdef',
|
|
length
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|