aboutsummaryrefslogtreecommitdiff
path: root/jobs/postmessagejob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'jobs/postmessagejob.cpp')
-rw-r--r--jobs/postmessagejob.cpp64
1 files changed, 0 insertions, 64 deletions
diff --git a/jobs/postmessagejob.cpp b/jobs/postmessagejob.cpp
deleted file mode 100644
index df30614c..00000000
--- a/jobs/postmessagejob.cpp
+++ /dev/null
@@ -1,64 +0,0 @@
-/******************************************************************************
- * Copyright (C) 2015 Felix Rohrbach <kde@fxrh.de>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#include "postmessagejob.h"
-#include "util.h"
-
-using namespace QMatrixClient;
-
-class PostMessageJob::Private
-{
- public:
- QString eventId; // unused yet
-};
-
-PostMessageJob::PostMessageJob(const ConnectionData* connection,
- const QString& roomId, const QString& type,
- const QString& plainText)
- : BaseJob(connection, HttpVerb::Post, "PostMessageJob",
- QStringLiteral("_matrix/client/r0/rooms/%1/send/m.room.message").arg(roomId),
- Query(),
- Data({ { "msgtype", type }, { "body", plainText } }) )
- , d(new Private)
-{ }
-
-PostMessageJob::PostMessageJob(const ConnectionData* connection,
- const QString& roomId, const QString& type,
- const QString& plainText, const QString& richText)
- : BaseJob(connection, HttpVerb::Post, "PostMessageJob",
- QStringLiteral("_matrix/client/r0/rooms/%1/send/m.room.message").arg(roomId),
- Query(),
- Data({ { "msgtype", type }, { "body", plainText }
- , { "format", QStringLiteral("org.matrix.custom.html") }
- , { "formatted_body", richText } }) )
- , d(new Private)
-{ }
-
-PostMessageJob::~PostMessageJob()
-{
- delete d;
-}
-
-BaseJob::Status PostMessageJob::parseJson(const QJsonDocument& data)
-{
- if( data.object().contains("event_id") )
- return Success;
-
- qCDebug(JOBS) << data;
- return { UserDefinedError, "No event_id in the JSON response" };
-}