Sha256: 794237558d9c8e00e6061bdc4ffef968994041b7c3252d1d05b076e5d4805c89

Contents?: true

Size: 1.6 KB

Versions: 33

Compression:

Stored size: 1.6 KB

Contents

require_relative 'resource_requester'

module Contentful
  module Management
    # Wrapper for Space Association Methods
    # @private
    module ClientAssociationMethodsFactory
      attr_reader :client

      def initialize(client, space_id = nil, environment_id = nil)
        @client = client
        @resource_requester = ResourceRequester.new(client, associated_class)
        @space_id = space_id
        @environment_id = environment_id
      end

      # Gets a collection of resources.
      #
      # @param [Hash] params
      # @see _ For complete option list: https://www.contentful.com/developers/docs/references/content-delivery-api/#/reference/search-parameters
      #
      # @return [Contentful::Management::Array<Contentful::Management::Resource>]
      def all(params = {})
        associated_class.all(client, @space_id, @environment_id, params)
      end

      # Gets a specific resource.
      #
      # @param [String] resource_id
      #
      # @return [Contentful::Management::Resource]
      def find(resource_id)
        associated_class.find(client, @space_id, @environment_id, resource_id)
      end

      def create(attributes)
        associated_class.create(client, @space_id, @environment_id, attributes)
      end

      def new
        object = associated_class.new
        object.client = client
        object
      end

      def associated_class
        class_name = /\A(.+)Client(.+)MethodsFactory\z/.match(self.class.name).captures.join
        class_name.split('::').reduce(Object) do |mod, actual_class_name|
          mod.const_get(actual_class_name)
        end
      end
    end
  end
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
contentful-management-3.8.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-3.7.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-3.6.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-3.5.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-3.4.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-3.3.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-3.2.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-3.1.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-3.0.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-2.13.1 lib/contentful/management/client_association_methods_factory.rb
contentful-management-2.13.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-2.12.1 lib/contentful/management/client_association_methods_factory.rb
contentful-management-2.12.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-2.11.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-2.10.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-2.9.1 lib/contentful/management/client_association_methods_factory.rb
contentful-management-2.9.0 lib/contentful/management/client_association_methods_factory.rb
contentful-management-2.8.2 lib/contentful/management/client_association_methods_factory.rb
contentful-management-2.8.1 lib/contentful/management/client_association_methods_factory.rb
contentful-management-2.8.0 lib/contentful/management/client_association_methods_factory.rb