aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/application-service/definitions/location.cpp31
-rw-r--r--lib/application-service/definitions/location.h33
-rw-r--r--lib/application-service/definitions/location_batch.cpp22
-rw-r--r--lib/application-service/definitions/location_batch.h30
-rw-r--r--lib/application-service/definitions/protocol.cpp74
-rw-r--r--lib/application-service/definitions/protocol.h71
-rw-r--r--lib/application-service/definitions/protocol_metadata.cpp22
-rw-r--r--lib/application-service/definitions/protocol_metadata.h27
-rw-r--r--lib/application-service/definitions/user.cpp31
-rw-r--r--lib/application-service/definitions/user.h33
-rw-r--r--lib/application-service/definitions/user_batch.cpp22
-rw-r--r--lib/application-service/definitions/user_batch.h30
-rw-r--r--lib/csapi/third_party_lookup.cpp282
-rw-r--r--lib/csapi/third_party_lookup.h240
14 files changed, 948 insertions, 0 deletions
diff --git a/lib/application-service/definitions/location.cpp b/lib/application-service/definitions/location.cpp
new file mode 100644
index 00000000..f70acd55
--- /dev/null
+++ b/lib/application-service/definitions/location.cpp
@@ -0,0 +1,31 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#include "location.h"
+
+using namespace QMatrixClient;
+
+QJsonObject QMatrixClient::toJson(const Location& pod)
+{
+ QJsonObject _json;
+ addParam<IfNotEmpty>(_json, QStringLiteral("alias"), pod.alias);
+ addParam<IfNotEmpty>(_json, QStringLiteral("protocol"), pod.protocol);
+ addParam<IfNotEmpty>(_json, QStringLiteral("fields"), pod.fields);
+ return _json;
+}
+
+Location FromJson<Location>::operator()(const QJsonValue& jv)
+{
+ const auto& _json = jv.toObject();
+ Location result;
+ result.alias =
+ fromJson<QString>(_json.value("alias"_ls));
+ result.protocol =
+ fromJson<QString>(_json.value("protocol"_ls));
+ result.fields =
+ fromJson<QJsonObject>(_json.value("fields"_ls));
+
+ return result;
+}
+
diff --git a/lib/application-service/definitions/location.h b/lib/application-service/definitions/location.h
new file mode 100644
index 00000000..af407a1a
--- /dev/null
+++ b/lib/application-service/definitions/location.h
@@ -0,0 +1,33 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#pragma once
+
+
+#include <QtCore/QJsonObject>
+
+#include "converters.h"
+
+namespace QMatrixClient
+{
+ // Data structures
+
+ struct Location
+ {
+ /// An alias for a matrix room.
+ QString alias;
+ /// The protocol ID that the third party location is a part of.
+ QString protocol;
+ /// Information used to identify this third party location.
+ QJsonObject fields;
+ };
+
+ QJsonObject toJson(const Location& pod);
+
+ template <> struct FromJson<Location>
+ {
+ Location operator()(const QJsonValue& jv);
+ };
+
+} // namespace QMatrixClient
diff --git a/lib/application-service/definitions/location_batch.cpp b/lib/application-service/definitions/location_batch.cpp
new file mode 100644
index 00000000..c9b9e95b
--- /dev/null
+++ b/lib/application-service/definitions/location_batch.cpp
@@ -0,0 +1,22 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#include "location_batch.h"
+
+using namespace QMatrixClient;
+
+QJsonObject QMatrixClient::toJson(const LocationBatch& pod)
+{
+ QJsonObject _json;
+ return _json;
+}
+
+LocationBatch FromJson<LocationBatch>::operator()(const QJsonValue& jv)
+{
+ const auto& _json = jv.toObject();
+ LocationBatch result;
+
+ return result;
+}
+
diff --git a/lib/application-service/definitions/location_batch.h b/lib/application-service/definitions/location_batch.h
new file mode 100644
index 00000000..59e0d14e
--- /dev/null
+++ b/lib/application-service/definitions/location_batch.h
@@ -0,0 +1,30 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#pragma once
+
+
+#include "csapi/../application-service/definitions/location.h"
+#include "converters.h"
+#include <QtCore/QVector>
+
+#include "converters.h"
+
+namespace QMatrixClient
+{
+ // Data structures
+
+ /// List of matched third party locations.
+ struct LocationBatch : QVector<Location>
+ {
+ };
+
+ QJsonObject toJson(const LocationBatch& pod);
+
+ template <> struct FromJson<LocationBatch>
+ {
+ LocationBatch operator()(const QJsonValue& jv);
+ };
+
+} // namespace QMatrixClient
diff --git a/lib/application-service/definitions/protocol.cpp b/lib/application-service/definitions/protocol.cpp
new file mode 100644
index 00000000..65cbc20e
--- /dev/null
+++ b/lib/application-service/definitions/protocol.cpp
@@ -0,0 +1,74 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#include "protocol.h"
+
+using namespace QMatrixClient;
+
+QJsonObject QMatrixClient::toJson(const FieldType& pod)
+{
+ QJsonObject _json;
+ addParam<IfNotEmpty>(_json, QStringLiteral("regexp"), pod.regexp);
+ addParam<IfNotEmpty>(_json, QStringLiteral("placeholder"), pod.placeholder);
+ return _json;
+}
+
+FieldType FromJson<FieldType>::operator()(const QJsonValue& jv)
+{
+ const auto& _json = jv.toObject();
+ FieldType result;
+ result.regexp =
+ fromJson<QString>(_json.value("regexp"_ls));
+ result.placeholder =
+ fromJson<QString>(_json.value("placeholder"_ls));
+
+ return result;
+}
+
+QJsonObject QMatrixClient::toJson(const FieldTypes& pod)
+{
+ QJsonObject _json;
+ addParam<IfNotEmpty>(_json, QStringLiteral("fieldname"), pod.fieldname);
+ return _json;
+}
+
+FieldTypes FromJson<FieldTypes>::operator()(const QJsonValue& jv)
+{
+ const auto& _json = jv.toObject();
+ FieldTypes result;
+ result.fieldname =
+ fromJson<FieldType>(_json.value("fieldname"_ls));
+
+ return result;
+}
+
+QJsonObject QMatrixClient::toJson(const Protocol& pod)
+{
+ QJsonObject _json;
+ addParam<IfNotEmpty>(_json, QStringLiteral("user_fields"), pod.userFields);
+ addParam<IfNotEmpty>(_json, QStringLiteral("location_fields"), pod.locationFields);
+ addParam<IfNotEmpty>(_json, QStringLiteral("icon"), pod.icon);
+ addParam<IfNotEmpty>(_json, QStringLiteral("field_types"), pod.fieldTypes);
+ addParam<IfNotEmpty>(_json, QStringLiteral("instances"), pod.instances);
+ return _json;
+}
+
+Protocol FromJson<Protocol>::operator()(const QJsonValue& jv)
+{
+ const auto& _json = jv.toObject();
+ Protocol result;
+ result.userFields =
+ fromJson<QStringList>(_json.value("user_fields"_ls));
+ result.locationFields =
+ fromJson<QStringList>(_json.value("location_fields"_ls));
+ result.icon =
+ fromJson<QString>(_json.value("icon"_ls));
+ result.fieldTypes =
+ fromJson<FieldTypes>(_json.value("field_types"_ls));
+ result.instances =
+ fromJson<QVector<QJsonObject>>(_json.value("instances"_ls));
+
+ return result;
+}
+
diff --git a/lib/application-service/definitions/protocol.h b/lib/application-service/definitions/protocol.h
new file mode 100644
index 00000000..d4124779
--- /dev/null
+++ b/lib/application-service/definitions/protocol.h
@@ -0,0 +1,71 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#pragma once
+
+
+#include <QtCore/QJsonObject>
+#include <QtCore/QVector>
+#include "converters.h"
+
+#include "converters.h"
+
+namespace QMatrixClient
+{
+ // Data structures
+
+ /// Definition of valid values for a field.
+ struct FieldType
+ {
+ /// A regular expression for validation of a field's value.
+ QString regexp;
+ /// An placeholder serving as a valid example of the field value.
+ QString placeholder;
+ };
+
+ QJsonObject toJson(const FieldType& pod);
+
+ template <> struct FromJson<FieldType>
+ {
+ FieldType operator()(const QJsonValue& jv);
+ };
+
+ /// All location or user fields should have an entry here.
+ struct FieldTypes
+ {
+ /// Definition of valid values for a field.
+ Omittable<FieldType> fieldname;
+ };
+
+ QJsonObject toJson(const FieldTypes& pod);
+
+ template <> struct FromJson<FieldTypes>
+ {
+ FieldTypes operator()(const QJsonValue& jv);
+ };
+
+ struct Protocol
+ {
+ /// Fields used to identify a third party user.
+ QStringList userFields;
+ /// Fields used to identify a third party location.
+ QStringList locationFields;
+ /// An icon representing the third party protocol.
+ QString icon;
+ /// All location or user fields should have an entry here.
+ Omittable<FieldTypes> fieldTypes;
+ /// A list of objects representing independent instances of configuration.
+ /// For instance multiple networks on IRC if multiple are bridged by the
+ /// same bridge.
+ QVector<QJsonObject> instances;
+ };
+
+ QJsonObject toJson(const Protocol& pod);
+
+ template <> struct FromJson<Protocol>
+ {
+ Protocol operator()(const QJsonValue& jv);
+ };
+
+} // namespace QMatrixClient
diff --git a/lib/application-service/definitions/protocol_metadata.cpp b/lib/application-service/definitions/protocol_metadata.cpp
new file mode 100644
index 00000000..eb740bb6
--- /dev/null
+++ b/lib/application-service/definitions/protocol_metadata.cpp
@@ -0,0 +1,22 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#include "protocol_metadata.h"
+
+using namespace QMatrixClient;
+
+QJsonObject QMatrixClient::toJson(const ProtocolMetadata& pod)
+{
+ QJsonObject _json;
+ return _json;
+}
+
+ProtocolMetadata FromJson<ProtocolMetadata>::operator()(const QJsonValue& jv)
+{
+ const auto& _json = jv.toObject();
+ ProtocolMetadata result;
+
+ return result;
+}
+
diff --git a/lib/application-service/definitions/protocol_metadata.h b/lib/application-service/definitions/protocol_metadata.h
new file mode 100644
index 00000000..3c4bcd99
--- /dev/null
+++ b/lib/application-service/definitions/protocol_metadata.h
@@ -0,0 +1,27 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#pragma once
+
+
+
+#include "converters.h"
+
+namespace QMatrixClient
+{
+ // Data structures
+
+ /// Dictionary of supported third party protocols.
+ struct ProtocolMetadata
+ {
+ };
+
+ QJsonObject toJson(const ProtocolMetadata& pod);
+
+ template <> struct FromJson<ProtocolMetadata>
+ {
+ ProtocolMetadata operator()(const QJsonValue& jv);
+ };
+
+} // namespace QMatrixClient
diff --git a/lib/application-service/definitions/user.cpp b/lib/application-service/definitions/user.cpp
new file mode 100644
index 00000000..dfc12f29
--- /dev/null
+++ b/lib/application-service/definitions/user.cpp
@@ -0,0 +1,31 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#include "user.h"
+
+using namespace QMatrixClient;
+
+QJsonObject QMatrixClient::toJson(const User& pod)
+{
+ QJsonObject _json;
+ addParam<IfNotEmpty>(_json, QStringLiteral("userid"), pod.userid);
+ addParam<IfNotEmpty>(_json, QStringLiteral("protocol"), pod.protocol);
+ addParam<IfNotEmpty>(_json, QStringLiteral("fields"), pod.fields);
+ return _json;
+}
+
+User FromJson<User>::operator()(const QJsonValue& jv)
+{
+ const auto& _json = jv.toObject();
+ User result;
+ result.userid =
+ fromJson<QString>(_json.value("userid"_ls));
+ result.protocol =
+ fromJson<QString>(_json.value("protocol"_ls));
+ result.fields =
+ fromJson<QJsonObject>(_json.value("fields"_ls));
+
+ return result;
+}
+
diff --git a/lib/application-service/definitions/user.h b/lib/application-service/definitions/user.h
new file mode 100644
index 00000000..3f609dea
--- /dev/null
+++ b/lib/application-service/definitions/user.h
@@ -0,0 +1,33 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#pragma once
+
+
+#include <QtCore/QJsonObject>
+
+#include "converters.h"
+
+namespace QMatrixClient
+{
+ // Data structures
+
+ struct User
+ {
+ /// A Matrix User ID represting a third party user.
+ QString userid;
+ /// The protocol ID that the third party location is a part of.
+ QString protocol;
+ /// Information used to identify this third party location.
+ QJsonObject fields;
+ };
+
+ QJsonObject toJson(const User& pod);
+
+ template <> struct FromJson<User>
+ {
+ User operator()(const QJsonValue& jv);
+ };
+
+} // namespace QMatrixClient
diff --git a/lib/application-service/definitions/user_batch.cpp b/lib/application-service/definitions/user_batch.cpp
new file mode 100644
index 00000000..bbdf6835
--- /dev/null
+++ b/lib/application-service/definitions/user_batch.cpp
@@ -0,0 +1,22 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#include "user_batch.h"
+
+using namespace QMatrixClient;
+
+QJsonObject QMatrixClient::toJson(const UserBatch& pod)
+{
+ QJsonObject _json;
+ return _json;
+}
+
+UserBatch FromJson<UserBatch>::operator()(const QJsonValue& jv)
+{
+ const auto& _json = jv.toObject();
+ UserBatch result;
+
+ return result;
+}
+
diff --git a/lib/application-service/definitions/user_batch.h b/lib/application-service/definitions/user_batch.h
new file mode 100644
index 00000000..e732eea1
--- /dev/null
+++ b/lib/application-service/definitions/user_batch.h
@@ -0,0 +1,30 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#pragma once
+
+
+#include "csapi/../application-service/definitions/user.h"
+#include "converters.h"
+#include <QtCore/QVector>
+
+#include "converters.h"
+
+namespace QMatrixClient
+{
+ // Data structures
+
+ /// List of matched third party users.
+ struct UserBatch : QVector<User>
+ {
+ };
+
+ QJsonObject toJson(const UserBatch& pod);
+
+ template <> struct FromJson<UserBatch>
+ {
+ UserBatch operator()(const QJsonValue& jv);
+ };
+
+} // namespace QMatrixClient
diff --git a/lib/csapi/third_party_lookup.cpp b/lib/csapi/third_party_lookup.cpp
new file mode 100644
index 00000000..783d6896
--- /dev/null
+++ b/lib/csapi/third_party_lookup.cpp
@@ -0,0 +1,282 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#include "third_party_lookup.h"
+
+#include "converters.h"
+
+#include <QtCore/QStringBuilder>
+
+using namespace QMatrixClient;
+
+static const auto basePath = QStringLiteral("/_matrix/client/r0");
+
+class GetProtocolsJob::Private
+{
+ public:
+ ProtocolMetadata data;
+};
+
+QUrl GetProtocolsJob::makeRequestUrl(QUrl baseUrl)
+{
+ return BaseJob::makeRequestUrl(std::move(baseUrl),
+ basePath % "/thirdparty/protocols");
+}
+
+static const auto GetProtocolsJobName = QStringLiteral("GetProtocolsJob");
+
+GetProtocolsJob::GetProtocolsJob()
+ : BaseJob(HttpVerb::Get, GetProtocolsJobName,
+ basePath % "/thirdparty/protocols", false)
+ , d(new Private)
+{
+}
+
+GetProtocolsJob::~GetProtocolsJob() = default;
+
+const ProtocolMetadata& GetProtocolsJob::data() const
+{
+ return d->data;
+}
+
+BaseJob::Status GetProtocolsJob::parseJson(const QJsonDocument& data)
+{
+ auto json = data.object();
+ if (!json.contains("data"_ls))
+ return { JsonParseError,
+ "The key 'data' not found in the response" };
+ d->data = fromJson<ProtocolMetadata>(json.value("data"_ls));
+ return Success;
+}
+
+class GetProtocolMetadataJob::Private
+{
+ public:
+ Protocol data;
+};
+
+QUrl GetProtocolMetadataJob::makeRequestUrl(QUrl baseUrl, const QString& protocol)
+{
+ return BaseJob::makeRequestUrl(std::move(baseUrl),
+ basePath % "/thirdparty/protocol/" % protocol);
+}
+
+static const auto GetProtocolMetadataJobName = QStringLiteral("GetProtocolMetadataJob");
+
+GetProtocolMetadataJob::GetProtocolMetadataJob(const QString& protocol)
+ : BaseJob(HttpVerb::Get, GetProtocolMetadataJobName,
+ basePath % "/thirdparty/protocol/" % protocol, false)
+ , d(new Private)
+{
+}
+
+GetProtocolMetadataJob::~GetProtocolMetadataJob() = default;
+
+const Protocol& GetProtocolMetadataJob::data() const
+{
+ return d->data;
+}
+
+BaseJob::Status GetProtocolMetadataJob::parseJson(const QJsonDocument& data)
+{
+ auto json = data.object();
+ if (!json.contains("data"_ls))
+ return { JsonParseError,
+ "The key 'data' not found in the response" };
+ d->data = fromJson<Protocol>(json.value("data"_ls));
+ return Success;
+}
+
+class QueryLocationByProtocolJob::Private
+{
+ public:
+ LocationBatch data;
+};
+
+BaseJob::Query queryToQueryLocationByProtocol(const QString& searchFields)
+{
+ BaseJob::Query _q;
+ addParam<IfNotEmpty>(_q, QStringLiteral("searchFields"), searchFields);
+ return _q;
+}
+
+QUrl QueryLocationByProtocolJob::makeRequestUrl(QUrl baseUrl, const QString& protocol, const QString& searchFields)
+{
+ return BaseJob::makeRequestUrl(std::move(baseUrl),
+ basePath % "/thirdparty/location/" % protocol,
+ queryToQueryLocationByProtocol(searchFields));
+}
+
+static const auto QueryLocationByProtocolJobName = QStringLiteral("QueryLocationByProtocolJob");
+
+QueryLocationByProtocolJob::QueryLocationByProtocolJob(const QString& protocol, const QString& searchFields)
+ : BaseJob(HttpVerb::Get, QueryLocationByProtocolJobName,
+ basePath % "/thirdparty/location/" % protocol,
+ queryToQueryLocationByProtocol(searchFields),
+ {}, false)
+ , d(new Private)
+{
+}
+
+QueryLocationByProtocolJob::~QueryLocationByProtocolJob() = default;
+
+const LocationBatch& QueryLocationByProtocolJob::data() const
+{
+ return d->data;
+}
+
+BaseJob::Status QueryLocationByProtocolJob::parseJson(const QJsonDocument& data)
+{
+ auto json = data.object();
+ if (!json.contains("data"_ls))
+ return { JsonParseError,
+ "The key 'data' not found in the response" };
+ d->data = fromJson<LocationBatch>(json.value("data"_ls));
+ return Success;
+}
+
+class QueryUserByProtocolJob::Private
+{
+ public:
+ UserBatch data;
+};
+
+BaseJob::Query queryToQueryUserByProtocol(const QString& field1Field2)
+{
+ BaseJob::Query _q;
+ addParam<IfNotEmpty>(_q, QStringLiteral("field1, field2..."), field1Field2);
+ return _q;
+}
+
+QUrl QueryUserByProtocolJob::makeRequestUrl(QUrl baseUrl, const QString& protocol, const QString& field1Field2)
+{
+ return BaseJob::makeRequestUrl(std::move(baseUrl),
+ basePath % "/thirdparty/user/" % protocol,
+ queryToQueryUserByProtocol(field1Field2));
+}
+
+static const auto QueryUserByProtocolJobName = QStringLiteral("QueryUserByProtocolJob");
+
+QueryUserByProtocolJob::QueryUserByProtocolJob(const QString& protocol, const QString& field1Field2)
+ : BaseJob(HttpVerb::Get, QueryUserByProtocolJobName,
+ basePath % "/thirdparty/user/" % protocol,
+ queryToQueryUserByProtocol(field1Field2),
+ {}, false)
+ , d(new Private)
+{
+}
+
+QueryUserByProtocolJob::~QueryUserByProtocolJob() = default;
+
+const UserBatch& QueryUserByProtocolJob::data() const
+{
+ return d->data;
+}
+
+BaseJob::Status QueryUserByProtocolJob::parseJson(const QJsonDocument& data)
+{
+ auto json = data.object();
+ if (!json.contains("data"_ls))
+ return { JsonParseError,
+ "The key 'data' not found in the response" };
+ d->data = fromJson<UserBatch>(json.value("data"_ls));
+ return Success;
+}
+
+class QueryLocationByAliasJob::Private
+{
+ public:
+ LocationBatch data;
+};
+
+BaseJob::Query queryToQueryLocationByAlias(const QString& alias)
+{
+ BaseJob::Query _q;
+ addParam<>(_q, QStringLiteral("alias"), alias);
+ return _q;
+}
+
+QUrl QueryLocationByAliasJob::makeRequestUrl(QUrl baseUrl, const QString& alias)
+{
+ return BaseJob::makeRequestUrl(std::move(baseUrl),
+ basePath % "/thirdparty/location",
+ queryToQueryLocationByAlias(alias));
+}
+
+static const auto QueryLocationByAliasJobName = QStringLiteral("QueryLocationByAliasJob");
+
+QueryLocationByAliasJob::QueryLocationByAliasJob(const QString& alias)
+ : BaseJob(HttpVerb::Get, QueryLocationByAliasJobName,
+ basePath % "/thirdparty/location",
+ queryToQueryLocationByAlias(alias),
+ {}, false)
+ , d(new Private)
+{
+}
+
+QueryLocationByAliasJob::~QueryLocationByAliasJob() = default;
+
+const LocationBatch& QueryLocationByAliasJob::data() const
+{
+ return d->data;
+}
+
+BaseJob::Status QueryLocationByAliasJob::parseJson(const QJsonDocument& data)
+{
+ auto json = data.object();
+ if (!json.contains("data"_ls))
+ return { JsonParseError,
+ "The key 'data' not found in the response" };
+ d->data = fromJson<LocationBatch>(json.value("data"_ls));
+ return Success;
+}
+
+class QueryUserByIDJob::Private
+{
+ public:
+ UserBatch data;
+};
+
+BaseJob::Query queryToQueryUserByID(const QString& userid)
+{
+ BaseJob::Query _q;
+ addParam<>(_q, QStringLiteral("userid"), userid);
+ return _q;
+}
+
+QUrl QueryUserByIDJob::makeRequestUrl(QUrl baseUrl, const QString& userid)
+{
+ return BaseJob::makeRequestUrl(std::move(baseUrl),
+ basePath % "/thirdparty/user",
+ queryToQueryUserByID(userid));
+}
+
+static const auto QueryUserByIDJobName = QStringLiteral("QueryUserByIDJob");
+
+QueryUserByIDJob::QueryUserByIDJob(const QString& userid)
+ : BaseJob(HttpVerb::Get, QueryUserByIDJobName,
+ basePath % "/thirdparty/user",
+ queryToQueryUserByID(userid),
+ {}, false)
+ , d(new Private)
+{
+}
+
+QueryUserByIDJob::~QueryUserByIDJob() = default;
+
+const UserBatch& QueryUserByIDJob::data() const
+{
+ return d->data;
+}
+
+BaseJob::Status QueryUserByIDJob::parseJson(const QJsonDocument& data)
+{
+ auto json = data.object();
+ if (!json.contains("data"_ls))
+ return { JsonParseError,
+ "The key 'data' not found in the response" };
+ d->data = fromJson<UserBatch>(json.value("data"_ls));
+ return Success;
+}
+
diff --git a/lib/csapi/third_party_lookup.h b/lib/csapi/third_party_lookup.h
new file mode 100644
index 00000000..c66902d7
--- /dev/null
+++ b/lib/csapi/third_party_lookup.h
@@ -0,0 +1,240 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#pragma once
+
+#include "jobs/basejob.h"
+
+#include "csapi/../application-service/definitions/protocol_metadata.h"
+#include "csapi/../application-service/definitions/protocol.h"
+#include "converters.h"
+#include "csapi/../application-service/definitions/location_batch.h"
+#include "csapi/../application-service/definitions/user_batch.h"
+
+namespace QMatrixClient
+{
+ // Operations
+
+ /// Retrieve metadata about all protocols that a homeserver supports.
+ ///
+ /// Fetches the overall metadata about protocols supported by the
+ /// homeserver. Includes both the available protocols and all fields
+ /// required for queries against each protocol.
+ class GetProtocolsJob : public BaseJob
+ {
+ public:
+ explicit GetProtocolsJob();
+
+ /*! Construct a URL without creating a full-fledged job object
+ *
+ * This function can be used when a URL for
+ * GetProtocolsJob is necessary but the job
+ * itself isn't.
+ */
+ static QUrl makeRequestUrl(QUrl baseUrl);
+
+ ~GetProtocolsJob() override;
+
+ // Result properties
+
+ /// The protocols supported by the homeserver.
+ const ProtocolMetadata& data() const;
+
+ protected:
+ Status parseJson(const QJsonDocument& data) override;
+
+ private:
+ class Private;
+ QScopedPointer<Private> d;
+ };
+
+ /// Retrieve metadata about a specific protocol that the homeserver supports.
+ ///
+ /// Fetches the metadata from the homeserver about a particular third party protocol.
+ class GetProtocolMetadataJob : public BaseJob
+ {
+ public:
+ /*! Retrieve metadata about a specific protocol that the homeserver supports.
+ * \param protocol
+ * The name of the protocol.
+ */
+ explicit GetProtocolMetadataJob(const QString& protocol);
+
+ /*! Construct a URL without creating a full-fledged job object
+ *
+ * This function can be used when a URL for
+ * GetProtocolMetadataJob is necessary but the job
+ * itself isn't.
+ */
+ static QUrl makeRequestUrl(QUrl baseUrl, const QString& protocol);
+
+ ~GetProtocolMetadataJob() override;
+
+ // Result properties
+
+ /// The protocol was found and metadata returned.
+ const Protocol& data() const;
+
+ protected:
+ Status parseJson(const QJsonDocument& data) override;
+
+ private:
+ class Private;
+ QScopedPointer<Private> d;
+ };
+
+ /// Retreive Matrix-side portals rooms leading to a third party location.
+ ///
+ /// Requesting this endpoint with a valid protocol name results in a list
+ /// of successful mapping results in a JSON array. Each result contains
+ /// objects to represent the Matrix room or rooms that represent a portal
+ /// to this third party network. Each has the Matrix room alias string,
+ /// an identifier for the particular third party network protocol, and an
+ /// object containing the network-specific fields that comprise this
+ /// identifier. It should attempt to canonicalise the identifier as much
+ /// as reasonably possible given the network type.
+ class QueryLocationByProtocolJob : public BaseJob
+ {
+ public:
+ /*! Retreive Matrix-side portals rooms leading to a third party location.
+ * \param protocol
+ * The protocol used to communicate to the third party network.
+ * \param searchFields
+ * One or more custom fields to help identify the third party
+ * location.
+ */
+ explicit QueryLocationByProtocolJob(const QString& protocol, const QString& searchFields = {});
+
+ /*! Construct a URL without creating a full-fledged job object
+ *
+ * This function can be used when a URL for
+ * QueryLocationByProtocolJob is necessary but the job
+ * itself isn't.
+ */
+ static QUrl makeRequestUrl(QUrl baseUrl, const QString& protocol, const QString& searchFields = {});
+
+ ~QueryLocationByProtocolJob() override;
+
+ // Result properties
+
+ /// At least one portal room was found.
+ const LocationBatch& data() const;
+
+ protected:
+ Status parseJson(const QJsonDocument& data) override;
+
+ private:
+ class Private;
+ QScopedPointer<Private> d;
+ };
+
+ /// Retrieve the Matrix User ID of a corresponding third party user.
+ ///
+ /// Retrieve a Matrix User ID linked to a user on the third party service, given
+ /// a set of user parameters.
+ class QueryUserByProtocolJob : public BaseJob
+ {
+ public:
+ /*! Retrieve the Matrix User ID of a corresponding third party user.
+ * \param protocol
+ * The name of the protocol.
+ * \param field1Field2
+ * One or more custom fields that are passed to the AS to help identify the user.
+ */
+ explicit QueryUserByProtocolJob(const QString& protocol, const QString& field1Field2 = {});
+
+ /*! Construct a URL without creating a full-fledged job object
+ *
+ * This function can be used when a URL for
+ * QueryUserByProtocolJob is necessary but the job
+ * itself isn't.
+ */
+ static QUrl makeRequestUrl(QUrl baseUrl, const QString& protocol, const QString& field1Field2 = {});
+
+ ~QueryUserByProtocolJob() override;
+
+ // Result properties
+
+ /// The Matrix User IDs found with the given parameters.
+ const UserBatch& data() const;
+
+ protected:
+ Status parseJson(const QJsonDocument& data) override;
+
+ private:
+ class Private;
+ QScopedPointer<Private> d;
+ };
+
+ /// Reverse-lookup third party locations given a Matrix room alias.
+ ///
+ /// Retreive an array of third party network locations from a Matrix room
+ /// alias.
+ class QueryLocationByAliasJob : public BaseJob
+ {
+ public:
+ /*! Reverse-lookup third party locations given a Matrix room alias.
+ * \param alias
+ * The Matrix room alias to look up.
+ */
+ explicit QueryLocationByAliasJob(const QString& alias);
+
+ /*! Construct a URL without creating a full-fledged job object
+ *
+ * This function can be used when a URL for
+ * QueryLocationByAliasJob is necessary but the job
+ * itself isn't.
+ */
+ static QUrl makeRequestUrl(QUrl baseUrl, const QString& alias);
+
+ ~QueryLocationByAliasJob() override;
+
+ // Result properties
+
+ /// All found third party locations.
+ const LocationBatch& data() const;
+
+ protected:
+ Status parseJson(const QJsonDocument& data) override;
+
+ private:
+ class Private;
+ QScopedPointer<Private> d;
+ };
+
+ /// Reverse-lookup third party users given a Matrix User ID.
+ ///
+ /// Retreive an array of third party users from a Matrix User ID.
+ class QueryUserByIDJob : public BaseJob
+ {
+ public:
+ /*! Reverse-lookup third party users given a Matrix User ID.
+ * \param userid
+ * The Matrix User ID to look up.
+ */
+ explicit QueryUserByIDJob(const QString& userid);
+
+ /*! Construct a URL without creating a full-fledged job object
+ *
+ * This function can be used when a URL for
+ * QueryUserByIDJob is necessary but the job
+ * itself isn't.
+ */
+ static QUrl makeRequestUrl(QUrl baseUrl, const QString& userid);
+
+ ~QueryUserByIDJob() override;
+
+ // Result properties
+
+ /// An array of third party users.
+ const UserBatch& data() const;
+
+ protected:
+ Status parseJson(const QJsonDocument& data) override;
+
+ private:
+ class Private;
+ QScopedPointer<Private> d;
+ };
+} // namespace QMatrixClient