Sha256: a287c2c8456c594e96712cd4f3047053497f93ab4749b96018ef20b516508279

Contents?: true

Size: 1.64 KB

Versions: 1

Compression:

Stored size: 1.64 KB

Contents

begin
  require 'coffee-script'
rescue LoadError => e
  raise MissingLibrary, "coffee-script could not be loaded (is it installed?): #{e.message}"
end

module Capcode
  module Helpers
    # Set the path to Coffee files. If this path is not set, Capcode will search in the static path.
    # This method is deprecated and will be removed in version 1.0
    def self.coffee_path=( p )
      warn "Capcode::Helpers.coffee_path is deprecated and will be removed in version 1.0, please use `set :coffee'"
      Capcode::Configuration.set :coffee, p
    end
    
    def render_coffee( f, opts ) #:nodoc:
      if @coffee_path.nil?
        @coffee_path = Capcode::Configuration.get( :coffee ) || Capcode.static()
      end

      f = f.to_s
      if f.include? '..'
        return [403, {}, '403 - Invalid path']
      end
      
      if /Windows/.match( ENV['OS'] )
        unless( /.:\\/.match( @coffee_path[0] ) )
          @coffee_path = File.expand_path( File.join(".", @coffee_path) )
        end
      else
        unless( @coffee_path[0].chr == "/" )
          @coffee_path = File.expand_path( File.join(".", @coffee_path) )
        end
      end
      
      # Update options
      opts = (Capcode.options[:coffee] || {}).merge(opts)

      # Get coffee File
      f = f + ".coffee" if File.extname( f ) != ".coffee"
      file = File.join( @coffee_path, f )
      
      # Set content-type
      @response['Content-Type'] = "text/javascript"
      
      # Render
      if( File.exist?( file ) )
        CoffeeScript.compile(open(file), opts)
      else
        raise Capcode::RenderError, "Error rendering `coffee', #{file} does not exist !"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
capcode-render-coffee-script-0.1.0 lib/capcode/render/coffee.rb