Question

If I want to match x.gif and y.gif, is it possible to pass a URL to map.connect that encompasses the possibilities of both filenames something like this:

map.connect "public/images/:name.gif",
  :controller => "static_image_controller",
  :action => "serve"

And then receive the param in my StaticImageController as params[:name]?

class StaticImageController < ApplicationController
  def serve
    image_name = params[:name]
    image = File.read(File.join(Rails.root, image_name))
    send_data image, :type => "image/gif", :disposition => "inline"
  end
end

Besides the fact that what I am doing here violates the principles of convention over configuration in Rais, does this look right?

Was it helpful?

Solution

map.connect '/public/images/:filename', :filename => /\.gif$/

will do it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top