2011-10-17 15:25:07 -04:00
|
|
|
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'hp'))
|
|
|
|
require 'fog/storage'
|
|
|
|
|
2011-06-15 02:13:18 -04:00
|
|
|
module Fog
|
2011-10-17 15:25:07 -04:00
|
|
|
module Storage
|
|
|
|
class HP < Fog::Service
|
2011-06-15 02:13:18 -04:00
|
|
|
|
2011-07-11 10:46:24 -04:00
|
|
|
requires :hp_secret_key, :hp_account_id
|
2011-10-20 22:07:42 -04:00
|
|
|
recognizes :hp_auth_uri, :hp_servicenet, :hp_cdn_ssl, :persistent, :connection_options
|
2011-06-15 02:13:18 -04:00
|
|
|
|
2011-10-17 15:25:07 -04:00
|
|
|
model_path 'fog/hp/models/storage'
|
2011-06-16 00:36:38 -04:00
|
|
|
model :directory
|
|
|
|
collection :directories
|
|
|
|
model :file
|
|
|
|
collection :files
|
2011-06-15 02:13:18 -04:00
|
|
|
|
2011-10-17 15:25:07 -04:00
|
|
|
request_path 'fog/hp/requests/storage'
|
2011-06-15 02:13:18 -04:00
|
|
|
request :delete_container
|
2011-06-15 17:59:06 -04:00
|
|
|
request :delete_object
|
2011-06-15 02:13:18 -04:00
|
|
|
request :get_container
|
|
|
|
request :get_containers
|
2011-06-15 17:59:06 -04:00
|
|
|
request :get_object
|
2011-06-15 14:33:26 -04:00
|
|
|
request :head_container
|
|
|
|
request :head_containers
|
2011-06-15 17:59:06 -04:00
|
|
|
request :head_object
|
2011-06-15 02:13:18 -04:00
|
|
|
request :put_container
|
2011-06-15 17:59:06 -04:00
|
|
|
request :put_object
|
2011-06-15 02:13:18 -04:00
|
|
|
|
|
|
|
module Utils
|
|
|
|
|
|
|
|
def cdn
|
2011-10-21 00:12:10 -04:00
|
|
|
@cdn ||= Fog::CDN.new(
|
|
|
|
:provider => 'HP',
|
|
|
|
:hp_account_id => @hp_account_id,
|
|
|
|
:hp_secret_key => @hp_secret_key,
|
|
|
|
:hp_auth_uri => @hp_auth_uri
|
|
|
|
)
|
|
|
|
if @cdn.enabled?
|
|
|
|
@cdn
|
|
|
|
end
|
2011-06-15 02:13:18 -04:00
|
|
|
end
|
|
|
|
|
2011-07-13 18:11:08 -04:00
|
|
|
def url
|
|
|
|
"#{@scheme}://#{@host}:#{@port}#{@path}"
|
|
|
|
end
|
2011-07-13 19:25:47 -04:00
|
|
|
|
|
|
|
def acl_to_header(acl)
|
|
|
|
header = {}
|
|
|
|
case acl
|
|
|
|
when "private"
|
|
|
|
header['X-Container-Read'] = ""
|
|
|
|
header['X-Container-Write'] = ""
|
|
|
|
when "public-read"
|
|
|
|
header['X-Container-Read'] = ".r:*,.rlistings"
|
|
|
|
when "public-write"
|
|
|
|
header['X-Container-Write'] = "*"
|
|
|
|
when "public-read-write"
|
|
|
|
header['X-Container-Read'] = ".r:*,.rlistings"
|
|
|
|
header['X-Container-Write'] = "*"
|
|
|
|
end
|
|
|
|
header
|
|
|
|
end
|
2011-08-01 15:03:08 -04:00
|
|
|
|
|
|
|
def header_to_acl(read_header=nil, write_header=nil)
|
|
|
|
acl = nil
|
|
|
|
if read_header.nil? && write_header.nil?
|
|
|
|
acl = nil
|
|
|
|
elsif !read_header.nil? && read_header.include?(".r:*") && write_header.nil?
|
|
|
|
acl = "public-read"
|
|
|
|
elsif !write_header.nil? && write_header.include?("*") && read_header.nil?
|
|
|
|
acl = "public-write"
|
|
|
|
elsif !read_header.nil? && read_header.include?(".r:*") && !write_header.nil? && write_header.include?("*")
|
|
|
|
acl = "public-read-write"
|
|
|
|
end
|
|
|
|
end
|
2011-09-09 16:29:29 -04:00
|
|
|
|
|
|
|
# Take care of container names with '?' in them
|
|
|
|
def escape_name(name)
|
|
|
|
if name.include?('?')
|
|
|
|
URI.escape(name).gsub('?', '%3F')
|
|
|
|
else
|
|
|
|
URI.escape(name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-09-16 17:54:54 -04:00
|
|
|
def info
|
|
|
|
{:url => url, :auth_token => @auth_token}
|
|
|
|
end
|
2011-06-15 02:13:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
include Utils
|
2011-07-29 11:33:28 -04:00
|
|
|
def self.acls(type)
|
|
|
|
type
|
|
|
|
end
|
2011-06-15 02:13:18 -04:00
|
|
|
|
|
|
|
def self.data
|
|
|
|
@data ||= Hash.new do |hash, key|
|
2011-07-29 11:33:28 -04:00
|
|
|
hash[key] = {
|
|
|
|
:acls => {
|
|
|
|
:container => {},
|
|
|
|
:object => {}
|
|
|
|
},
|
|
|
|
:containers => {}
|
|
|
|
}
|
|
|
|
end
|
2011-06-15 02:13:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.reset
|
|
|
|
@data = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(options={})
|
|
|
|
require 'mime/types'
|
2011-07-11 10:46:24 -04:00
|
|
|
@hp_secret_key = options[:hp_secret_key]
|
|
|
|
@hp_account_id = options[:hp_account_id]
|
2011-06-15 02:13:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def data
|
2011-07-11 10:46:24 -04:00
|
|
|
self.class.data[@hp_account_id]
|
2011-06-15 02:13:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def reset_data
|
2011-07-11 10:46:24 -04:00
|
|
|
self.class.data.delete(@hp_account_id)
|
2011-06-15 02:13:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Real
|
|
|
|
include Utils
|
|
|
|
attr_reader :hp_cdn_ssl
|
|
|
|
|
|
|
|
def initialize(options={})
|
|
|
|
require 'mime/types'
|
2011-10-17 15:25:07 -04:00
|
|
|
require 'multi_json'
|
2011-07-11 10:46:24 -04:00
|
|
|
@hp_secret_key = options[:hp_secret_key]
|
|
|
|
@hp_account_id = options[:hp_account_id]
|
2011-06-15 02:13:18 -04:00
|
|
|
@hp_cdn_ssl = options[:hp_cdn_ssl]
|
2011-10-20 22:07:42 -04:00
|
|
|
@connection_options = options[:connection_options] || {}
|
|
|
|
credentials = Fog::HP.authenticate(options, @connection_options)
|
2011-06-15 02:13:18 -04:00
|
|
|
@auth_token = credentials['X-Auth-Token']
|
|
|
|
|
|
|
|
uri = URI.parse(credentials['X-Storage-Url'])
|
|
|
|
@host = options[:hp_servicenet] == true ? "snet-#{uri.host}" : uri.host
|
|
|
|
@path = uri.path
|
2011-10-20 22:07:42 -04:00
|
|
|
@persistent = options[:persistent] || false
|
2011-06-15 02:13:18 -04:00
|
|
|
@port = uri.port
|
|
|
|
@scheme = uri.scheme
|
|
|
|
Excon.ssl_verify_peer = false if options[:hp_servicenet] == true
|
2011-10-20 22:07:42 -04:00
|
|
|
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options)
|
2011-06-15 02:13:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def reload
|
|
|
|
@connection.reset
|
|
|
|
end
|
|
|
|
|
|
|
|
def request(params, parse_json = true, &block)
|
|
|
|
begin
|
|
|
|
response = @connection.request(params.merge!({
|
|
|
|
:headers => {
|
|
|
|
'Content-Type' => 'application/json',
|
|
|
|
'X-Auth-Token' => @auth_token
|
|
|
|
}.merge!(params[:headers] || {}),
|
|
|
|
:host => @host,
|
|
|
|
:path => "#{@path}/#{params[:path]}",
|
|
|
|
}), &block)
|
|
|
|
rescue Excon::Errors::HTTPStatusError => error
|
|
|
|
raise case error
|
|
|
|
when Excon::Errors::NotFound
|
2011-10-17 15:25:07 -04:00
|
|
|
Fog::Storage::HP::NotFound.slurp(error)
|
2011-06-15 02:13:18 -04:00
|
|
|
else
|
|
|
|
error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if !response.body.empty? && parse_json && response.headers['Content-Type'] =~ %r{application/json}
|
2011-10-17 15:25:07 -04:00
|
|
|
response.body = MultiJson.decode(response.body)
|
2011-06-15 02:13:18 -04:00
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|