Sha256: 21ffe9b800c9f6136988e738015b035ff9dcc757ac562609b275f286ee1bae36

Contents?: true

Size: 1.86 KB

Versions: 24

Compression:

Stored size: 1.86 KB

Contents

module Fog
  module Storage
    class GoogleXML
      class Directory < Fog::Model
        identity :key, :aliases => %w(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::GoogleXML::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"].detect { |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
          end
        end

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

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
fog-google-1.3.3 lib/fog/storage/google_xml/models/directory.rb
fog-google-1.3.2 lib/fog/storage/google_xml/models/directory.rb
fog-google-1.3.1 lib/fog/storage/google_xml/models/directory.rb
fog-google-1.3.0 lib/fog/storage/google_xml/models/directory.rb
fog-google-1.2.2 lib/fog/storage/google_xml/models/directory.rb
fog-google-1.2.1 lib/fog/storage/google_xml/models/directory.rb
fog-google-1.2.0 lib/fog/storage/google_xml/models/directory.rb
fog-google-1.1.0 lib/fog/storage/google_xml/models/directory.rb
fog-google-1.0.1 lib/fog/storage/google_xml/models/directory.rb
fog-google-1.0.0 lib/fog/storage/google_xml/models/directory.rb
fog-google-0.6.0 lib/fog/storage/google_xml/models/directory.rb
fog-google-0.5.5 lib/fog/storage/google_xml/models/directory.rb
fog-google-0.5.4 lib/fog/storage/google_xml/models/directory.rb
fog-google-0.5.3 lib/fog/storage/google_xml/models/directory.rb
fog-google-0.5.2 lib/fog/storage/google_xml/models/directory.rb
fog-google-0.5.1 lib/fog/storage/google_xml/models/directory.rb
fog-google-0.5.0 lib/fog/storage/google_xml/models/directory.rb
fog-google-0.4.2 lib/fog/storage/google_xml/models/directory.rb
fog-google-0.4.1 lib/fog/storage/google_xml/models/directory.rb
fog-google-0.4.0 lib/fog/storage/google_xml/models/directory.rb