gitlab-org--gitlab-foss/lib/api/api.rb

72 lines
2.1 KiB
Ruby
Raw Normal View History

module API
2012-06-27 11:32:56 +00:00
class API < Grape::API
2014-12-19 14:15:29 +00:00
include APIGuard
2012-12-21 17:55:39 +00:00
version 'v3', using: :path
2012-07-04 07:48:00 +00:00
2012-07-05 15:12:09 +00:00
rescue_from ActiveRecord::RecordNotFound do
rack_response({ 'message' => '404 Not found' }.to_json, 404)
2012-07-05 15:12:09 +00:00
end
rescue_from Grape::Exceptions::ValidationErrors do |e|
error!({ messages: e.full_messages }, 400)
end
rescue_from :all do |exception|
# lifted from https://github.com/rails/rails/blob/master/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb#L60
# why is this not wrapped in something reusable?
trace = exception.backtrace
message = "\n#{exception.class} (#{exception.message}):\n"
message << exception.annoted_source_code.to_s if exception.respond_to?(:annoted_source_code)
message << " " << trace.join("\n ")
2013-03-20 21:46:30 +00:00
API.logger.add Logger::FATAL, message
2015-01-29 07:22:07 +00:00
rack_response({ 'message' => '500 Internal Server Error' }.to_json, 500)
end
2012-06-27 11:32:56 +00:00
format :json
content_type :txt, "text/plain"
# Ensure the namespace is right, otherwise we might load Grape::API::Helpers
helpers ::API::Helpers
mount ::API::AwardEmoji
mount ::API::Branches
mount ::API::Builds
mount ::API::CommitStatuses
mount ::API::Commits
mount ::API::DeployKeys
2016-07-26 07:37:02 +00:00
mount ::API::Environments
mount ::API::Files
mount ::API::GroupMembers
mount ::API::Groups
mount ::API::Internal
mount ::API::Issues
mount ::API::Keys
mount ::API::Labels
mount ::API::LicenseTemplates
mount ::API::MergeRequests
mount ::API::Milestones
mount ::API::Namespaces
mount ::API::Notes
mount ::API::ProjectHooks
mount ::API::ProjectMembers
mount ::API::ProjectSnippets
mount ::API::Projects
mount ::API::Repositories
mount ::API::Runners
mount ::API::Services
mount ::API::Session
mount ::API::Settings
mount ::API::SidekiqMetrics
mount ::API::Subscriptions
mount ::API::SystemHooks
mount ::API::Tags
2016-05-27 09:00:56 +00:00
mount ::API::Templates
2016-03-11 19:04:42 +00:00
mount ::API::Todos
mount ::API::Triggers
mount ::API::Users
mount ::API::Variables
2012-06-27 11:32:56 +00:00
end
2012-06-27 09:26:16 +00:00
end