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

66 lines
1.9 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
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
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 ")
API.logger.add Logger::FATAL, message
2015-09-11 14:41:01 +05:30
rack_response({ 'message' => '500 Internal Server Error' }.to_json, 500)
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
helpers ::API::Helpers
2016-06-22 15:30:34 +05:30
mount ::API::AwardEmoji
mount ::API::Branches
mount ::API::Builds
mount ::API::CommitStatuses
mount ::API::Commits
mount ::API::DeployKeys
mount ::API::Files
2016-06-02 11:05:42 +05:30
mount ::API::GroupMembers
2016-06-22 15:30:34 +05:30
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
mount ::API::Licenses
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
mount ::API::ProjectHooks
2016-06-22 15:30:34 +05:30
mount ::API::ProjectMembers
mount ::API::ProjectSnippets
mount ::API::Projects
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-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
2014-09-02 18:07:02 +05:30
end
end