gitlab-org--gitlab-foss/lib/api/api.rb

54 lines
1.4 KiB
Ruby
Raw Normal View History

2012-06-29 10:46:01 +00:00
Dir["#{Rails.root}/lib/api/*.rb"].each {|file| require file}
2012-06-27 11:32:56 +00:00
module API
2012-06-27 11:32:56 +00:00
class API < Grape::API
2014-12-19 14:15:29 +00:00
include APIGuard
2012-12-21 17:55:39 +00:00
version 'v3', using: :path
2012-07-04 07:48:00 +00:00
2012-07-05 15:12:09 +00:00
rescue_from ActiveRecord::RecordNotFound do
rack_response({'message' => '404 Not found'}.to_json, 404)
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 ")
2013-03-20 21:46:30 +00:00
API.logger.add Logger::FATAL, message
rack_response({'message' => '500 Internal Server Error'}, 500)
end
2012-06-27 11:32:56 +00:00
format :json
content_type :txt, "text/plain"
2012-06-27 11:32:56 +00:00
helpers APIHelpers
2013-03-20 21:46:30 +00:00
mount Groups
mount GroupMembers
2012-06-29 10:46:01 +00:00
mount Users
mount Projects
2013-05-23 09:23:47 +00:00
mount Repositories
2012-07-24 12:19:51 +00:00
mount Issues
2012-08-16 18:51:31 +00:00
mount Milestones
mount Session
2012-10-21 11:00:27 +00:00
mount MergeRequests
mount Notes
2013-02-04 15:53:43 +00:00
mount Internal
2013-03-06 10:33:32 +00:00
mount SystemHooks
mount ProjectSnippets
mount ProjectMembers
mount DeployKeys
mount ProjectHooks
2013-10-29 14:39:46 +00:00
mount Services
mount Files
mount Commits
mount Namespaces
mount Branches
2014-08-12 12:16:25 +00:00
mount Labels
2012-06-27 11:32:56 +00:00
end
2012-06-27 09:26:16 +00:00
end