aboutsummaryrefslogtreecommitdiff
path: root/jobs/generated/redaction.cpp
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-07 11:40:46 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-07 12:53:02 +0900
commitb1dd0e7ea87842fb5ff9deb14beb3474136b06f3 (patch)
tree1d25030a5355f1e065cfa00272672c9b9cc07b46 /jobs/generated/redaction.cpp
parent0c5a042104eaa6f8efb0dfc1c0eacca161d5787f (diff)
downloadlibquotient-b1dd0e7ea87842fb5ff9deb14beb3474136b06f3.tar.gz
libquotient-b1dd0e7ea87842fb5ff9deb14beb3474136b06f3.zip
New generated jobs for: room directory, 3PIDs, redactions, typing notifications and others
Closes #128 (the issue has the full list of jobs arriving herewith).
Diffstat (limited to 'jobs/generated/redaction.cpp')
-rw-r--r--jobs/generated/redaction.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/jobs/generated/redaction.cpp b/jobs/generated/redaction.cpp
new file mode 100644
index 00000000..a9b8ed7e
--- /dev/null
+++ b/jobs/generated/redaction.cpp
@@ -0,0 +1,50 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+
+#include "redaction.h"
+
+#include "converters.h"
+
+#include <QtCore/QStringBuilder>
+
+using namespace QMatrixClient;
+
+static const auto basePath = QStringLiteral("/_matrix/client/r0");
+
+class RedactEventJob::Private
+{
+ public:
+ QString eventId;
+};
+
+RedactEventJob::RedactEventJob(const QString& roomId, const QString& eventId, const QString& txnId, const QString& reason)
+ : BaseJob(HttpVerb::Put, "RedactEventJob",
+ basePath % "/rooms/" % roomId % "/redact/" % eventId % "/" % txnId,
+ Query { }
+ ), d(new Private)
+{
+ QJsonObject _data;
+ if (!reason.isEmpty())
+ _data.insert("reason", toJson(reason));
+ setRequestData(_data);
+}
+
+RedactEventJob::~RedactEventJob()
+{
+ delete d;
+}
+
+const QString& RedactEventJob::eventId() const
+{
+ return d->eventId;
+}
+
+BaseJob::Status RedactEventJob::parseJson(const QJsonDocument& data)
+{
+ auto json = data.object();
+ d->eventId = fromJson<QString>(json.value("event_id"));
+ return Success;
+}
+