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-11-22 04:04:23 -05:00
|
|
|
before { allow_access_with_scope :api }
|
|
|
|
|
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+.
|
2017-01-04 12:24:39 -05:00
|
|
|
# https://github.com/ruby-grape/grape/blob/a3a28f5b5dfbb2797442e006dbffd750b27f2a76/UPGRADING.md#changes-to-method-not-allowed-routes
|
|
|
|
rescue_from Grape::Exceptions::MethodNotAllowed do |e|
|
|
|
|
error! e.message, e.status, e.headers
|
|
|
|
end
|
|
|
|
|
2016-08-02 17:56:27 -04:00
|
|
|
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|
|
2016-08-18 20:06:33 -04:00
|
|
|
handle_api_exception(exception)
|
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
|
2016-08-18 20:06:33 -04:00
|
|
|
helpers ::SentryHelper
|
2016-04-15 11:35:40 -04:00
|
|
|
helpers ::API::Helpers
|
|
|
|
|
2016-09-25 04:28:23 -04:00
|
|
|
# Keep in alphabetical order
|
2016-06-23 11:14:31 -04:00
|
|
|
mount ::API::AccessRequests
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::AwardEmoji
|
2016-10-13 06:52:51 -04:00
|
|
|
mount ::API::Boards
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::Branches
|
2016-08-25 19:34:01 -04:00
|
|
|
mount ::API::BroadcastMessages
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::Builds
|
|
|
|
mount ::API::Commits
|
2016-10-13 06:52:51 -04:00
|
|
|
mount ::API::CommitStatuses
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::DeployKeys
|
2016-08-16 02:45:23 -04:00
|
|
|
mount ::API::Deployments
|
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-08-24 05:42:48 -04:00
|
|
|
mount ::API::Lint
|
2016-06-23 11:14:31 -04:00
|
|
|
mount ::API::Members
|
2016-09-25 04:28:23 -04:00
|
|
|
mount ::API::MergeRequestDiffs
|
2016-10-13 06:52:51 -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
|
2016-08-02 16:52:55 -04:00
|
|
|
mount ::API::NotificationSettings
|
2016-08-17 04:09:42 -04:00
|
|
|
mount ::API::Pipelines
|
2016-04-15 11:35:40 -04:00
|
|
|
mount ::API::ProjectHooks
|
2016-06-10 02:57:56 -04:00
|
|
|
mount ::API::Projects
|
2016-10-13 06:52:51 -04:00
|
|
|
mount ::API::ProjectSnippets
|
2016-06-10 02:57:56 -04:00
|
|
|
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
|
2016-11-26 10:37:26 -05:00
|
|
|
mount ::API::Snippets
|
2016-06-10 02:57:56 -04:00
|
|
|
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
|
2016-10-12 07:32:48 -04:00
|
|
|
mount ::API::Version
|
2016-10-07 09:39:57 -04:00
|
|
|
|
|
|
|
route :any, '*path' do
|
2016-10-07 13:18:02 -04:00
|
|
|
error!('404 Not Found', 404)
|
2016-10-07 09:39:57 -04:00
|
|
|
end
|
2012-06-27 07:32:56 -04:00
|
|
|
end
|
2012-06-27 05:26:16 -04:00
|
|
|
end
|