1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
// SPDX-FileCopyrightText: 2020 Kitsune Ral <kitsune-ral@users.sf.net>
// SPDX-License-Identifier: LGPL-2.1-or-later
#include "uri.h"
#include "logging_categories_p.h"
#include "util.h"
#include <QtCore/QRegularExpression>
using namespace Quotient;
namespace {
struct ReplacePair { QLatin1String uriString; char sigil; };
/// \brief Defines bi-directional mapping of path prefixes and sigils
///
/// When there are two prefixes for the same sigil, the first matching
/// entry for a given sigil is used.
constexpr auto replacePairs = std::to_array<ReplacePair>({ { "u/"_L1, '@' },
{ "user/"_L1, '@' },
{ "roomid/"_L1, '!' },
{ "r/"_L1, '#' },
{ "room/"_L1, '#' },
// This is here to support bare (without
// roomid) event ids proposed in MSC2644
{ "e/"_L1, '$' },
{ "event/"_L1, '$' } });
inline auto encodedPath(const QUrl& url)
{
return url.path(QUrl::EncodeDelimiters | QUrl::EncodeUnicode);
}
QString pathSegment(const QUrl& url, int which)
{
return QUrl::fromPercentEncoding(
encodedPath(url).section(u'/', which, which).toUtf8());
}
auto decodeFragmentPart(QStringView part)
{
return QUrl::fromPercentEncoding(part.toLatin1()).toUtf8();
}
}
Uri::Uri(QByteArray primaryId, QByteArray secondaryId, QString query)
{
if (primaryId.isEmpty())
primaryType_ = Empty;
else {
setScheme("matrix"_L1);
QString pathToBe;
primaryType_ = Invalid;
if (primaryId.size() < 2) // There should be something after sigil
return;
for (const auto& p: replacePairs)
if (primaryId[0] == p.sigil) {
primaryType_ = Type(p.sigil);
auto safePrimaryId = primaryId.mid(1);
safePrimaryId.replace('/', "%2F");
pathToBe = p.uriString + QString::fromUtf8(safePrimaryId);
break;
}
if (!secondaryId.isEmpty()) {
if (secondaryId.size() < 2) {
primaryType_ = Invalid;
return;
}
auto safeSecondaryId = secondaryId.mid(1);
safeSecondaryId.replace('/', "%2F");
pathToBe += "/event/"_L1 + QString::fromUtf8(safeSecondaryId);
}
setPath(pathToBe, QUrl::TolerantMode);
}
if (!query.isEmpty())
setQuery(query);
}
Uri::Uri(QUrl url) : QUrl(std::move(url))
{
// NB: don't try to use `url` from here on, it's moved-from and empty
if (isEmpty())
return; // primaryType_ == Empty
primaryType_ = Invalid;
if (!QUrl::isValid()) // MatrixUri::isValid() checks primaryType_
return;
if (scheme() == "matrix"_L1) {
// Check sanity according to MSC2312
const auto& urlPath = encodedPath(*this);
const auto& splitPath = urlPath.split(u'/');
switch (splitPath.size()) {
case 2:
break;
case 4:
if (splitPath[2] == "event"_L1 || splitPath[2] == "e"_L1)
break;
[[fallthrough]];
default:
return; // Invalid
}
for (const auto& p: replacePairs)
if (urlPath.startsWith(p.uriString)) {
primaryType_ = Type(p.sigil);
return; // The only valid return path for matrix: URIs
}
qCDebug(MAIN) << "The matrix: URI is not recognised:"
<< toDisplayString();
return;
}
primaryType_ = NonMatrix; // Default, unless overridden by the code below
if (scheme() == "https"_L1 && authority() == "matrix.to"_L1) {
static const QRegularExpression MatrixToUrlRE(
"^/(?<main>[^:]+(:|%3A|%3a)[^/?]+)(/(?<sec>(\\$|%24)[^?]+))?(\\?(?<query>.+))?$"_L1);
static const auto _ [[maybe_unused]] = QUO_CHECK(MatrixToUrlRE.isValid());
// matrix.to accepts both literal sigils (as well as & and ? used in
// its "query" substitute) and their %-encoded forms;
// so force QUrl to decode everything.
auto f = fragment(QUrl::EncodeUnicode);
if (auto&& m = MatrixToUrlRE.match(f); m.hasMatch())
*this = Uri { decodeFragmentPart(m.capturedView(u"main")),
decodeFragmentPart(m.capturedView(u"sec")),
QString::fromUtf8(decodeFragmentPart(m.capturedView(u"query"))) };
}
}
Uri::Uri(const QString& uriOrId) : Uri(fromUserInput(uriOrId)) {}
Uri Uri::fromUserInput(const QString& uriOrId)
{
if (uriOrId.isEmpty())
return {}; // type() == None
// A quick check if uriOrId is a plain Matrix id
// Bare event ids cannot be resolved without a room scope as per the current
// spec but there's a movement towards making them navigable (see, e.g.,
// https://github.com/matrix-org/matrix-doc/pull/2644) - so treat them
// as valid
if ("!@#+$"_L1.contains(uriOrId[0]))
return Uri { uriOrId.toUtf8() };
return Uri { QUrl::fromUserInput(uriOrId) };
}
Uri::Type Uri::type() const { return primaryType_; }
Uri::SecondaryType Uri::secondaryType() const
{
const auto& type2 = pathSegment(*this, 2);
return type2 == "event"_L1 || type2 == "e"_L1 ? EventId : NoSecondaryId;
}
QUrl Uri::toUrl(UriForm form) const
{
if (!isValid())
return {};
if (form == CanonicalUri || type() == NonMatrix)
return SLICE(*this, QUrl);
QUrl url;
url.setScheme("https"_L1);
url.setHost("matrix.to"_L1);
url.setPath("/"_L1);
auto fragment = u'/' + primaryId();
if (const auto& secId = secondaryId(); !secId.isEmpty())
fragment += u'/' + secId;
if (const auto& q = query(); !q.isEmpty())
fragment += u'?' + q;
url.setFragment(fragment);
return url;
}
QString Uri::primaryId() const
{
if (primaryType_ == Empty || primaryType_ == Invalid)
return {};
auto idStem = pathSegment(*this, 1);
if (!idStem.isEmpty())
idStem.push_front(QChar::fromLatin1(primaryType_));
return idStem;
}
QString Uri::secondaryId() const
{
auto idStem = pathSegment(*this, 3);
if (!idStem.isEmpty())
idStem.push_front(QChar::fromLatin1(secondaryType()));
return idStem;
}
namespace {
inline constexpr auto ActionKey = "action"_L1;
}
QString Uri::action() const
{
return type() == NonMatrix || !isValid() ? QString()
: QUrlQuery{ query() }.queryItemValue(ActionKey);
}
void Uri::setAction(const QString& newAction)
{
if (!isValid()) {
qCWarning(MAIN) << "Cannot set an action on an invalid Quotient::Uri";
return;
}
QUrlQuery q { query() };
q.removeQueryItem(ActionKey);
q.addQueryItem(ActionKey, newAction);
setQuery(q);
}
QStringList Uri::viaServers() const
{
return QUrlQuery{ query() }.allQueryItemValues(u"via"_s, QUrl::EncodeReserved);
}
bool Uri::isValid() const
{
return primaryType_ != Empty && primaryType_ != Invalid;
}
|