aboutsummaryrefslogtreecommitdiff
path: root/lib/uri.h
diff options
context:
space:
mode:
authorAndres Salomon <dilinger@queued.net>2021-01-18 04:00:14 -0500
committerAndres Salomon <dilinger@queued.net>2021-01-18 04:00:14 -0500
commit09eb39236666e81d5da014acea011dcd74d0999b (patch)
tree52876d96be71be1a39d5d935c1295a51995e8949 /lib/uri.h
parentf1788ee27f33e9339334e0d79bde9a27d9ce2e44 (diff)
parenta4e78956f105875625b572d8b98459ffa86fafe5 (diff)
downloadlibquotient-09eb39236666e81d5da014acea011dcd74d0999b.tar.gz
libquotient-09eb39236666e81d5da014acea011dcd74d0999b.zip
Update upstream source from tag 'upstream/0.6.4'
Update to upstream version '0.6.4' with Debian dir aa8705fd74743e79c043bc9e3e425d5064404cfe
Diffstat (limited to 'lib/uri.h')
-rw-r--r--lib/uri.h85
1 files changed, 85 insertions, 0 deletions
diff --git a/lib/uri.h b/lib/uri.h
new file mode 100644
index 00000000..270766dd
--- /dev/null
+++ b/lib/uri.h
@@ -0,0 +1,85 @@
+#pragma once
+
+#include "quotient_common.h"
+
+#include <QtCore/QUrl>
+#include <QtCore/QUrlQuery>
+
+namespace Quotient {
+
+/*! \brief A wrapper around a Matrix URI or identifier
+ *
+ * This class encapsulates a Matrix resource identifier, passed in either of
+ * 3 forms: a plain Matrix identifier (sigil, localpart, serverpart or, for
+ * modern event ids, sigil and base64 hash); an MSC2312 URI (aka matrix: URI);
+ * or a matrix.to URL. The input can be either encoded (serverparts with
+ * punycode, the rest with percent-encoding) or unencoded (in this case it is
+ * the caller's responsibility to resolve all possible ambiguities).
+ *
+ * The class provides functions to check the validity of the identifier,
+ * its type, and obtain components, also in either unencoded (for displaying)
+ * or encoded (for APIs) form.
+ */
+class Uri : private QUrl {
+ Q_GADGET
+public:
+ enum Type : char {
+ Invalid = char(-1),
+ Empty = 0x0,
+ UserId = '@',
+ RoomId = '!',
+ RoomAlias = '#',
+ Group = '+',
+ BareEventId = '$', // https://github.com/matrix-org/matrix-doc/pull/2644
+ NonMatrix = ':'
+ };
+ Q_ENUM(Type)
+ enum SecondaryType : char { NoSecondaryId = 0x0, EventId = '$' };
+ Q_ENUM(SecondaryType)
+
+ enum UriForm : short { CanonicalUri, MatrixToUri };
+ Q_ENUM(UriForm)
+
+ /// Construct an empty Matrix URI
+ Uri() = default;
+ /*! \brief Decode a user input string to a Matrix identifier
+ *
+ * Accepts plain Matrix ids, MSC2312 URIs (aka matrix: URIs) and
+ * matrix.to URLs. In case of URIs/URLs, it uses QUrl's TolerantMode
+ * parser to decode common mistakes/irregularities (see QUrl documentation
+ * for more details).
+ */
+ Uri(const QString& uriOrId);
+
+ /// Construct a Matrix URI from components
+ explicit Uri(QByteArray primaryId, QByteArray secondaryId = {},
+ QString query = {});
+ /// Construct a Matrix URI from matrix.to or MSC2312 (matrix:) URI
+ explicit Uri(QUrl url);
+
+ static Uri fromUserInput(const QString& uriOrId);
+ static Uri fromUrl(QUrl url);
+
+ /// Get the primary type of the Matrix URI (user id, room id or alias)
+ /*! Note that this does not include an event as a separate type, since
+ * events can only be addressed inside of rooms, which, in turn, are
+ * addressed either by id or alias. If you need to check whether the URI
+ * is specifically an event URI, use secondaryType() instead.
+ */
+ Q_INVOKABLE Type type() const;
+ Q_INVOKABLE SecondaryType secondaryType() const;
+ Q_INVOKABLE QUrl toUrl(UriForm form = CanonicalUri) const;
+ Q_INVOKABLE QString primaryId() const;
+ Q_INVOKABLE QString secondaryId() const;
+ Q_INVOKABLE QString action() const;
+ Q_INVOKABLE void setAction(const QString& newAction);
+ Q_INVOKABLE QStringList viaServers() const;
+ Q_INVOKABLE bool isValid() const;
+ using QUrl::path, QUrl::query, QUrl::fragment;
+ using QUrl::isEmpty, QUrl::toDisplayString;
+
+private:
+ Type primaryType_ = Empty;
+};
+
+}