1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/hp/models/storage/directory.rb

113 lines
3.1 KiB
Ruby

require 'fog/core/model'
require 'fog/hp/models/storage/files'
module Fog
module Storage
class HP
class Directory < Fog::Model
identity :key, :aliases => 'name'
attribute :bytes, :aliases => 'X-Container-Bytes-Used'
attribute :count, :aliases => 'X-Container-Object-Count'
def acl=(new_acl)
if new_acl.nil?
new_acl = "private"
end
valid_acls = ['private', 'public-read', 'public-write', 'public-read-write']
unless valid_acls.include?(new_acl)
raise ArgumentError.new("acl must be one of [#{valid_acls.join(', ')}]")
end
@acl = new_acl
end
def destroy
requires :key
connection.delete_container(key)
# Added an extra check to see if CDN is nil i.e. when CDN provider is not implemented yet.
if !connection.cdn.nil?
connection.cdn.post_container(key, 'X-CDN-Enabled' => 'False')
end
true
rescue Excon::Errors::NotFound
false
end
def files
@files ||= begin
Fog::Storage::HP::Files.new(
:directory => self,
:connection => connection
)
end
end
def public=(new_public)
if new_public
@acl = 'public-read'
else
@acl = 'private'
end
@public = new_public
end
def public?
if @acl.nil?
false
else
@acl == 'public-read'
end
end
def public_url
requires :key
@public_url ||= begin
if !connection.cdn.nil?
begin response = connection.cdn.head_container(key)
if response.headers['X-CDN-Enabled'] == 'True'
if connection.hp_cdn_ssl == true
response.headers['X-CDN-SSL-URI']
else
response.headers['X-CDN-URI']
end
end
rescue Fog::Service::NotFound
nil
end
else
begin response = connection.head_container(key)
# escape the key to cover for special char. in container names
url = "#{connection.url}/#{connection.escape_name(key)}"
rescue Fog::Service::NotFound
nil
end
end
end
end
def save
requires :key
options = {}
if @acl
options.merge!(connection.acl_to_header(@acl))
end
connection.put_container(key, options)
# Added an extra check to see if CDN is nil i.e. when CDN provider is not implemented yet.
if !connection.cdn.nil?
if @public
@public_url = connection.cdn.put_container(key, 'X-CDN-Enabled' => 'True').headers['X-CDN-URI']
else
connection.cdn.put_container(key, 'X-CDN-Enabled' => 'False')
@public_url = nil
end
end
true
end
end
end
end
end