Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/api
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api')
-rw-r--r--lib/api/admin/migrations.rb62
-rw-r--r--lib/api/api.rb2
-rw-r--r--lib/api/entities/error_tracking.rb2
-rw-r--r--lib/api/error_tracking/collector.rb156
4 files changed, 64 insertions, 158 deletions
diff --git a/lib/api/admin/migrations.rb b/lib/api/admin/migrations.rb
new file mode 100644
index 00000000000..d4dbdbbb021
--- /dev/null
+++ b/lib/api/admin/migrations.rb
@@ -0,0 +1,62 @@
+# frozen_string_literal: true
+
+module API
+ module Admin
+ class Migrations < ::API::Base
+ feature_category :database
+ urgency :low
+
+ before do
+ authenticated_as_admin!
+ end
+
+ namespace 'admin' do
+ resources 'migrations/:timestamp/mark' do
+ desc 'Mark the migration as successfully executed' do
+ success [
+ { code: 201, message: '201 Created' }
+ ]
+ failure [
+ { code: 401, message: '401 Unauthorized' },
+ { code: 403, message: '403 Forbidden' },
+ { code: 404, message: '404 Not found' },
+ { code: 422, message: 'You can mark only pending migrations' }
+ ]
+ tags %w[migrations]
+ end
+ params do
+ optional :database,
+ type: String,
+ values: Gitlab::Database.all_database_names,
+ desc: 'The name of the database',
+ default: 'main'
+ requires :timestamp,
+ type: Integer,
+ desc: 'The migration version timestamp'
+ end
+ post do
+ response = Database::MarkMigrationService.new(
+ connection: base_model.connection,
+ version: params[:timestamp]
+ ).execute
+
+ if response.success?
+ created!
+ elsif response.reason == :not_found
+ not_found!
+ else
+ render_api_error!('You can mark only pending migrations', 422)
+ end
+ end
+ end
+ end
+
+ helpers do
+ def base_model
+ database = params[:database] || Gitlab::Database::MAIN_DATABASE_NAME
+ @base_model ||= Gitlab::Database.database_base_models[database]
+ end
+ end
+ end
+ end
+end
diff --git a/lib/api/api.rb b/lib/api/api.rb
index 60a12ee7145..55bb549e5bc 100644
--- a/lib/api/api.rb
+++ b/lib/api/api.rb
@@ -182,6 +182,7 @@ module API
mount ::API::Admin::BatchedBackgroundMigrations
mount ::API::Admin::Ci::Variables
mount ::API::Admin::InstanceClusters
+ mount ::API::Admin::Migrations
mount ::API::Admin::PlanLimits
mount ::API::AlertManagementAlerts
mount ::API::Appearance
@@ -327,7 +328,6 @@ module API
mount ::API::Ci::PipelineSchedules
mount ::API::Ci::SecureFiles
mount ::API::Discussions
- mount ::API::ErrorTracking::Collector
mount ::API::GroupBoards
mount ::API::GroupLabels
mount ::API::GroupMilestones
diff --git a/lib/api/entities/error_tracking.rb b/lib/api/entities/error_tracking.rb
index 5e3b983c58c..180293a444d 100644
--- a/lib/api/entities/error_tracking.rb
+++ b/lib/api/entities/error_tracking.rb
@@ -21,7 +21,7 @@ module API
expose :id, documentation: { type: 'integer', example: 1 }
expose :active, documentation: { type: 'boolean' }
expose :public_key, documentation: { type: 'string', example: 'glet_aa77551d849c083f76d0bc545ed053a3' }
- expose :sentry_dsn, documentation: { type: 'string', example: 'https://glet_aa77551d849c083f76d0bc545ed053a3@gitlab.example.com/api/v4/error_tracking/collector/5' }
+ expose :sentry_dsn, documentation: { type: 'string', example: 'https://glet_aa77551d849c083f76d0bc545ed053a3@example.com/errortracking/api/v1/projects/5' }
end
end
end
diff --git a/lib/api/error_tracking/collector.rb b/lib/api/error_tracking/collector.rb
deleted file mode 100644
index e10125e02c6..00000000000
--- a/lib/api/error_tracking/collector.rb
+++ /dev/null
@@ -1,156 +0,0 @@
-# frozen_string_literal: true
-
-module API
- # This API is responsible for collecting error tracking information
- # from sentry client. It allows us to use GitLab as an alternative to
- # sentry backend. For more details see https://gitlab.com/gitlab-org/gitlab/-/issues/329596.
- class ErrorTracking::Collector < ::API::Base
- feature_category :error_tracking
- urgency :low
-
- content_type :envelope, 'application/x-sentry-envelope'
- content_type :json, 'application/json'
- content_type :txt, 'text/plain'
- default_format :envelope
-
- rescue_from Gitlab::ErrorTracking::ErrorRepository::DatabaseError do |e|
- render_api_error!(e.message, 400)
- end
-
- before do
- not_found!('Project') unless project
- not_found! unless feature_enabled?
- not_found! unless active_client_key?
- end
-
- helpers do
- def project
- @project ||= find_project(params[:id])
- end
-
- def feature_enabled?
- Feature.enabled?(:integrated_error_tracking, project) &&
- project.error_tracking_setting&.integrated_enabled?
- end
-
- def find_client_key(public_key)
- return unless public_key.present?
-
- project.error_tracking_client_keys.active.find_by_public_key(public_key)
- end
-
- def active_client_key?
- public_key = extract_public_key
-
- find_client_key(public_key)
- end
-
- def extract_public_key
- # Some SDK send public_key as a param. In this case we don't need to parse headers.
- return params[:sentry_key] if params[:sentry_key].present?
-
- begin
- ::ErrorTracking::Collector::SentryAuthParser.parse(request)[:public_key]
- rescue StandardError
- bad_request!('Failed to parse sentry request')
- end
- end
-
- def validate_payload(payload)
- unless ::ErrorTracking::Collector::PayloadValidator.new.valid?(payload)
- bad_request!('Unsupported sentry payload')
- end
- end
- end
-
- desc 'Submit error tracking event to the project as envelope' do
- detail 'This feature was introduced in GitLab 14.1.'
- end
- params do
- requires :id, types: [String, Integer], desc: 'The ID or URL-encoded path of the project'
- end
- post 'error_tracking/collector/api/:id/envelope' do
- # There is a reason why we have such uncommon path.
- # We depend on a client side error tracking software which
- # modifies URL for its own reasons.
- #
- # When we give user a URL like this
- # HOST/api/v4/error_tracking/collector/123
- #
- # Then error tracking software will convert it like this:
- # HOST/api/v4/error_tracking/collector/api/123/envelope/
-
- begin
- parsed_request = ::ErrorTracking::Collector::SentryRequestParser.parse(request)
- rescue StandardError
- bad_request!('Failed to parse sentry request')
- end
-
- type = parsed_request[:request_type]
-
- # Sentry sends 2 requests on each exception: transaction and event.
- # Everything else is not a desired behavior.
- unless type == 'transaction' || type == 'event'
- render_api_error!('400 Bad Request', 400)
-
- break
- end
-
- # We don't have use for transaction request yet,
- # so we record only event one.
- if type == 'event'
- validate_payload(parsed_request[:event])
-
- ::ErrorTracking::CollectErrorService
- .new(project, nil, event: parsed_request[:event])
- .execute
- end
-
- # Collector should never return any information back.
- # Because DSN and public key are designed for public use,
- # it is safe only for submission of new events.
- #
- # Some clients sdk require status 200 OK to work correctly.
- # See https://gitlab.com/gitlab-org/gitlab/-/issues/343531.
- status 200
- end
-
- desc 'Submit error tracking event to the project' do
- detail 'This feature was introduced in GitLab 14.1.'
- end
- params do
- requires :id, types: [String, Integer], desc: 'The ID or URL-encoded path of the project'
- end
- post 'error_tracking/collector/api/:id/store' do
- # There is a reason why we have such uncommon path.
- # We depend on a client side error tracking software which
- # modifies URL for its own reasons.
- #
- # When we give user a URL like this
- # HOST/api/v4/error_tracking/collector/123
- #
- # Then error tracking software will convert it like this:
- # HOST/api/v4/error_tracking/collector/api/123/store/
-
- begin
- parsed_body = Gitlab::Json.parse(request.body.read)
- rescue StandardError
- bad_request!('Failed to parse sentry request')
- end
-
- validate_payload(parsed_body)
-
- ::ErrorTracking::CollectErrorService
- .new(project, nil, event: parsed_body)
- .execute
-
- # Collector should never return any information back.
- # Because DSN and public key are designed for public use,
- # it is safe only for submission of new events.
- #
- # Some clients sdk require status 200 OK to work correctly.
- # See https://gitlab.com/gitlab-org/gitlab/-/issues/343531.
- status 200
- end
- end
-end