2013-05-14 08:33:31 -04:00
|
|
|
module API
|
2012-06-27 07:32:56 -04:00
|
|
|
class API < Grape::API
|
2014-12-19 09:15:29 -05:00
|
|
|
include APIGuard
|
2012-12-21 12:55:39 -05:00
|
|
|
version 'v3', using: :path
|
2012-07-04 03:48:00 -04:00
|
|
|
|
2016-06-23 11:14:31 -04:00
|
|
|
rescue_from Gitlab::Access::AccessDeniedError do
|
|
|
|
rack_response({ 'message' => '403 Forbidden' }.to_json, 403)
|
|
|
|
end
|
|
|
|
|
2012-07-05 11:12:09 -04:00
|
|
|
rescue_from ActiveRecord::RecordNotFound do
|
2015-02-02 23:36:54 -05:00
|
|
|
rack_response({ 'message' => '404 Not found' }.to_json, 404)
|
2012-07-05 11:12:09 -04:00
|
|
|
end
|
|
|
|
|
2016-08-02 17:56:27 -04:00
|
|
|
# Retain 405 error rather than a 500 error for Grape 0.15.0+.
|
|
|
|
# See: https://github.com/ruby-grape/grape/commit/252bfd27c320466ec3c0751812cf44245e97e5de
|
|
|
|
rescue_from Grape::Exceptions::Base do |e|
|
|
|
|
error! e.message, e.status, e.headers
|
2016-07-29 06:14:36 -04:00
|
|
|
end
|
|
|
|
|
2013-02-01 04:42:02 -05:00
|
|
|
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 17:46:30 -04:00
|
|
|
API.logger.add Logger::FATAL, message
|
2015-01-29 02:22:07 -05:00
|
|
|
rack_response({ 'message' => '500 Internal Server Error' }.to_json, 500)
|
2013-01-29 12:20:59 -05:00
|
|
|
end
|
|
|
|
|
2012-06-27 07:32:56 -04:00
|
|
|
format :json
|
2014-02-18 04:40:45 -05:00
|
|
|
content_type :txt, "text/plain"
|
|
|
|
|
2016-04-15 11:35:40 -04:00
|
|
|
# Ensure the namespace is right, otherwise we might load Grape::API::Helpers
|
|
|
|
helpers ::API::Helpers
|
|
|
|
|
2016-06-23 11:14:31 -04:00
|
|
|
mount ::API::AccessRequests
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::AwardEmoji
|
|
|
|
mount ::API::Branches
|
|
|
|
mount ::API::Builds
|
|
|
|
mount ::API::CommitStatuses
|
|
|
|
mount ::API::Commits
|
|
|
|
mount ::API::DeployKeys
|
2016-07-26 03:37:02 -04:00
|
|
|
mount ::API::Environments
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::Files
|
|
|
|
mount ::API::Groups
|
|
|
|
mount ::API::Internal
|
2016-04-15 11:35:40 -04:00
|
|
|
mount ::API::Issues
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::Keys
|
|
|
|
mount ::API::Labels
|
2016-06-27 15:38:57 -04:00
|
|
|
mount ::API::LicenseTemplates
|
2016-06-23 11:14:31 -04:00
|
|
|
mount ::API::Members
|
2016-04-15 11:35:40 -04:00
|
|
|
mount ::API::MergeRequests
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::Milestones
|
|
|
|
mount ::API::Namespaces
|
2016-04-15 11:35:40 -04:00
|
|
|
mount ::API::Notes
|
|
|
|
mount ::API::ProjectHooks
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::ProjectSnippets
|
|
|
|
mount ::API::Projects
|
|
|
|
mount ::API::Repositories
|
|
|
|
mount ::API::Runners
|
2016-04-15 11:35:40 -04:00
|
|
|
mount ::API::Services
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::Session
|
2016-04-15 11:35:40 -04:00
|
|
|
mount ::API::Settings
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::SidekiqMetrics
|
|
|
|
mount ::API::Subscriptions
|
|
|
|
mount ::API::SystemHooks
|
2016-04-15 11:35:40 -04:00
|
|
|
mount ::API::Tags
|
2016-05-27 05:00:56 -04:00
|
|
|
mount ::API::Templates
|
2016-03-11 14:04:42 -05:00
|
|
|
mount ::API::Todos
|
2016-04-15 11:35:40 -04:00
|
|
|
mount ::API::Triggers
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::Users
|
2016-04-15 11:35:40 -04:00
|
|
|
mount ::API::Variables
|
2012-06-27 07:32:56 -04:00
|
|
|
end
|
2012-06-27 05:26:16 -04:00
|
|
|
end
|