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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-03-16 21:08:16 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-03-16 21:08:16 +0300
commit204df35415f2b0ed86c83b31b1d276f52e07e577 (patch)
tree1db4c0f302c145a5b6cd02afe7d49ea72267f612 /lib/gitlab/database/migration_helpers
parentdb19df23733c768c564534a09de2e6718097ec95 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/database/migration_helpers')
-rw-r--r--lib/gitlab/database/migration_helpers/restrict_gitlab_schema.rb58
1 files changed, 58 insertions, 0 deletions
diff --git a/lib/gitlab/database/migration_helpers/restrict_gitlab_schema.rb b/lib/gitlab/database/migration_helpers/restrict_gitlab_schema.rb
new file mode 100644
index 00000000000..b4e31565c60
--- /dev/null
+++ b/lib/gitlab/database/migration_helpers/restrict_gitlab_schema.rb
@@ -0,0 +1,58 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Database
+ module MigrationHelpers
+ module RestrictGitlabSchema
+ extend ActiveSupport::Concern
+
+ MigrationSkippedError = Class.new(StandardError)
+
+ included do
+ class_attribute :allowed_gitlab_schemas
+ end
+
+ class_methods do
+ def restrict_gitlab_migration(gitlab_schema:)
+ unless Gitlab::Database::GitlabSchema.schema_names.include?(gitlab_schema)
+ raise "Unknown 'gitlab_schema: #{gitlab_schema}' specified. It needs to be one of: " \
+ "#{Gitlab::Database::GitlabSchema.schema_names.to_a}"
+ end
+
+ self.allowed_gitlab_schemas = [gitlab_schema]
+ end
+ end
+
+ def migrate(direction)
+ if unmatched_schemas.any?
+ # TODO: Today skipping migration would raise an exception.
+ # Ideally, skipped migration should be ignored (not loaded), or softly ignored.
+ # Read more in: https://gitlab.com/gitlab-org/gitlab/-/issues/355014
+ raise MigrationSkippedError, "Current migration is skipped since it modifies "\
+ "'#{self.class.allowed_gitlab_schemas}' which is outside of '#{allowed_schemas_for_connection}'"
+ end
+
+ Gitlab::Database::QueryAnalyzer.instance.within([validator_class]) do
+ validator_class.allowed_gitlab_schemas = self.allowed_gitlab_schemas
+
+ super
+ end
+ end
+
+ private
+
+ def validator_class
+ Gitlab::Database::QueryAnalyzers::RestrictAllowedSchemas
+ end
+
+ def unmatched_schemas
+ (self.allowed_gitlab_schemas || []) - allowed_schemas_for_connection
+ end
+
+ def allowed_schemas_for_connection
+ Gitlab::Database.gitlab_schemas_for_connection(connection)
+ end
+ end
+ end
+ end
+end