Sha256: a39bc4d96d3a235434fd8e1cc4e8c111bd3d630f63bf75ee3492f16b2032b399

Contents?: true

Size: 1.69 KB

Versions: 31

Compression:

Stored size: 1.69 KB

Contents

module Fog
  module Storage
    class GoogleXML
      class Real
        # TODO: move this methods to helper to use them with put_bucket_acl request
        def tag(name, value)
          "<#{name}>#{value}</#{name}>"
        end

        def scope_tag(scope)
          if %w(AllUsers AllAuthenticatedUsers).include?(scope["type"])
            "<Scope type='#{scope['type']}'/>"
          else
            "<Scope type='#{scope['type']}'>" +
              scope.to_a.reject { |pair| pair[0] == "type" }.map { |pair| tag(pair[0], pair[1]) }.join("\n") +
              "</Scope>"
          end
        end

        def entries_list(access_control_list)
          access_control_list.map do |entry|
            tag("Entry", scope_tag(entry["Scope"]) + tag("Permission", entry["Permission"]))
          end.join("\n")
        end

        def put_object_acl(bucket_name, object_name, acl)
          headers = {}
          data = ""

          if acl.is_a?(Hash)
            data = <<-DATA
<AccessControlList>
  <Owner>
    #{tag('ID', acl['Owner']['ID'])}
  </Owner>
  <Entries>
    #{entries_list(acl['AccessControlList'])}
  </Entries>
</AccessControlList>
DATA
          elsif acl.is_a?(String) && Utils::VALID_ACLS.include?(acl)
            headers["x-goog-acl"] = acl
          else
            raise Excon::Errors::BadRequest.new("invalid x-goog-acl")
          end

          request(:body     => data,
                  :expects  => 200,
                  :headers  => headers,
                  :host     => "#{bucket_name}.#{@host}",
                  :method   => "PUT",
                  :query    => { "acl" => nil },
                  :path     => Fog::Google.escape(object_name))
        end
      end
    end
  end
end

Version data entries

31 entries across 31 versions & 2 rubygems

Version Path
fog-google-1.24.1 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.24.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.23.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.22.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.21.1 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.21.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.20.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.19.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.18.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.17.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.16.1 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.16.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.15.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.14.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
gitlab-fog-google-1.14.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.13.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
gitlab-fog-google-1.13.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.12.1 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.12.0 lib/fog/storage/google_xml/requests/put_object_acl.rb
fog-google-1.11.0 lib/fog/storage/google_xml/requests/put_object_acl.rb