2012-11-27 22:14:05 -05:00
|
|
|
module Gitlab
|
|
|
|
module Regex
|
|
|
|
extend self
|
|
|
|
|
2015-04-24 09:16:38 -04:00
|
|
|
NAMESPACE_REGEX_STR = '(?:[a-zA-Z0-9_\.][a-zA-Z0-9_\-\.]*[a-zA-Z0-9_\-]|[a-zA-Z0-9_])'.freeze
|
2015-03-24 10:21:37 -04:00
|
|
|
|
2015-04-24 09:16:38 -04:00
|
|
|
def namespace_regex
|
|
|
|
@namespace_regex ||= /\A#{NAMESPACE_REGEX_STR}\z/.freeze
|
2012-11-27 22:14:05 -05:00
|
|
|
end
|
|
|
|
|
2015-04-24 09:16:38 -04:00
|
|
|
def namespace_regex_message
|
2015-03-24 09:55:14 -04:00
|
|
|
"can contain only letters, digits, '_', '-' and '.'. " \
|
2015-04-21 05:52:54 -04:00
|
|
|
"Cannot start with '-' or end in '.'." \
|
2015-03-24 09:55:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def namespace_name_regex
|
2015-02-08 18:01:31 -05:00
|
|
|
@namespace_name_regex ||= /\A[\p{Alnum}\p{Pd}_\. ]*\z/.freeze
|
2014-06-26 03:53:01 -04:00
|
|
|
end
|
|
|
|
|
2015-03-24 09:55:14 -04:00
|
|
|
def namespace_name_regex_message
|
2015-02-08 18:01:31 -05:00
|
|
|
"can contain only letters, digits, '_', '.', dash and space."
|
2015-03-24 09:55:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2012-12-25 17:50:41 -05:00
|
|
|
def project_name_regex
|
2015-02-08 18:01:31 -05:00
|
|
|
@project_name_regex ||= /\A[\p{Alnum}_][\p{Alnum}\p{Pd}_\. ]*\z/.freeze
|
2012-12-25 17:50:41 -05:00
|
|
|
end
|
|
|
|
|
2015-03-24 09:55:14 -04:00
|
|
|
def project_name_regex_message
|
2015-02-08 18:01:31 -05:00
|
|
|
"can contain only letters, digits, '_', '.', dash and space. " \
|
2014-06-26 03:53:01 -04:00
|
|
|
"It must start with letter, digit or '_'."
|
|
|
|
end
|
|
|
|
|
2015-03-24 09:55:14 -04:00
|
|
|
|
|
|
|
def project_path_regex
|
|
|
|
@project_path_regex ||= /\A[a-zA-Z0-9_.][a-zA-Z0-9_\-\.]*(?<!\.git)\z/.freeze
|
2013-02-18 02:28:18 -05:00
|
|
|
end
|
|
|
|
|
2015-03-24 09:55:14 -04:00
|
|
|
def project_path_regex_message
|
|
|
|
"can contain only letters, digits, '_', '-' and '.'. " \
|
|
|
|
"Cannot start with '-' or end in '.git'" \
|
2014-06-26 03:53:01 -04:00
|
|
|
end
|
|
|
|
|
2015-03-24 09:55:14 -04:00
|
|
|
|
|
|
|
def file_name_regex
|
|
|
|
@file_name_regex ||= /\A[a-zA-Z0-9_\-\.]*\z/.freeze
|
2012-11-27 22:14:05 -05:00
|
|
|
end
|
2014-01-14 12:26:01 -05:00
|
|
|
|
2015-03-24 09:55:14 -04:00
|
|
|
def file_name_regex_message
|
|
|
|
"can contain only letters, digits, '_', '-' and '.'. "
|
2014-06-26 03:53:01 -04:00
|
|
|
end
|
|
|
|
|
2015-10-19 17:52:46 -04:00
|
|
|
def file_path_regex
|
|
|
|
@file_path_regex ||= /\A[a-zA-Z0-9_\-\.\/]*\z/.freeze
|
|
|
|
end
|
|
|
|
|
|
|
|
def file_path_regex_message
|
|
|
|
"can contain only letters, digits, '_', '-' and '.'. Separate directories with a '/'. "
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def directory_traversal_regex
|
|
|
|
@directory_traversal_regex ||= /\.{2}/.freeze
|
|
|
|
end
|
|
|
|
|
|
|
|
def directory_traversal_regex_message
|
|
|
|
"cannot include directory traversal. "
|
|
|
|
end
|
|
|
|
|
2015-03-24 09:55:14 -04:00
|
|
|
|
2013-12-20 14:12:44 -05:00
|
|
|
def archive_formats_regex
|
2015-03-24 09:55:14 -04:00
|
|
|
# |zip|tar| tar.gz | tar.bz2 |
|
|
|
|
@archive_formats_regex ||= /(zip|tar|tar\.gz|tgz|gz|tar\.bz2|tbz|tbz2|tb2|bz2)/.freeze
|
2013-12-20 14:12:44 -05:00
|
|
|
end
|
2012-11-27 22:14:05 -05:00
|
|
|
|
2013-09-02 06:48:32 -04:00
|
|
|
def git_reference_regex
|
|
|
|
# Valid git ref regex, see:
|
|
|
|
# https://www.kernel.org/pub/software/scm/git/docs/git-check-ref-format.html
|
|
|
|
|
2015-03-24 09:55:14 -04:00
|
|
|
@git_reference_regex ||= %r{
|
2013-09-02 06:48:32 -04:00
|
|
|
(?!
|
2013-12-23 21:01:38 -05:00
|
|
|
(?# doesn't begins with)
|
|
|
|
\/| (?# rule #6)
|
|
|
|
(?# doesn't contain)
|
2013-09-02 06:48:32 -04:00
|
|
|
.*(?:
|
2013-12-23 21:01:38 -05:00
|
|
|
[\/.]\.| (?# rule #1,3)
|
|
|
|
\/\/| (?# rule #6)
|
|
|
|
@\{| (?# rule #8)
|
|
|
|
\\ (?# rule #9)
|
2013-09-02 06:48:32 -04:00
|
|
|
)
|
|
|
|
)
|
2013-12-23 21:01:38 -05:00
|
|
|
[^\000-\040\177~^:?*\[]+ (?# rule #4-5)
|
|
|
|
(?# doesn't end with)
|
|
|
|
(?<!\.lock) (?# rule #1)
|
|
|
|
(?<![\/.]) (?# rule #6-7)
|
2015-03-24 09:55:14 -04:00
|
|
|
}x.freeze
|
2012-11-27 22:14:05 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|