Change Status Code Rails
Solution 1:
Since devise is using warden you can create a custom failureapp and set the http status which you want.
In lib/custom_failure.rb
classCustomFailure < Devise::FailureAppdefrespondself.status = 403self.content_type = 'json'self.response_body = { error:"Invalid Email or password."}.to_json
endend
In config/initializers/devise.rb
config.warden do |manager|
manager.failure_app = CustomFailure
end
In config/application.rb
config.autoload_paths << Rails.root.join('lib')
Solution 2:
401 status code might come with a blank response data and if you check this volley code line 63-75
@OverrideprotectedResponse<JSONObject> parseNetworkResponse(NetworkResponse response) {
try {
String jsonString = newString(response.data,
HttpHeaderParser.parseCharset(response.headers, PROTOCOL_CHARSET));
returnResponse.success(newJSONObject(jsonString),
HttpHeaderParser.parseCacheHeaders(response));
} catch (UnsupportedEncodingException e) {
returnResponse.error(newParseError(e));
} catch (JSONException je) {
returnResponse.error(newParseError(je));
}
}
if jsonString is blank it still tries to create a JSONObject from it new JSONObject(jsonString)
which throws a JSONException
You may download volley source code, import it as module in your android studio project, add it dependency and make this correction:
@OverrideprotectedResponse<JSONObject> parseNetworkResponse(NetworkResponse response) {
try {
String jsonString = newString(response.data,
HttpHeaderParser.parseCharset(response.headers, PROTOCOL_CHARSET));
// Fix for an error on blank success response// return Response.success(new JSONObject(jsonString),// HttpHeaderParser.parseCacheHeaders(response));if (!jsonString.trim().contentEquals("")) {
returnResponse.success(newJSONObject(jsonString),
HttpHeaderParser.parseCacheHeaders(response));
}
else {
returnResponse.success(newJSONObject(),
HttpHeaderParser.parseCacheHeaders(response));
}
} catch (UnsupportedEncodingException e) {
returnResponse.error(newParseError(e));
} catch (JSONException je) {
returnResponse.error(newParseError(je));
}
}
}
To add Volley to your project - clone the Volley repository and set it as a library project
Git clone the repository by typing the following at the command line:
git clone https://android.googlesource.com/platform/frameworks/volley
Import the downloaded source into your app project as an Android library module as described in Create an Android Library.
You may also try Prase 401 volley error message if you don't want a fix inside the imported library:
Solution 3:
I found a solution to my problem from the Ruby on Rails
backend side that is generalized for the whole application which is required as a lot of controllers would also give 401
and not only devise
.
I have used Rack
middleware by doing the following:
app/middleware/unauthorized_to_forbidden.rb
classUnauthorizedToForbiddendefinitialize(app)@app = app
enddefcall(env)
status, headers, response = @app.call(env)
if(status == 401)
status = 403end
[status, headers, response]
endend
config/application.rb
classApplication < Rails::Application
config.middleware.use "UnauthorizedToForbidden"end
Now UnauthorizedToForbidden
is at the bottom of the Rack
stack and gets executed at the very end before the response is actually sent to the user. It basically changes the status code if it's 401
to 403
.
Post a Comment for "Change Status Code Rails"