2014-07-27 10:40:00 -04:00
|
|
|
module Gitlab
|
|
|
|
module GitRefValidator
|
|
|
|
extend self
|
|
|
|
# Validates a given name against the git reference specification
|
|
|
|
#
|
|
|
|
# Returns true for a valid reference name, false otherwise
|
|
|
|
def validate(ref_name)
|
2014-11-06 06:07:16 -05:00
|
|
|
Gitlab::Utils.system_silent(
|
2015-11-03 17:10:38 -05:00
|
|
|
%W(#{Gitlab.config.git.bin_path} check-ref-format refs/#{ref_name}))
|
2014-07-27 10:40:00 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|