2016-03-05 03:50:59 -08:00
|
|
|
class ApiController < ApplicationController
|
|
|
|
protect_from_forgery with: :null_session
|
2016-08-17 08:56:23 -07:00
|
|
|
skip_before_action :verify_authenticity_token
|
2016-03-07 03:42:33 -08:00
|
|
|
|
2016-09-30 13:31:16 -07:00
|
|
|
rescue_from ActiveRecord::RecordInvalid do |e|
|
|
|
|
render json: { error: e.to_s }, status: 422
|
2016-08-26 10:12:19 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
rescue_from ActiveRecord::RecordNotFound do
|
|
|
|
render json: { error: 'Record not found' }, status: 404
|
|
|
|
end
|
|
|
|
|
2016-09-17 08:03:36 -07:00
|
|
|
rescue_from Goldfinger::Error do
|
|
|
|
render json: { error: 'Remote account could not be resolved' }, status: 422
|
|
|
|
end
|
|
|
|
|
|
|
|
rescue_from HTTP::Error do
|
|
|
|
render json: { error: 'Remote data could not be fetched' }, status: 503
|
|
|
|
end
|
|
|
|
|
2016-03-07 03:42:33 -08:00
|
|
|
protected
|
|
|
|
|
|
|
|
def current_resource_owner
|
2016-03-11 07:47:36 -08:00
|
|
|
User.find(doorkeeper_token.resource_owner_id) if doorkeeper_token
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def current_user
|
|
|
|
super || current_resource_owner
|
|
|
|
end
|
2016-09-26 14:55:21 -07:00
|
|
|
|
|
|
|
def render_empty
|
|
|
|
render json: {}, status: 200
|
|
|
|
end
|
2016-03-05 03:50:59 -08:00
|
|
|
end
|