|
| Uri ()=default |
| Construct an empty Matrix URI.
|
|
| Uri (const QString &uriOrId) |
| Decode a user input string to a Matrix identifier.
|
|
| Uri (QByteArray primaryId, QByteArray secondaryId={}, QString query={}) |
| Construct a Matrix URI from components.
|
|
| Uri (QUrl url) |
| Construct a Matrix URI from matrix.to or MSC2312 (matrix:) URI.
|
|
Q_INVOKABLE Type | type () const |
| Get the primary type of the Matrix URI (user id, room id or alias)
|
|
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 |
|
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.
Definition at line 26 of file uri.h.
Q_INVOKABLE Type Quotient::Uri::type |
( |
| ) |
const |
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.