ruby-on-rails - mvc - ruby on rails pdf
Cómo eliminar la redirección de HTML en el dispositivo authenticate_user (2)
Yo uso el identificador_usuario del dispositivo! Método en un controlador. Esto funciona bien cuando el auth_token proporcionado en la solicitud es el correcto, pero si la autenticación falla, termino con:
curl -XGET ''http://localhost:3000/my_obj?auth_token=wrongtoken''
<html><body>You are being <a href="http://localhost:3000/users/sign_in">redirected</a>.</body></html>
Como uso rabl, ¿cuál es la mejor manera de tener algo como?
{''error'' : ''authentication error''}
devuelto en lugar de la redirección html?
En las versiones más recientes de Devise (estoy usando 2.2.0), puedes usar la opción de devise.rb
navigational_formats
en el archivo de configuración de Devise, devise.rb
:
# ==> Navigation configuration
# Lists the formats that should be treated as navigational. Formats like
# :html, should redirect to the sign in page when the user does not have
# access, but formats like :xml or :json, should return 401.
#
# If you have any extra navigational formats, like :iphone or :mobile, you
# should add them to the navigational formats lists.
#
# The "*/*" below is required to match Internet Explorer requests.
config.navigational_formats = ["*/*", :html]
Siempre que :json
no esté en esa lista y su solicitud finalice en .json
, se comportará como desee.
Hago eso para evitar el filtro con: format =>: json response y hago mi propio filtro para representar mi respuesta JSON si no se pasa current_user
class MyController < ApplicationController
before_filter :authenticate_user!, :unless => { request.format == :json }
before_filter :user_needed, :if => { request.format == :json }
def user_needed
unless current_user
render :json => {''error'' => ''authentication error''}, :status => 401
end
end
end
De otra manera, puede ser más limpio definir su propia FailureApp ( https://github.com/plataformatec/devise/blob/master/lib/devise/failure_app.rb )
class MyFailureApp < Devise::FailureApp
def respond
if request.format == :json
json_failure
else
super
end
end
def json_failure
self.status = 401
self.content_type = ''application/json''
self.response_body = "{''error'' : ''authentication error''}"
end
end
En su archivo de configuración de Devise agregue:
config.warden do |manager|
manager.failure_app = MyFailureApp
end