2010-09-18 13:40:48 -04:00
module Fog
module Google
class Storage < Fog :: Service
2010-12-16 18:31:24 -05:00
requires :google_storage_access_key_id , :google_storage_secret_access_key
recognizes :host , :port , :scheme , :persistent
2011-01-07 21:14:39 -05:00
recognizes :provider # remove post deprecation
2010-09-18 13:40:48 -04:00
2011-01-07 18:41:51 -05:00
model_path 'fog/storage/models/google'
2010-09-18 13:40:48 -04:00
collection :directories
model :directory
collection :files
model :file
2011-01-07 18:41:51 -05:00
request_path 'fog/storage/requests/google'
2010-09-18 13:40:48 -04:00
request :copy_object
request :delete_bucket
request :delete_object
request :get_bucket
request :get_bucket_acl
request :get_object
request :get_object_acl
request :get_object_torrent
request :get_object_url
request :get_service
request :head_object
request :put_bucket
request :put_bucket_acl
request :put_object
request :put_object_url
module Utils
def url ( params , expires )
params [ :headers ] [ 'Date' ] = expires . to_i
2011-01-26 17:38:00 -05:00
params [ :path ] = CGI . escape ( params [ :path ] ) . gsub ( '%2F' , '/' )
2010-09-18 13:40:48 -04:00
query = [ params [ :query ] ] . compact
query << " GoogleAccessKeyId= #{ @google_storage_access_key_id } "
query << " Signature= #{ CGI . escape ( signature ( params ) ) } "
query << " Expires= #{ params [ :headers ] [ 'Date' ] } "
2011-01-26 17:38:00 -05:00
" http:// #{ params [ :host ] } / #{ params [ :path ] } ? #{ query . join ( '&' ) } "
2010-09-18 13:40:48 -04:00
end
end
class Mock
include Utils
2010-11-18 17:17:11 -05:00
def self . acls ( type )
case type
when 'private'
2011-01-21 23:45:37 -05:00
{
2010-11-18 17:17:11 -05:00
" AccessControlList " = > [
{
" Permission " = > " FULL_CONTROL " ,
" Scope " = > { " ID " = > " 2744ccd10c7533bd736ad890f9dd5cab2adb27b07d500b9493f29cdc420cb2e0 " , " type " = > " UserById " }
}
] ,
" Owner " = > { " ID " = > " 2744ccd10c7533bd736ad890f9dd5cab2adb27b07d500b9493f29cdc420cb2e0 " }
}
when 'public-read'
2011-01-21 23:45:37 -05:00
{
" AccessControlList " = > [
{
" Permission " = > " FULL_CONTROL " ,
" Scope " = > { " ID " = > " 2744ccd10c7533bd736ad890f9dd5cab2adb27b07d500b9493f29cdc420cb2e0 " , " type " = > " UserById " }
} ,
{
" Permission " = > " READ " ,
" Scope " = > { " type " = > " AllUsers " }
}
] ,
" Owner " = > { " ID " = > " 2744ccd10c7533bd736ad890f9dd5cab2adb27b07d500b9493f29cdc420cb2e0 " }
}
2010-11-18 17:17:11 -05:00
when 'public-read-write'
2011-01-21 23:45:37 -05:00
{
" AccessControlList " = > [
{
" Permission " = > " FULL_CONTROL " ,
" Scope " = > { " ID " = > " 2744ccd10c7533bd736ad890f9dd5cab2adb27b07d500b9493f29cdc420cb2e0 " , " type " = > " UserById " }
} ,
{
" Permission " = > " READ " ,
" Scope " = > { " type " = > " AllUsers " }
} ,
{
" Permission " = > " WRITE " ,
" Scope " = > { " type " = > " AllUsers " }
}
] ,
" Owner " = > { " ID " = > " 2744ccd10c7533bd736ad890f9dd5cab2adb27b07d500b9493f29cdc420cb2e0 " }
}
2010-11-18 17:17:11 -05:00
when 'authenticated-read'
2011-01-21 23:45:37 -05:00
{
" AccessControlList " = > [
{
" Permission " = > " FULL_CONTROL " ,
" Scope " = > { " ID " = > " 2744ccd10c7533bd736ad890f9dd5cab2adb27b07d500b9493f29cdc420cb2e0 " , " type " = > " UserById " }
} ,
{
" Permission " = > " READ " ,
" Scope " = > { " type " = > " AllAuthenticatedUsers " }
}
] ,
" Owner " = > { " ID " = > " 2744ccd10c7533bd736ad890f9dd5cab2adb27b07d500b9493f29cdc420cb2e0 " }
}
2010-11-18 17:17:11 -05:00
end
end
2010-09-18 13:40:48 -04:00
def self . data
@data || = Hash . new do | hash , key |
hash [ key ] = {
2010-11-18 18:54:54 -05:00
:acls = > {
:bucket = > { } ,
:object = > { }
} ,
2010-09-18 13:40:48 -04:00
:buckets = > { }
}
end
end
2011-05-19 18:35:33 -04:00
def self . reset
@data = nil
end
2010-09-18 13:40:48 -04:00
def initialize ( options = { } )
2011-01-07 21:14:39 -05:00
unless options . delete ( :provider )
location = caller . first
warning = " [yellow][WARN] Fog::Google::Storage.new is deprecated, use Fog::Storage.new(:provider => 'Google') instead[/] "
warning << " [light_black]( " << location << " )[/] "
Formatador . display_line ( warning )
end
2010-10-29 17:58:28 -04:00
require 'mime/types'
2010-09-18 13:40:48 -04:00
@google_storage_access_key_id = options [ :google_storage_access_key_id ]
2011-03-10 14:16:55 -05:00
end
2011-05-19 18:35:33 -04:00
def data
self . class . data [ @google_storage_access_key_id ]
2011-05-19 10:05:33 -04:00
end
2011-03-10 14:16:55 -05:00
def reset_data
self . class . data . delete ( @google_storage_access_key_id )
2010-09-18 13:40:48 -04:00
end
def signature ( params )
" foo "
end
2011-03-10 14:16:55 -05:00
2010-09-18 13:40:48 -04:00
end
2010-11-21 05:56:41 -05:00
2010-09-18 13:40:48 -04:00
class Real
include Utils
2010-09-24 09:43:34 -04:00
# Initialize connection to Google Storage
2010-09-18 13:40:48 -04:00
#
# ==== Notes
# options parameter must include values for :google_storage_access_key_id and
# :google_storage_secret_access_key in order to create a connection
#
# ==== Examples
2010-09-24 09:43:34 -04:00
# google_storage = Storage.new(
2010-09-18 13:40:48 -04:00
# :google_storage_access_key_id => your_google_storage_access_key_id,
# :google_storage_secret_access_key => your_google_storage_secret_access_key
# )
#
# ==== Parameters
# * options<~Hash> - config arguments for connection. Defaults to {}.
#
# ==== Returns
2010-09-24 09:43:34 -04:00
# * Storage object with connection to google.
2010-09-18 13:40:48 -04:00
def initialize ( options = { } )
2011-01-07 21:14:39 -05:00
unless options . delete ( :provider )
location = caller . first
warning = " [yellow][WARN] Fog::Google::Storage.new is deprecated, use Fog::Storage.new(:provider => 'Google') instead[/] "
warning << " [light_black]( " << location << " )[/] "
Formatador . display_line ( warning )
end
2011-02-16 20:25:50 -05:00
require 'fog/core/parser'
2010-10-29 17:58:28 -04:00
require 'mime/types'
2011-02-16 20:25:50 -05:00
2010-09-18 13:40:48 -04:00
@google_storage_access_key_id = options [ :google_storage_access_key_id ]
@google_storage_secret_access_key = options [ :google_storage_secret_access_key ]
@hmac = Fog :: HMAC . new ( 'sha1' , @google_storage_secret_access_key )
@host = options [ :host ] || 'commondatastorage.googleapis.com'
@port = options [ :port ] || 443
@scheme = options [ :scheme ] || 'https'
2011-02-15 14:15:33 -05:00
unless options . has_key? ( :persistent )
options [ :persistent ] = true
end
@connection = Fog :: Connection . new ( " #{ @scheme } :// #{ @host } : #{ @port } " , options [ :persistent ] )
2010-09-18 13:40:48 -04:00
end
def reload
@connection . reset
end
def signature ( params )
string_to_sign =
<<-DATA
#{params[:method]}
#{params[:headers]['Content-MD5']}
#{params[:headers]['Content-Type']}
#{params[:headers]['Date']}
DATA
google_headers , canonical_google_headers = { } , ''
for key , value in params [ :headers ]
2010-09-18 15:57:37 -04:00
if key [ 0 .. 6 ] == 'x-goog-'
2010-09-18 13:40:48 -04:00
google_headers [ key ] = value
end
end
2010-09-18 15:57:37 -04:00
2010-09-18 13:40:48 -04:00
google_headers = google_headers . sort { | x , y | x [ 0 ] < = > y [ 0 ] }
for key , value in google_headers
canonical_google_headers << " #{ key } : #{ value } \n "
end
string_to_sign << " #{ canonical_google_headers } "
subdomain = params [ :host ] . split ( " . #{ @host } " ) . first
unless subdomain =~ / ^(?:[a-z]| \ d(?! \ d{0,2}(?: \ . \ d{1,3}){3}$))(?:[a-z0-9]| \ .(?![ \ . \ -])| \ -(?![ \ .])){1,61}[a-z0-9]$ /
2010-09-24 16:24:52 -04:00
Formatador . display_line ( " [yellow][WARN] fog: the specified google storage bucket name( #{ subdomain } ) is not a valid dns name. See: http://code.google.com/apis/storage/docs/developer-guide.html # naming[/] " )
2010-09-18 13:40:48 -04:00
params [ :host ] = params [ :host ] . split ( " #{ subdomain } . " ) [ - 1 ]
if params [ :path ]
params [ :path ] = " #{ subdomain } / #{ params [ :path ] } "
else
params [ :path ] = " #{ subdomain } "
end
subdomain = nil
end
canonical_resource = " / "
unless subdomain . nil? || subdomain == @host
canonical_resource << " #{ CGI . escape ( subdomain ) . downcase } / "
end
canonical_resource << " #{ params [ :path ] } "
canonical_resource << '?'
for key in ( params [ :query ] || { } ) . keys
if [ 'acl' , 'location' , 'logging' , 'requestPayment' , 'torrent' , 'versions' , 'versioning' ] . include? ( key )
canonical_resource << " #{ key } & "
end
end
canonical_resource . chop!
string_to_sign << " #{ canonical_resource } "
signed_string = @hmac . sign ( string_to_sign )
signature = Base64 . encode64 ( signed_string ) . chomp!
end
2011-02-08 13:06:44 -05:00
private
def request ( params , & block )
params [ :headers ] [ 'Date' ] = Fog :: Time . now . to_date_header
params [ :headers ] [ 'Authorization' ] = " GOOG1 #{ @google_storage_access_key_id } : #{ signature ( params ) } "
response = @connection . request ( params , & block )
response
end
2010-09-18 13:40:48 -04:00
end
end
end
end