Sha256: da7b8cf674ff543118ef7dc865985ffca9df75890363d525442012cc25ab6567

Contents?: true

Size: 1.91 KB

Versions: 1

Compression:

Stored size: 1.91 KB

Contents

module Waves

  # Defines a set of methods that simplify accessing common request and response methods.
  # These include methods not necessarily associated with the Waves::Request and Waves::Response
  # objects, but which may still be useful for constructing a response.
  # This mixin assumes that a @request@ accessor already exists.
  
  module ResponseMixin  
    
    # Access the response.
    def response; request.response; end
    
    def resource; traits.waves.resource || ( self if self.kind_of? Waves::Resources::Mixin ) ; end

    def traits ; request.traits ; end
    
    # Access to the query string as a object where the keys are accessors
    # You can still access the original query as request.query
    def query ; @query ||= Waves::Request::Query.new( request.query ) ; end    
    
    # Elements captured the path
    def captured ; @captured ||= traits.waves.captured ; end
    
    # Both the query and capture merged together
    def params 
      query = captured ? request.query.merge( captured.to_h ) : request.query
      @params ||= Waves::Request::Query.new( query ) 
    end
    
    %w( session path url domain not_found ).each do | m |
      define_method( m ) { request.send( m ) }
    end
    
    # Issue a redirect for the given location.
    def redirect(location, status = '302'); request.redirect(location, status); end
    # Access the Waves::Logger.
    def log; Waves::Logger; end
    # access stuff from an app
    def app_name ; self.class.rootname.snake_case.to_sym ; end
    def app ; eval(  "::#{app_name.to_s.camel_case}" ) ; end    
    def paths( rname = nil )
      ( rname ? app::Resources[ rname ].paths : resource.class.paths ).new
    end

    # these take strings or operate on the path by default
    def basename( str = nil ) ; ( str or path ).sub(/\.([^\.]+)$/,'') ; end

    def extension( str = nil )
      ( m = ( str or path ).match(/\.([^\.]+)$/) ) ? m[1] : nil
    end
    
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
waves-edge-2009.03.10.13.14 lib/runtime/response_mixin.rb