I am trying to override the route of a resource only for an option request. I need this to properly get Cross Domain photo upload requests.
routes.rb
map.resources :photos
map.connect '/photos', :controller => 'photos',
:action => 'options_stuff', :conditions => {:method => :options }
photos_controller.rb
def options_stuff
puts "got to options@!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
set_access_control_headers
head :ok
render :nothing => true, :status => 200
end
def set_access_control_headers
headers['Access-Control-Allow-Origin'] = '*'
headers['Access-Control-Allow-Methods'] = 'POST, GET, OPTIONS'
headers['Access-Control-Max-Age'] = '1000'
headers['Access-Control-Allow-Headers'] = '*,x-requested-with'
puts "headers are #{headers}"
end
However it never gets to the controller I need. What am I doing wrong?
Btw, I am following the following 2 articles about how to do it: http://www.codeodor.com/index.cfm/2011/7/26/Responding-to-the-OPTIONS-HTTP-method-request-in-Rails-Getting-around-the-Same-Origin-Policy/3387
https://gist.github.com/832700
Update After a lot of pain an agony I scrapped the controller idea, although it did work like the answer suggests. Instead someone recommended to use a before filter like so:
before set
before_filter :set_access_control_headers, :only => [:index]
def set_access_control_headers
if !request.put? && !request.post? && !request.delete? && !request.get?
headers['Access-Control-Allow-Origin'] = '*'
headers['Access-Control-Allow-Methods'] = 'POST, GET, OPTIONS'
headers['Access-Control-Max-Age'] = '1000'
headers['Access-Control-Allow-Headers'] = '*,x-requested-with'
puts "headers are #{headers}"
render :nothing => true, :status => 200
return false
end
end
printfdebugging in a controller is probably not the best way to do this, but at least you're excited about it. – tadman Nov 8 '12 at 19:46