authorize_resource :class => false
before_action :set_request_formats
- around_action :api_call_handle_error, :api_call_timeout
# External apps that use the api are able to query the api to find out some
# parameters of the API. It currently returns:
authorize_resource
before_action :require_public_data, :only => [:create]
+
before_action :set_request_formats
- around_action :api_call_handle_error
- around_action :api_call_timeout
##
# Add a comment to a changeset
before_action :require_public_data, :only => [:create, :update, :upload, :close, :subscribe, :unsubscribe]
before_action :set_request_formats, :except => [:create, :close, :upload]
- around_action :api_call_handle_error
- around_action :api_call_timeout, :except => [:upload]
+ skip_around_action :api_call_timeout, :only => [:upload]
# Helper methods for checking consistency
include ConsistencyValidations
class MapController < ApiController
authorize_resource :class => false
- around_action :api_call_handle_error, :api_call_timeout
-
before_action :set_request_formats
# This is probably the most common call of all. It is used for getting the
authorize_resource
- around_action :api_call_handle_error, :api_call_timeout
-
before_action :set_request_formats
def inbox
authorize_resource
before_action :require_public_data, :only => [:create, :update, :delete]
- around_action :api_call_handle_error, :api_call_timeout
-
before_action :set_request_formats, :except => [:create, :update, :delete]
before_action :check_rate_limit, :only => [:create, :update, :delete]
authorize_resource
before_action :set_locale
- around_action :api_call_handle_error, :api_call_timeout
before_action :set_request_formats, :except => [:feed]
##
authorize_resource
- around_action :api_call_handle_error, :api_call_timeout
before_action :lookup_old_element, :except => [:history]
before_action :lookup_old_element_versions, :only => [:history]
before_action :setup_user_auth
before_action :set_request_formats
- around_action :api_call_handle_error, :api_call_timeout
# External apps that use the api are able to query which permissions
# they have. This currently returns a list of permissions granted to the current user:
authorize_resource
before_action :require_public_data, :only => [:create, :update, :delete]
- around_action :api_call_handle_error, :api_call_timeout
-
before_action :set_request_formats, :except => [:create, :update, :delete]
before_action :check_rate_limit, :only => [:create, :update, :delete]
class TracepointsController < ApiController
authorize_resource
- around_action :api_call_handle_error, :api_call_timeout
-
# Get an XML response containing a list of tracepoints that have been uploaded
# within the specified bounding box, and in the specified page.
def index
authorize_resource
before_action :offline_error, :only => [:create, :destroy, :data]
- around_action :api_call_handle_error
+ skip_around_action :api_call_timeout, :only => :create
def show
@trace = Trace.visible.find(params[:id])
class UserBlocksController < ApiController
authorize_resource
- around_action :api_call_handle_error, :api_call_timeout
before_action :set_request_formats
def show
authorize_resource
- around_action :api_call_handle_error
-
before_action :set_request_formats
##
authorize_resource
- around_action :api_call_handle_error
load_resource :only => :show
before_action :set_request_formats, :except => [:gpx_files]
authorize_resource :class => false
before_action :set_request_formats
- around_action :api_call_handle_error, :api_call_timeout
# Show the list of available API versions. This will replace the global
# unversioned capabilities call in due course.
authorize_resource
before_action :require_public_data, :only => [:create, :update, :delete]
- around_action :api_call_handle_error, :api_call_timeout
-
before_action :set_request_formats, :except => [:create, :update, :delete]
before_action :check_rate_limit, :only => [:create, :update, :delete]
before_action :check_api_readable
+ around_action :api_call_handle_error, :api_call_timeout
+
private
##
report_error message, :bad_request
rescue OSM::APIError => e
report_error e.message, e.status
- rescue AbstractController::ActionNotFound => e
+ rescue AbstractController::ActionNotFound, CanCan::AccessDenied => e
raise
rescue StandardError => e
logger.info("API threw unexpected #{e.class} exception: #{e.message}")