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
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
|
|
|
|
mount ::API::Groups
|
|
|
|
mount ::API::GroupMembers
|
|
|
|
mount ::API::Users
|
|
|
|
mount ::API::Projects
|
|
|
|
mount ::API::Repositories
|
|
|
|
mount ::API::Issues
|
|
|
|
mount ::API::Milestones
|
|
|
|
mount ::API::Session
|
|
|
|
mount ::API::MergeRequests
|
|
|
|
mount ::API::Notes
|
|
|
|
mount ::API::Internal
|
|
|
|
mount ::API::SystemHooks
|
|
|
|
mount ::API::ProjectSnippets
|
|
|
|
mount ::API::ProjectMembers
|
|
|
|
mount ::API::DeployKeys
|
|
|
|
mount ::API::ProjectHooks
|
|
|
|
mount ::API::Services
|
|
|
|
mount ::API::Files
|
|
|
|
mount ::API::Commits
|
|
|
|
mount ::API::CommitStatuses
|
|
|
|
mount ::API::Namespaces
|
|
|
|
mount ::API::Branches
|
|
|
|
mount ::API::Labels
|
|
|
|
mount ::API::Settings
|
|
|
|
mount ::API::Keys
|
|
|
|
mount ::API::Tags
|
|
|
|
mount ::API::Triggers
|
|
|
|
mount ::API::Builds
|
|
|
|
mount ::API::Variables
|
|
|
|
mount ::API::Runners
|
|
|
|
mount ::API::Licenses
|
2016-05-12 16:48:09 -04:00
|
|
|
mount ::API::Subscriptions
|
2012-06-27 07:32:56 -04:00
|
|
|
end
|
2012-06-27 05:26:16 -04:00
|
|
|
end
|