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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

347 lines
12 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
module API
2021-01-03 14:25:43 +05:30
class API < ::API::Base
2015-04-26 12:48:37 +05:30
include APIGuard
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
LOG_FILENAME = Rails.root.join("log", "api_json.log")
2019-07-31 22:56:46 +05:30
NO_SLASH_URL_PART_REGEX = %r{[^/]+}.freeze
2019-02-15 15:39:39 +05:30
NAMESPACE_OR_PROJECT_REQUIREMENTS = { id: NO_SLASH_URL_PART_REGEX }.freeze
COMMIT_ENDPOINT_REQUIREMENTS = NAMESPACE_OR_PROJECT_REQUIREMENTS.merge(sha: NO_SLASH_URL_PART_REGEX).freeze
2019-03-02 22:35:43 +05:30
USER_REQUIREMENTS = { user_id: NO_SLASH_URL_PART_REGEX }.freeze
2019-09-30 21:07:59 +05:30
LOG_FILTERS = ::Rails.application.config.filter_parameters + [/^output$/]
2021-11-18 22:05:49 +05:30
LOG_FORMATTER = Gitlab::GrapeLogging::Formatters::LogrageWithTimestamp.new
2018-03-17 18:26:18 +05:30
2018-11-08 19:23:39 +05:30
insert_before Grape::Middleware::Error,
GrapeLogging::Middleware::RequestLogger,
logger: Logger.new(LOG_FILENAME),
2021-11-18 22:05:49 +05:30
formatter: LOG_FORMATTER,
2018-11-08 19:23:39 +05:30
include: [
2019-09-30 21:07:59 +05:30
GrapeLogging::Loggers::FilterParameters.new(LOG_FILTERS),
2019-12-04 20:38:33 +05:30
Gitlab::GrapeLogging::Loggers::ClientEnvLogger.new,
2018-11-20 20:47:30 +05:30
Gitlab::GrapeLogging::Loggers::RouteLogger.new,
2018-11-08 19:23:39 +05:30
Gitlab::GrapeLogging::Loggers::UserLogger.new,
2022-08-27 11:52:29 +05:30
Gitlab::GrapeLogging::Loggers::TokenLogger.new,
2019-12-26 22:10:19 +05:30
Gitlab::GrapeLogging::Loggers::ExceptionLogger.new,
2018-11-20 20:47:30 +05:30
Gitlab::GrapeLogging::Loggers::QueueDurationLogger.new,
2019-02-15 15:39:39 +05:30
Gitlab::GrapeLogging::Loggers::PerfLogger.new,
2020-05-24 23:13:21 +05:30
Gitlab::GrapeLogging::Loggers::CorrelationIdLogger.new,
2021-01-29 00:20:46 +05:30
Gitlab::GrapeLogging::Loggers::ContextLogger.new,
2021-12-11 22:18:48 +05:30
Gitlab::GrapeLogging::Loggers::ContentLogger.new,
2022-08-13 15:12:31 +05:30
Gitlab::GrapeLogging::Loggers::UrgencyLogger.new,
Gitlab::GrapeLogging::Loggers::ResponseLogger.new
2018-11-08 19:23:39 +05:30
]
2018-03-17 18:26:18 +05:30
2017-09-10 17:25:29 +05:30
allow_access_with_scope :api
2021-03-11 19:13:27 +05:30
allow_access_with_scope :read_api, if: -> (request) { request.get? || request.head? }
2017-09-10 17:25:29 +05:30
prefix :api
2017-08-17 22:00:37 +05:30
version 'v3', using: :path do
2018-11-08 19:23:39 +05:30
route :any, '*path' do
error!('API V3 is no longer supported. Use API V4 instead.', 410)
end
2017-08-17 22:00:37 +05:30
end
2018-11-08 19:23:39 +05:30
version 'v4', using: :path
2018-03-17 18:26:18 +05:30
before do
header['X-Frame-Options'] = 'SAMEORIGIN'
header['X-Content-Type-Options'] = 'nosniff'
2022-08-27 11:52:29 +05:30
if Rails.application.config.content_security_policy && !Rails.application.config.content_security_policy_report_only
policy = ActionDispatch::ContentSecurityPolicy.new { |p| p.default_src :none }
end
request.env[ActionDispatch::ContentSecurityPolicy::Request::POLICY] = policy
2018-03-17 18:26:18 +05:30
end
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
before do
2020-07-28 23:09:34 +05:30
coerce_nil_params_to_array!
2021-11-18 22:05:49 +05:30
api_endpoint = request.env[Grape::Env::API_ENDPOINT]
2021-01-29 00:20:46 +05:30
feature_category = api_endpoint.options[:for].try(:feature_category_for_app, api_endpoint).to_s
2021-11-18 22:05:49 +05:30
# remote_ip is added here and the ContextLogger so that the
# client_id field is set correctly, as the user object does not
# survive between multiple context pushes.
2020-03-13 15:44:24 +05:30
Gitlab::ApplicationContext.push(
2020-04-08 14:13:33 +05:30
user: -> { @current_user },
2020-03-13 15:44:24 +05:30
project: -> { @project },
namespace: -> { @group },
2021-04-17 20:07:23 +05:30
runner: -> { @current_runner || @runner },
2021-03-08 18:12:59 +05:30
remote_ip: request.ip,
2021-11-18 22:05:49 +05:30
caller_id: api_endpoint.endpoint_id,
2021-01-29 00:20:46 +05:30
feature_category: feature_category
2020-03-13 15:44:24 +05:30
)
end
2020-10-24 23:57:45 +05:30
before do
set_peek_enabled_for_current_request
end
2021-03-11 19:13:27 +05:30
after do
Gitlab::UsageDataCounters::VSCodeExtensionActivityUniqueCounter.track_api_request_when_trackable(user_agent: request&.user_agent, user: @current_user)
end
2022-04-04 11:22:00 +05:30
after do
Gitlab::UsageDataCounters::JetBrainsPluginActivityUniqueCounter.track_api_request_when_trackable(user_agent: request&.user_agent, user: @current_user)
end
2022-06-21 17:19:12 +05:30
after do
Gitlab::UsageDataCounters::GitLabCliActivityUniqueCounter.track_api_request_when_trackable(user_agent: request&.user_agent, user: @current_user)
end
2017-09-10 17:25:29 +05:30
# The locale is set to the current user's locale when `current_user` is loaded
after { Gitlab::I18n.use_default_locale }
2014-09-02 18:07:02 +05:30
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
2019-09-30 21:07:59 +05:30
rescue_from(
::ActiveRecord::StaleObjectError,
::Gitlab::ExclusiveLeaseHelpers::FailedToObtainLockError
) do
2019-02-15 15:39:39 +05:30
rack_response({ 'message' => '409 Conflict: Resource lock' }.to_json, 409)
end
2018-05-09 12:01:36 +05:30
rescue_from UploadedFile::InvalidPathError do |e|
rack_response({ 'message' => e.message }.to_json, 400)
end
rescue_from ObjectStorage::RemoteStoreError do |e|
rack_response({ 'message' => e.message }.to_json, 500)
end
2016-09-13 17:45:13 +05:30
# Retain 405 error rather than a 500 error for Grape 0.15.0+.
2017-08-17 22:00:37 +05:30
# 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-09-13 17:45:13 +05:30
rescue_from Grape::Exceptions::Base do |e|
error! e.message, e.status, e.headers
end
2017-08-17 22:00:37 +05:30
rescue_from Gitlab::Auth::TooManyIps do |e|
rack_response({ 'message' => '403 Forbidden' }.to_json, 403)
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
2020-05-24 23:13:21 +05:30
# This is a specific exception raised by `rack-timeout` gem when Puma
# requests surpass its timeout. Given it inherits from Exception, we
# should rescue it separately. For more info, see:
2022-07-23 23:45:48 +05:30
# - https://github.com/zombocom/rack-timeout/blob/master/doc/exceptions.md
2020-05-24 23:13:21 +05:30
# - https://github.com/ruby-grape/grape#exception-handling
rescue_from Rack::Timeout::RequestTimeoutException do |exception|
handle_api_exception(exception)
end
2021-11-18 22:05:49 +05:30
rescue_from RateLimitedService::RateLimitedError do |exception|
exception.log_request(context.request, context.current_user)
rack_response({ 'message' => { 'error' => exception.message } }.to_json, 429, exception.headers)
end
2014-09-02 18:07:02 +05:30
format :json
2020-07-28 23:09:34 +05:30
formatter :json, Gitlab::Json::GrapeFormatter
2021-03-11 19:13:27 +05:30
content_type :json, 'application/json'
2021-01-29 00:20:46 +05:30
2016-06-02 11:05:42 +05:30
# Ensure the namespace is right, otherwise we might load Grape::API::Helpers
helpers ::API::Helpers
2017-08-17 22:00:37 +05:30
helpers ::API::Helpers::CommonHelpers
2020-10-24 23:57:45 +05:30
helpers ::API::Helpers::PerformanceBarHelpers
2021-11-18 22:05:49 +05:30
helpers ::API::Helpers::RateLimiter
2016-06-02 11:05:42 +05:30
2020-03-13 15:44:24 +05:30
namespace do
after do
2020-04-22 19:07:51 +05:30
::Users::ActivityService.new(@current_user).execute
2020-03-13 15:44:24 +05:30
end
# Keep in alphabetical order
mount ::API::AccessRequests
2020-05-24 23:13:21 +05:30
mount ::API::Admin::Ci::Variables
2020-07-28 23:09:34 +05:30
mount ::API::Admin::InstanceClusters
2021-04-17 20:07:23 +05:30
mount ::API::Admin::PlanLimits
2020-04-08 14:13:33 +05:30
mount ::API::Admin::Sidekiq
2022-06-21 17:19:12 +05:30
mount ::API::AlertManagementAlerts
2020-03-13 15:44:24 +05:30
mount ::API::Appearance
mount ::API::Applications
mount ::API::Avatar
mount ::API::AwardEmoji
mount ::API::Badges
mount ::API::Boards
mount ::API::Branches
mount ::API::BroadcastMessages
2021-09-30 23:02:18 +05:30
mount ::API::BulkImports
2021-10-27 15:23:28 +05:30
mount ::API::Ci::JobArtifacts
mount ::API::Ci::Jobs
2020-07-28 23:09:34 +05:30
mount ::API::Ci::PipelineSchedules
2022-07-16 23:28:13 +05:30
mount ::API::Ci::Pipelines
2021-11-18 22:05:49 +05:30
mount ::API::Ci::ResourceGroups
2020-07-28 23:09:34 +05:30
mount ::API::Ci::Runner
mount ::API::Ci::Runners
2022-04-04 11:22:00 +05:30
mount ::API::Ci::SecureFiles
2021-10-27 15:23:28 +05:30
mount ::API::Ci::Triggers
mount ::API::Ci::Variables
2022-06-21 17:19:12 +05:30
mount ::API::Clusters::Agents
2022-07-16 23:28:13 +05:30
mount ::API::Clusters::AgentTokens
2020-03-13 15:44:24 +05:30
mount ::API::CommitStatuses
2022-07-16 23:28:13 +05:30
mount ::API::Commits
mount ::API::ComposerPackages
mount ::API::ConanInstancePackages
mount ::API::ConanProjectPackages
2020-04-22 19:07:51 +05:30
mount ::API::ContainerRegistryEvent
2021-01-29 00:20:46 +05:30
mount ::API::ContainerRepositories
2022-07-16 23:28:13 +05:30
mount ::API::DebianGroupPackages
mount ::API::DebianProjectPackages
2021-01-29 00:20:46 +05:30
mount ::API::DependencyProxy
2020-03-13 15:44:24 +05:30
mount ::API::DeployKeys
2020-04-08 14:13:33 +05:30
mount ::API::DeployTokens
2020-03-13 15:44:24 +05:30
mount ::API::Deployments
2022-07-16 23:28:13 +05:30
mount ::API::Discussions
2020-03-13 15:44:24 +05:30
mount ::API::Environments
2021-11-18 22:05:49 +05:30
mount ::API::ErrorTracking::ClientKeys
mount ::API::ErrorTracking::Collector
mount ::API::ErrorTracking::ProjectSettings
2020-03-13 15:44:24 +05:30
mount ::API::Events
2021-01-03 14:25:43 +05:30
mount ::API::FeatureFlags
mount ::API::FeatureFlagsUserLists
2020-03-13 15:44:24 +05:30
mount ::API::Features
mount ::API::Files
2020-05-24 23:13:21 +05:30
mount ::API::FreezePeriods
2022-07-16 23:28:13 +05:30
mount ::API::GenericPackages
2021-09-30 23:02:18 +05:30
mount ::API::Geo
2022-07-16 23:28:13 +05:30
mount ::API::GoProxy
2021-09-04 01:27:46 +05:30
mount ::API::GroupAvatar
2020-03-13 15:44:24 +05:30
mount ::API::GroupBoards
mount ::API::GroupClusters
2022-07-16 23:28:13 +05:30
mount ::API::GroupContainerRepositories
mount ::API::GroupDebianDistributions
2020-03-13 15:44:24 +05:30
mount ::API::GroupExport
mount ::API::GroupImport
mount ::API::GroupLabels
mount ::API::GroupMilestones
2022-07-16 23:28:13 +05:30
mount ::API::GroupPackages
2020-03-13 15:44:24 +05:30
mount ::API::GroupVariables
2022-07-16 23:28:13 +05:30
mount ::API::Groups
mount ::API::HelmPackages
2020-07-28 23:09:34 +05:30
mount ::API::ImportBitbucketServer
2020-03-13 15:44:24 +05:30
mount ::API::ImportGithub
2022-07-16 23:28:13 +05:30
mount ::API::Integrations
mount ::API::Integrations::JiraConnect::Subscriptions
2022-07-23 23:45:48 +05:30
mount ::API::Integrations::Slack::Events
2021-01-29 00:20:46 +05:30
mount ::API::Invitations
2022-07-16 23:28:13 +05:30
mount ::API::IssueLinks
2020-03-13 15:44:24 +05:30
mount ::API::Issues
mount ::API::Keys
mount ::API::Labels
mount ::API::Lint
mount ::API::Markdown
2022-07-16 23:28:13 +05:30
mount ::API::MavenPackages
2020-03-13 15:44:24 +05:30
mount ::API::Members
2022-07-16 23:28:13 +05:30
mount ::API::MergeRequestApprovals
2020-03-13 15:44:24 +05:30
mount ::API::MergeRequestDiffs
mount ::API::MergeRequests
2022-08-13 15:12:31 +05:30
mount ::API::Metadata
2020-04-22 19:07:51 +05:30
mount ::API::Metrics::Dashboard::Annotations
2020-05-24 23:13:21 +05:30
mount ::API::Metrics::UserStarredDashboards
2020-03-13 15:44:24 +05:30
mount ::API::Namespaces
mount ::API::Notes
mount ::API::NotificationSettings
2021-01-29 00:20:46 +05:30
mount ::API::NpmInstancePackages
2022-07-16 23:28:13 +05:30
mount ::API::NpmProjectPackages
mount ::API::NugetGroupPackages
mount ::API::NugetProjectPackages
mount ::API::PackageFiles
2020-03-13 15:44:24 +05:30
mount ::API::Pages
mount ::API::PagesDomains
2022-07-16 23:28:13 +05:30
mount ::API::PersonalAccessTokens
2020-03-13 15:44:24 +05:30
mount ::API::ProjectClusters
mount ::API::ProjectContainerRepositories
2021-09-04 01:27:46 +05:30
mount ::API::ProjectDebianDistributions
2020-03-13 15:44:24 +05:30
mount ::API::ProjectEvents
mount ::API::ProjectExport
mount ::API::ProjectHooks
2022-07-16 23:28:13 +05:30
mount ::API::ProjectImport
2020-03-13 15:44:24 +05:30
mount ::API::ProjectMilestones
2022-07-16 23:28:13 +05:30
mount ::API::ProjectPackages
2020-05-24 23:13:21 +05:30
mount ::API::ProjectRepositoryStorageMoves
2020-03-13 15:44:24 +05:30
mount ::API::ProjectSnapshots
mount ::API::ProjectSnippets
mount ::API::ProjectStatistics
mount ::API::ProjectTemplates
2022-07-16 23:28:13 +05:30
mount ::API::Projects
2020-03-13 15:44:24 +05:30
mount ::API::ProtectedBranches
mount ::API::ProtectedTags
2022-07-16 23:28:13 +05:30
mount ::API::PypiPackages
2020-03-13 15:44:24 +05:30
mount ::API::Release::Links
2022-07-16 23:28:13 +05:30
mount ::API::Releases
2020-03-13 15:44:24 +05:30
mount ::API::RemoteMirrors
mount ::API::Repositories
2021-03-11 19:13:27 +05:30
mount ::API::ResourceAccessTokens
2022-07-16 23:28:13 +05:30
mount ::API::ResourceLabelEvents
mount ::API::ResourceMilestoneEvents
mount ::API::ResourceStateEvents
2021-03-11 19:13:27 +05:30
mount ::API::RubygemPackages
2020-03-13 15:44:24 +05:30
mount ::API::Search
mount ::API::Settings
mount ::API::SidekiqMetrics
2021-03-08 18:12:59 +05:30
mount ::API::SnippetRepositoryStorageMoves
2020-03-13 15:44:24 +05:30
mount ::API::Snippets
mount ::API::Statistics
mount ::API::Submodules
mount ::API::Subscriptions
mount ::API::Suggestions
mount ::API::SystemHooks
mount ::API::Tags
mount ::API::Templates
2022-07-16 23:28:13 +05:30
mount ::API::Terraform::Modules::V1::Packages
mount ::API::Terraform::State
mount ::API::Terraform::StateVersion
2020-03-13 15:44:24 +05:30
mount ::API::Todos
2021-12-11 22:18:48 +05:30
mount ::API::Topics
2021-01-03 14:25:43 +05:30
mount ::API::Unleash
2020-11-24 15:15:51 +05:30
mount ::API::UsageData
2021-04-29 21:17:54 +05:30
mount ::API::UsageDataNonSqlMetrics
2022-07-16 23:28:13 +05:30
mount ::API::UsageDataQueries
2020-03-13 15:44:24 +05:30
mount ::API::UserCounts
mount ::API::Users
mount ::API::Version
mount ::API::Wikis
end
2019-12-04 20:38:33 +05:30
mount ::API::Internal::Base
2021-01-03 14:25:43 +05:30
mount ::API::Internal::Lfs
2019-12-04 20:38:33 +05:30
mount ::API::Internal::Pages
2020-10-24 23:57:45 +05:30
mount ::API::Internal::Kubernetes
2022-08-13 15:12:31 +05:30
mount ::API::Internal::ErrorTracking
2022-03-02 08:16:31 +05:30
mount ::API::Internal::MailRoom
2022-04-04 11:22:00 +05:30
mount ::API::Internal::ContainerRegistry::Migration
2022-07-23 23:45:48 +05:30
mount ::API::Internal::Workhorse
2016-11-03 12:29:30 +05:30
2020-11-24 15:15:51 +05:30
version 'v3', using: :path do
# Although the following endpoints are kept behind V3 namespace,
# they're not deprecated neither should be removed when V3 get
# removed. They're needed as a layer to integrate with Jira
# Development Panel.
namespace '/', requirements: ::API::V3::Github::ENDPOINT_REQUIREMENTS do
mount ::API::V3::Github
end
end
2022-06-21 17:19:12 +05:30
route :any, '*path', feature_category: :not_owned do # rubocop:todo Gitlab/AvoidFeatureCategoryNotOwned
2016-11-03 12:29:30 +05:30
error!('404 Not Found', 404)
end
2014-09-02 18:07:02 +05:30
end
end
2019-12-04 20:38:33 +05:30
2021-06-08 01:23:25 +05:30
API::API.prepend_mod