debian-mirror-gitlab/lib/api/api.rb

82 lines
2.1 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module API
class API < Grape::API
2015-04-26 12:48:37 +05:30
include APIGuard
2014-09-02 18:07:02 +05:30
version 'v3', using: :path
2016-09-13 17:45:13 +05:30
rescue_from Gitlab::Access::AccessDeniedError do
rack_response({ 'message' => '403 Forbidden' }.to_json, 403)
end
2014-09-02 18:07:02 +05:30
rescue_from ActiveRecord::RecordNotFound do
2015-04-26 12:48:37 +05:30
rack_response({ 'message' => '404 Not found' }.to_json, 404)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
# 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
end
2014-09-02 18:07:02 +05:30
rescue_from :all do |exception|
2016-09-29 09:46:39 +05:30
handle_api_exception(exception)
2014-09-02 18:07:02 +05:30
end
format :json
content_type :txt, "text/plain"
2016-06-02 11:05:42 +05:30
# Ensure the namespace is right, otherwise we might load Grape::API::Helpers
2016-09-29 09:46:39 +05:30
helpers ::SentryHelper
2016-06-02 11:05:42 +05:30
helpers ::API::Helpers
2016-11-03 12:29:30 +05:30
# Keep in alphabetical order
2016-09-13 17:45:13 +05:30
mount ::API::AccessRequests
2016-06-22 15:30:34 +05:30
mount ::API::AwardEmoji
2016-11-03 12:29:30 +05:30
mount ::API::Boards
2016-06-22 15:30:34 +05:30
mount ::API::Branches
2016-09-29 09:46:39 +05:30
mount ::API::BroadcastMessages
2016-06-22 15:30:34 +05:30
mount ::API::Builds
mount ::API::Commits
2016-11-03 12:29:30 +05:30
mount ::API::CommitStatuses
2016-06-22 15:30:34 +05:30
mount ::API::DeployKeys
2016-09-13 17:45:13 +05:30
mount ::API::Deployments
mount ::API::Environments
2016-06-22 15:30:34 +05:30
mount ::API::Files
mount ::API::Groups
mount ::API::Internal
2016-06-02 11:05:42 +05:30
mount ::API::Issues
2016-06-22 15:30:34 +05:30
mount ::API::Keys
mount ::API::Labels
2016-09-29 09:46:39 +05:30
mount ::API::Lint
2016-09-13 17:45:13 +05:30
mount ::API::Members
2016-11-03 12:29:30 +05:30
mount ::API::MergeRequestDiffs
2016-06-02 11:05:42 +05:30
mount ::API::MergeRequests
2016-06-22 15:30:34 +05:30
mount ::API::Milestones
mount ::API::Namespaces
2016-06-02 11:05:42 +05:30
mount ::API::Notes
2016-09-29 09:46:39 +05:30
mount ::API::NotificationSettings
2016-09-13 17:45:13 +05:30
mount ::API::Pipelines
2016-06-02 11:05:42 +05:30
mount ::API::ProjectHooks
2016-06-22 15:30:34 +05:30
mount ::API::Projects
2016-11-03 12:29:30 +05:30
mount ::API::ProjectSnippets
2016-06-22 15:30:34 +05:30
mount ::API::Repositories
mount ::API::Runners
2016-06-02 11:05:42 +05:30
mount ::API::Services
2016-06-22 15:30:34 +05:30
mount ::API::Session
2016-06-02 11:05:42 +05:30
mount ::API::Settings
2016-06-22 15:30:34 +05:30
mount ::API::SidekiqMetrics
mount ::API::Subscriptions
mount ::API::SystemHooks
2016-06-02 11:05:42 +05:30
mount ::API::Tags
2016-06-22 15:30:34 +05:30
mount ::API::Templates
2016-08-24 12:49:21 +05:30
mount ::API::Todos
2016-06-02 11:05:42 +05:30
mount ::API::Triggers
2016-06-22 15:30:34 +05:30
mount ::API::Users
2016-06-02 11:05:42 +05:30
mount ::API::Variables
2016-11-03 12:29:30 +05:30
mount ::API::Version
route :any, '*path' do
error!('404 Not Found', 404)
end
2014-09-02 18:07:02 +05:30
end
end