gitweb: Move check-ref-format code into separate function
This check will be used in more than one place later. Signed-off-by: Krzesimir Nowak <krzesimir@endocode.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
a155a5f075
commit
c0bc2265ef
@ -1452,6 +1452,16 @@ sub validate_pathname {
|
|||||||
return $input;
|
return $input;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub is_valid_ref_format {
|
||||||
|
my $input = shift || return undef;
|
||||||
|
|
||||||
|
# restrictions on ref name according to git-check-ref-format
|
||||||
|
if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
|
||||||
|
return undef;
|
||||||
|
}
|
||||||
|
return $input;
|
||||||
|
}
|
||||||
|
|
||||||
sub validate_refname {
|
sub validate_refname {
|
||||||
my $input = shift || return undef;
|
my $input = shift || return undef;
|
||||||
|
|
||||||
@ -1462,10 +1472,9 @@ sub validate_refname {
|
|||||||
# it must be correct pathname
|
# it must be correct pathname
|
||||||
$input = validate_pathname($input)
|
$input = validate_pathname($input)
|
||||||
or return undef;
|
or return undef;
|
||||||
# restrictions on ref name according to git-check-ref-format
|
# check git-check-ref-format restrictions
|
||||||
if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
|
is_valid_ref_format($input)
|
||||||
return undef;
|
or return undef;
|
||||||
}
|
|
||||||
return $input;
|
return $input;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user