isAllowedURI: Format

This commit is contained in:
Robert Hensing 2023-12-06 14:08:22 +01:00
parent 6cbba914a7
commit 1fa958dda1
1 changed files with 8 additions and 5 deletions

View File

@ -605,11 +605,14 @@ bool isAllowedURI(std::string_view uri, const Strings & allowedUris)
prefix. Thus, the prefix https://github.co does not permit
access to https://github.com. */
for (auto & prefix : allowedUris) {
if (uri == prefix ||
(uri.size() > prefix.size()
&& prefix.size() > 0
&& hasPrefix(uri, prefix)
&& (prefix[prefix.size() - 1] == '/' || uri[prefix.size()] == '/')))
if (uri == prefix
// Allow access to subdirectories of the prefix.
|| (uri.size() > prefix.size()
&& prefix.size() > 0
&& hasPrefix(uri, prefix)
&& (
prefix[prefix.size() - 1] == '/'
|| uri[prefix.size()] == '/')))
return true;
}