mpd/src/util/UriRelative.cxx
2022-07-01 10:56:29 +02:00

201 lines
5.2 KiB
C++

/*
* Copyright 2008-2022 Max Kellermann <max.kellermann@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "UriRelative.hxx"
#include "UriExtract.hxx"
#include "StringAPI.hxx"
#include "StringCompare.hxx"
#include "Compiler.h"
#include <cassert>
#include <string.h>
using std::string_view_literals::operator""sv;
bool
uri_is_child(const char *parent, const char *child) noexcept
{
#if !CLANG_CHECK_VERSION(3,6)
/* disabled on clang due to -Wtautological-pointer-compare */
assert(parent != nullptr);
assert(child != nullptr);
#endif
const char *suffix = StringAfterPrefix(child, parent);
return suffix != nullptr && *suffix != 0 &&
(suffix == child || suffix[-1] == '/' || *suffix == '/');
}
bool
uri_is_child_or_same(const char *parent, const char *child) noexcept
{
return StringIsEqual(parent, child) || uri_is_child(parent, child);
}
std::string
uri_apply_base(std::string_view uri, std::string_view base) noexcept
{
if (uri.front() == '/') {
/* absolute path: replace the whole URI path in base */
auto i = base.find("://");
if (i == base.npos)
/* no scheme: override base completely */
return std::string(uri);
/* find the first slash after the host part */
i = base.find('/', i + 3);
if (i == base.npos)
/* there's no URI path - simply append uri */
i = base.length();
std::string out(base.substr(0, i));
out += uri;
return out;
}
std::string out(base);
if (out.back() != '/')
out.push_back('/');
out += uri;
return out;
}
static void
ClearFilename(std::string_view &path) noexcept
{
const auto slash = path.rfind('/');
if (slash != path.npos)
path = path.substr(0, slash + 1);
else
path = path.substr(0, 0);
}
static void
StripLeadingSlashes(std::string_view &s) noexcept
{
while (s.starts_with('/'))
s.remove_prefix(1);
}
static bool
ConsumeLastSegment(std::string_view &path) noexcept
{
assert(!path.empty());
assert(path.back() == '/');
path.remove_suffix(1);
const auto slash = path.rfind('/');
if (slash == path.npos)
return false;
path = path.substr(0, slash + 1);
return true;
}
static bool
ConsumeSpecial(std::string_view &relative_path, std::string_view &base_path) noexcept
{
while (true) {
if (SkipPrefix(relative_path, "./"sv)) {
StripLeadingSlashes(relative_path);
} else if (SkipPrefix(relative_path, "../"sv)) {
StripLeadingSlashes(relative_path);
if (!ConsumeLastSegment(base_path))
return false;
} else if (relative_path == "."sv) {
relative_path.remove_prefix(1);
return true;
} else
return true;
}
}
std::string
uri_apply_relative(std::string_view relative_uri,
std::string_view base_uri) noexcept
{
if (relative_uri.empty())
return std::string(base_uri);
if (uri_has_scheme(relative_uri))
return std::string(relative_uri);
// TODO: support double slash at beginning of relative_uri
if (relative_uri.front() == '/') {
/* absolute path: replace the whole URI path in base */
auto i = base_uri.find("://");
if (i == base_uri.npos)
/* no scheme: override base completely */
return std::string{relative_uri};
/* find the first slash after the host part */
i = base_uri.find('/', i + 3);
if (i == base_uri.npos)
/* there's no URI path - simply append uri */
i = base_uri.length();
std::string result{base_uri.substr(0, i)};
result.append(relative_uri);
return result;
}
std::string_view relative_path{relative_uri};
const auto _base_path = uri_get_path(base_uri);
if (_base_path.data() == nullptr) {
std::string result(base_uri);
if (relative_path.front() != '/')
result.push_back('/');
while (SkipPrefix(relative_path, "./"sv)) {}
if (relative_path.starts_with("../"sv))
return {};
if (relative_path != "."sv)
result += relative_path;
return result;
}
std::string_view base_path(_base_path);
ClearFilename(base_path);
if (!ConsumeSpecial(relative_path, base_path))
return {};
std::string result(base_uri.data(), _base_path.data());
result.append(base_path);
result.append(relative_path);
return result;
}