Class: Fog::Storage::Google::Directory

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/google/models/storage/directory.rb

Instance Method Summary collapse

Instance Method Details

#acl=(new_acl) ⇒ Object



12
13
14
15
16
17
18
# File 'lib/fog/google/models/storage/directory.rb', line 12

def acl=(new_acl)
  valid_acls = ['private', 'public-read', 'public-read-write', 'authenticated-read']
  unless valid_acls.include?(new_acl)
    raise ArgumentError.new("acl must be one of [#{valid_acls.join(', ')}]")
  end
  @acl = new_acl
end

#destroyObject



20
21
22
23
24
25
26
# File 'lib/fog/google/models/storage/directory.rb', line 20

def destroy
  requires :key
  service.delete_bucket(key)
  true
rescue Excon::Errors::NotFound
  false
end

#filesObject



28
29
30
31
32
33
34
35
# File 'lib/fog/google/models/storage/directory.rb', line 28

def files
  @files ||= begin
    Fog::Storage::Google::Files.new(
      :directory    => self,
      :service   => service
    )
  end
end

#public=(new_public) ⇒ Object



37
38
39
40
41
42
43
44
# File 'lib/fog/google/models/storage/directory.rb', line 37

def public=(new_public)
  if new_public
    @acl = 'public-read'
  else
    @acl = 'private'
  end
  new_public
end

#public_urlObject



46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/fog/google/models/storage/directory.rb', line 46

def public_url
  requires :key
  if service.get_bucket_acl(key).body['AccessControlList'].find {|entry| entry['Scope']['type'] == 'AllUsers' && entry['Permission'] == 'READ'}
    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
  else
    nil
  end
end

#saveObject



59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/fog/google/models/storage/directory.rb', line 59

def save
  requires :key
  options = {}
  if @acl
    options['x-goog-acl'] = @acl
  end
  if @location
    options['LocationConstraint'] = @location
  end
  service.put_bucket(key, options)
  true
end