summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDylan Griffith <dyl.griffith@gmail.com>2017-11-19 14:01:01 +1100
committerDylan Griffith <dyl.griffith@gmail.com>2018-02-13 11:07:12 +1100
commit06c111ca8f4373069ad0d3bbcf9e1ce2f5fd6d97 (patch)
treeb96adc4b337cc42a436e6b4baec44527d9fd76cc /lib
parent498ade4801a822f8704390b10d178af9fe7987cb (diff)
downloadgitlab-ce-06c111ca8f4373069ad0d3bbcf9e1ce2f5fd6d97.tar.gz
Ensure users can't create environments with leading or trailing slashes (Fixes #39885)39885-ensure-users-cannot-create-environments-with-leading-slashes
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/regex.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/gitlab/regex.rb b/lib/gitlab/regex.rb
index 7ab85e1c35c..ac3de2a8f71 100644
--- a/lib/gitlab/regex.rb
+++ b/lib/gitlab/regex.rb
@@ -40,12 +40,16 @@ module Gitlab
'a-zA-Z0-9_/\\$\\{\\}\\. \\-'
end
+ def environment_name_regex_chars_without_slash
+ 'a-zA-Z0-9_\\$\\{\\}\\. -'
+ end
+
def environment_name_regex
- @environment_name_regex ||= /\A[#{environment_name_regex_chars}]+\z/.freeze
+ @environment_name_regex ||= /\A[#{environment_name_regex_chars_without_slash}]([#{environment_name_regex_chars}]*[#{environment_name_regex_chars_without_slash}])?\z/.freeze
end
def environment_name_regex_message
- "can contain only letters, digits, '-', '_', '/', '$', '{', '}', '.', and spaces"
+ "can contain only letters, digits, '-', '_', '/', '$', '{', '}', '.', and spaces, but it cannot start or end with '/'"
end
def kubernetes_namespace_regex