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>2023-06-03 01:07:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-03 01:07:33 +0300
commit0eb0daa071d5caa34385aba190ba5aece09b1527 (patch)
tree3e8c447803f0f6456e9ce17956c3727005475fea /lib/gitlab/checks/tag_check.rb
parentf91c598db1bfae546441b87715180b9925a85264 (diff)
Add latest changes from gitlab-org/security/gitlab@15-11-stable-ee
Diffstat (limited to 'lib/gitlab/checks/tag_check.rb')
-rw-r--r--lib/gitlab/checks/tag_check.rb12
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/gitlab/checks/tag_check.rb b/lib/gitlab/checks/tag_check.rb
index 007a775eaf5..5c43ca946b5 100644
--- a/lib/gitlab/checks/tag_check.rb
+++ b/lib/gitlab/checks/tag_check.rb
@@ -10,7 +10,8 @@ module Gitlab
'Only a project maintainer or owner can delete a protected tag.',
delete_protected_tag_non_web: 'You can only delete protected tags using the web interface.',
create_protected_tag: 'You are not allowed to create this tag as it is protected.',
- default_branch_collision: 'You cannot use default branch name to create a tag'
+ default_branch_collision: 'You cannot use default branch name to create a tag',
+ prohibited_tag_name: 'You cannot create a tag with a prohibited pattern.'
}.freeze
LOG_MESSAGES = {
@@ -29,11 +30,20 @@ module Gitlab
end
default_branch_collision_check
+ prohibited_tag_checks
protected_tag_checks
end
private
+ def prohibited_tag_checks
+ return if deletion?
+
+ if tag_name.start_with?("refs/tags/") # rubocop: disable Style/GuardClause
+ raise GitAccess::ForbiddenError, ERROR_MESSAGES[:prohibited_tag_name]
+ end
+ end
+
def protected_tag_checks
logger.log_timed(LOG_MESSAGES[__method__]) do
return unless ProtectedTag.protected?(project, tag_name) # rubocop:disable Cop/AvoidReturnFromBlocks