Sha256: 62d1b701b8b411a91ad5bfb3f2450cb84d19eca6d23f65fea1252f57d2292f88

Contents?: true

Size: 1.78 KB

Versions: 1

Compression:

Stored size: 1.78 KB

Contents

module Picky

  module Adapters
    # This is an adapter that is plugged into a Rack outlet.
    #
    # It looks at what is given to it and generate an appropriate
    # adapter for it.
    #
    # For example, if you give it a query, it will extract the query param etc.
    # and call search on it if it is called by Rack.
    #
    module Rack

      class Search < Base

        @@defaults = {
          query_key:    'query'.freeze,
          ids_key:      'ids'.freeze,
          offset_key:   'offset'.freeze,
          content_type: 'application/json'.freeze
        }

        def initialize query
          @query    = query
          @defaults = @@defaults.dup
        end

        def to_app options = {}
          # For capturing in the lambda.
          #
          query        = @query
          query_key    = options[:query_key]    || @defaults[:query_key]
          content_type = options[:content_type] || @defaults[:content_type]

          lambda do |env|
            params  = ::Rack::Request.new(env).params

            results = query.search *extracted(params)

            Picky.logger && Picky.logger.info(results.to_log(params[query_key]))

            respond_with results.to_json, content_type
          end
        end

        # Helper method to extract the params
        #
        # Defaults are 20 ids, offset 0.
        #
        UTF8_STRING = 'UTF-8'.freeze
        def extracted params
          [
            # query is encoded in ASCII
            #
            params[@defaults[:query_key]]  && params[@defaults[:query_key]].force_encoding(UTF8_STRING),
            params[@defaults[:ids_key]]    && params[@defaults[:ids_key]].to_i || 20,
            params[@defaults[:offset_key]] && params[@defaults[:offset_key]].to_i || 0
          ]
        end

      end

    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
picky-3.0.0.pre5 lib/picky/adapters/rack/search.rb