Sha256: 63d47f63fc30464584aa85b4b6fb98b6a75f9e2d41832a78d6069baa64774eb6

Contents?: true

Size: 1.92 KB

Versions: 34

Compression:

Stored size: 1.92 KB

Contents

require 'fog/core/model'
require 'fog/google/models/storage/files'

module Fog
  module Storage
    class Google
      class Directory < Fog::Model
        identity  :key,           :aliases => ['Name', 'name']

        attribute :creation_date, :aliases => 'CreationDate'

        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

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

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

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

        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

        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
      end
    end
  end
end

Version data entries

34 entries across 32 versions & 6 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-google-0.1.0/lib/fog/google/models/storage/directory.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-google-0.1.0/lib/fog/google/models/storage/directory.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-google-0.1.0/lib/fog/google/models/storage/directory.rb
fog-google-0.1.3 lib/fog/google/models/storage/directory.rb
fog-google-0.1.2 lib/fog/google/models/storage/directory.rb
fog-google-0.1.1 lib/fog/google/models/storage/directory.rb
fog-google-0.1.0 lib/fog/google/models/storage/directory.rb
fog-google-0.0.9 lib/fog/google/models/storage/directory.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-google-0.0.7/lib/fog/google/models/storage/directory.rb
fog-google-0.0.7 lib/fog/google/models/storage/directory.rb
fog-google-0.0.6 lib/fog/google/models/storage/directory.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/google/models/storage/directory.rb
fog-google-0.0.5 lib/fog/google/models/storage/directory.rb
fog-google-0.0.4 lib/fog/google/models/storage/directory.rb
fog-google-0.0.3 lib/fog/google/models/storage/directory.rb
fog-google-0.0.2 lib/fog/google/models/storage/directory.rb
fog-1.29.0 lib/fog/google/models/storage/directory.rb
fog-1.28.0 lib/fog/google/models/storage/directory.rb
fog-1.27.0 lib/fog/google/models/storage/directory.rb
fog-1.26.0 lib/fog/google/models/storage/directory.rb