class Fog::Storage::GoogleJSON::Directory

Public Instance Methods

acl=(new_acl) click to toggle source
# File lib/fog/storage/google_json/models/directory.rb, line 7
def acl=(new_acl)
  valid_acls = %w(private projectPrivate publicRead publicReadWrite authenticatedRead)
  unless valid_acls.include?(new_acl)
    raise ArgumentError.new("acl must be one of [#{valid_acls.join(', ')}]")
  end
  @acl = new_acl
end
destroy() click to toggle source
# File lib/fog/storage/google_json/models/directory.rb, line 15
def destroy
  requires :key
  service.delete_bucket(key)
  true
rescue Excon::Errors::NotFound
  false
end
files() click to toggle source
# File lib/fog/storage/google_json/models/directory.rb, line 23
def files
  @files ||= begin
    Fog::Storage::GoogleJSON::Files.new(
      :directory => self,
      :service => service
    )
  end
end
public=(new_public) click to toggle source
# File lib/fog/storage/google_json/models/directory.rb, line 32
def public=(new_public)
  if new_public
    @acl = "publicRead"
  else
    @acl = "private"
  end
  new_public
end
public_url() click to toggle source
# File lib/fog/storage/google_json/models/directory.rb, line 41
def public_url
  requires :key
  acl = service.get_bucket_acl(key).body
  if acl["items"].detect { |entry| entry["entity"] == "allUsers" && entry["role"] == "READER" }
    if key.to_s =~ /^(?:[a-z]|\d(?!\d{0,2}(?:\.\d{1,3}){3}$))(?:[a-z0-9]|\.(?![\.\-])|\-(?![\.])){1,61}[a-z0-9]$/
      "https://#{key}.storage.googleapis.com"
    else
      "https://storage.googleapis.com/#{key}"
    end
  end
end
save() click to toggle source
# File lib/fog/storage/google_json/models/directory.rb, line 53
def save
  requires :key
  options = {}
  options["predefinedAcl"] = @acl if @acl
  options["LocationConstraint"] = @location if @location
  options["StorageClass"] = attributes[:storage_class] if attributes[:storage_class]
  service.put_bucket(key, options)
  true
end