2017-04-06 02:06:42 +03:00
|
|
|
/*
|
|
|
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QDebug>
|
2017-09-10 12:58:00 +03:00
|
|
|
#include <QFile>
|
|
|
|
#include <QImageReader>
|
2017-04-27 00:32:33 +03:00
|
|
|
#include <QJsonArray>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QNetworkReply>
|
|
|
|
#include <QNetworkRequest>
|
2017-04-11 17:45:47 +03:00
|
|
|
#include <QPixmap>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QSettings>
|
|
|
|
#include <QUrlQuery>
|
|
|
|
|
|
|
|
#include "Login.h"
|
|
|
|
#include "MatrixClient.h"
|
2017-10-28 15:46:39 +03:00
|
|
|
#include "MessageEvent.h"
|
2017-04-06 02:06:42 +03:00
|
|
|
#include "Profile.h"
|
2017-04-08 02:53:23 +03:00
|
|
|
#include "Register.h"
|
2017-10-28 15:46:39 +03:00
|
|
|
#include "RoomMessages.h"
|
|
|
|
#include "Sync.h"
|
2017-07-08 14:41:49 +03:00
|
|
|
#include "Versions.h"
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
MatrixClient::MatrixClient(QString server, QObject *parent)
|
2017-08-20 13:47:22 +03:00
|
|
|
: QNetworkAccessManager(parent)
|
2017-11-06 00:04:55 +03:00
|
|
|
, clientApiUrl_{"/_matrix/client/r0"}
|
|
|
|
, mediaApiUrl_{"/_matrix/media/r0"}
|
|
|
|
, server_{"https://" + server}
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
QSettings settings;
|
|
|
|
txn_id_ = settings.value("client/transaction_id", 1).toInt();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-05 18:13:11 +03:00
|
|
|
connect(this,
|
|
|
|
&QNetworkAccessManager::networkAccessibleChanged,
|
|
|
|
this,
|
|
|
|
[=](NetworkAccessibility status) {
|
|
|
|
if (status != NetworkAccessibility::Accessible)
|
|
|
|
setNetworkAccessible(NetworkAccessibility::Accessible);
|
|
|
|
});
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
MatrixClient::reset() noexcept
|
2017-04-09 02:17:04 +03:00
|
|
|
{
|
2017-10-21 21:17:01 +03:00
|
|
|
next_batch_.clear();
|
|
|
|
server_.clear();
|
|
|
|
token_.clear();
|
2017-04-09 02:17:04 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
txn_id_ = 0;
|
2017-04-09 02:17:04 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
2017-10-22 22:51:50 +03:00
|
|
|
MatrixClient::login(const QString &username, const QString &password) noexcept
|
2017-10-01 19:49:36 +03:00
|
|
|
{
|
2017-10-22 22:51:50 +03:00
|
|
|
QUrl endpoint(server_);
|
|
|
|
endpoint.setPath(clientApiUrl_ + "/login");
|
2017-10-08 22:38:38 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
QNetworkRequest request(endpoint);
|
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json");
|
2017-10-08 22:38:38 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
LoginRequest body(username, password);
|
2017-10-01 19:49:36 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = post(request, body.serialize());
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply]() {
|
|
|
|
reply->deleteLater();
|
2017-10-08 22:38:38 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
int status_code =
|
|
|
|
reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
2017-10-01 19:49:36 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
if (status_code == 403) {
|
|
|
|
emit loginError(tr("Wrong username or password"));
|
|
|
|
return;
|
|
|
|
}
|
2017-10-01 19:49:36 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
if (status_code == 404) {
|
|
|
|
emit loginError(tr("Login endpoint was not found on the server"));
|
|
|
|
return;
|
|
|
|
}
|
2017-10-01 19:49:36 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
if (status_code >= 400) {
|
|
|
|
qWarning() << "Login error: " << reply->errorString();
|
|
|
|
emit loginError(tr("An unknown error occured. Please try again."));
|
|
|
|
return;
|
|
|
|
}
|
2017-10-01 19:49:36 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto data = reply->readAll();
|
|
|
|
auto json = QJsonDocument::fromJson(data);
|
2017-10-01 19:49:36 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
LoginResponse response;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
try {
|
|
|
|
response.deserialize(json);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto hostname = server_.host();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
if (server_.port() > 0)
|
|
|
|
hostname = QString("%1:%2").arg(server_.host()).arg(server_.port());
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
emit loginSuccess(
|
|
|
|
response.getUserId(), hostname, response.getAccessToken());
|
|
|
|
} catch (DeserializationException &e) {
|
|
|
|
qWarning() << "Malformed JSON response" << e.what();
|
|
|
|
emit loginError(tr("Malformed response. Possibly not a Matrix server"));
|
|
|
|
}
|
|
|
|
});
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
MatrixClient::logout() noexcept
|
2017-04-09 02:17:04 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("access_token", token_);
|
2017-04-09 02:17:04 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrl endpoint(server_);
|
2017-09-10 12:58:00 +03:00
|
|
|
endpoint.setPath(clientApiUrl_ + "/logout");
|
2017-09-03 11:43:45 +03:00
|
|
|
endpoint.setQuery(query);
|
2017-04-09 02:17:04 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkRequest request(endpoint);
|
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json");
|
2017-04-09 02:17:04 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QJsonObject body{};
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = post(request, QJsonDocument(body).toJson(QJsonDocument::Compact));
|
|
|
|
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status != 200) {
|
|
|
|
qWarning() << "Logout error: " << reply->errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit loggedOut();
|
|
|
|
});
|
2017-04-09 02:17:04 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
MatrixClient::registerUser(const QString &user, const QString &pass, const QString &server) noexcept
|
2017-04-08 02:53:23 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
setServer(server);
|
2017-04-08 02:53:23 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("kind", "user");
|
2017-04-08 02:53:23 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrl endpoint(server_);
|
2017-09-10 12:58:00 +03:00
|
|
|
endpoint.setPath(clientApiUrl_ + "/register");
|
2017-09-03 11:43:45 +03:00
|
|
|
endpoint.setQuery(query);
|
2017-04-08 02:53:23 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkRequest request(QString(endpoint.toEncoded()));
|
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json");
|
2017-04-08 02:53:23 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
RegisterRequest body(user, pass);
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = post(request, body.serialize());
|
|
|
|
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
auto data = reply->readAll();
|
|
|
|
auto json = QJsonDocument::fromJson(data);
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
if (json.isObject() && json.object().contains("error"))
|
|
|
|
emit registerError(json.object().value("error").toString());
|
|
|
|
else
|
|
|
|
emit registerError(reply->errorString());
|
2017-04-08 02:53:23 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegisterResponse response;
|
|
|
|
|
|
|
|
try {
|
|
|
|
response.deserialize(json);
|
|
|
|
emit registerSuccess(response.getUserId(),
|
|
|
|
response.getHomeServer(),
|
|
|
|
response.getAccessToken());
|
|
|
|
} catch (DeserializationException &e) {
|
|
|
|
qWarning() << "Register" << e.what();
|
|
|
|
emit registerError("Received malformed response.");
|
|
|
|
}
|
|
|
|
});
|
2017-04-08 02:53:23 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
MatrixClient::sync() noexcept
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-10-04 22:11:55 +03:00
|
|
|
QJsonObject filter{
|
2017-11-06 00:04:55 +03:00
|
|
|
{"room",
|
|
|
|
QJsonObject{
|
|
|
|
{"include_leave", true},
|
|
|
|
}},
|
2017-10-04 22:11:55 +03:00
|
|
|
};
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("set_presence", "online");
|
|
|
|
query.addQueryItem("filter", QJsonDocument(filter).toJson(QJsonDocument::Compact));
|
2017-10-08 21:35:37 +03:00
|
|
|
query.addQueryItem("timeout", "15000");
|
2017-09-03 11:43:45 +03:00
|
|
|
query.addQueryItem("access_token", token_);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
if (next_batch_.isEmpty()) {
|
2017-10-01 12:11:33 +03:00
|
|
|
qDebug() << "Sync requires a valid next_batch token. Initial sync should "
|
|
|
|
"be performed.";
|
2017-09-03 11:43:45 +03:00
|
|
|
return;
|
|
|
|
}
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
query.addQueryItem("since", next_batch_);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrl endpoint(server_);
|
2017-09-10 12:58:00 +03:00
|
|
|
endpoint.setPath(clientApiUrl_ + "/sync");
|
2017-09-03 11:43:45 +03:00
|
|
|
endpoint.setQuery(query);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkRequest request(QString(endpoint.toEncoded()));
|
2017-10-05 08:47:29 +03:00
|
|
|
request.setRawHeader("Connection", "keep-alive");
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = get(request);
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
emit syncFailed(reply->errorString());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto data = reply->readAll();
|
|
|
|
|
|
|
|
if (data.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto json = QJsonDocument::fromJson(data);
|
|
|
|
|
|
|
|
SyncResponse response;
|
|
|
|
|
|
|
|
try {
|
|
|
|
response.deserialize(json);
|
|
|
|
emit syncCompleted(response);
|
|
|
|
} catch (DeserializationException &e) {
|
|
|
|
qWarning() << "Sync malformed response" << e.what();
|
|
|
|
}
|
|
|
|
});
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
2017-09-03 11:43:45 +03:00
|
|
|
MatrixClient::sendRoomMessage(matrix::events::MessageEventType ty,
|
2017-11-15 19:38:50 +03:00
|
|
|
int txnId,
|
2017-09-03 11:43:45 +03:00
|
|
|
const QString &roomid,
|
2017-09-10 12:58:00 +03:00
|
|
|
const QString &msg,
|
|
|
|
const QString &url) noexcept
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("access_token", token_);
|
|
|
|
|
|
|
|
QUrl endpoint(server_);
|
2017-09-10 12:58:00 +03:00
|
|
|
endpoint.setPath(clientApiUrl_ +
|
2017-11-15 19:38:50 +03:00
|
|
|
QString("/rooms/%1/send/m.room.message/%2").arg(roomid).arg(txnId));
|
2017-09-03 11:43:45 +03:00
|
|
|
endpoint.setQuery(query);
|
|
|
|
|
|
|
|
QString msgType("");
|
2017-09-10 12:58:00 +03:00
|
|
|
QJsonObject body;
|
2017-09-03 11:43:45 +03:00
|
|
|
|
|
|
|
switch (ty) {
|
|
|
|
case matrix::events::MessageEventType::Text:
|
2017-11-06 00:04:55 +03:00
|
|
|
body = {{"msgtype", "m.text"}, {"body", msg}};
|
2017-09-03 11:43:45 +03:00
|
|
|
break;
|
|
|
|
case matrix::events::MessageEventType::Emote:
|
2017-11-06 00:04:55 +03:00
|
|
|
body = {{"msgtype", "m.emote"}, {"body", msg}};
|
2017-09-03 11:43:45 +03:00
|
|
|
break;
|
2017-09-10 12:58:00 +03:00
|
|
|
case matrix::events::MessageEventType::Image:
|
2017-11-06 00:04:55 +03:00
|
|
|
body = {{"msgtype", "m.image"}, {"body", msg}, {"url", url}};
|
2017-09-03 11:43:45 +03:00
|
|
|
break;
|
2017-09-10 12:58:00 +03:00
|
|
|
default:
|
|
|
|
qDebug() << "SendRoomMessage: Unknown message type for" << msg;
|
|
|
|
return;
|
2017-09-03 11:43:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
QNetworkRequest request(QString(endpoint.toEncoded()));
|
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json");
|
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = put(request, QJsonDocument(body).toJson(QJsonDocument::Compact));
|
|
|
|
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply, roomid, txnId]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
qWarning() << reply->errorString();
|
2017-11-15 19:38:50 +03:00
|
|
|
emit messageSendFailed(roomid, txnId);
|
2017-10-22 22:51:50 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto data = reply->readAll();
|
|
|
|
|
2017-11-15 19:38:50 +03:00
|
|
|
if (data.isEmpty()) {
|
|
|
|
emit messageSendFailed(roomid, txnId);
|
2017-10-22 22:51:50 +03:00
|
|
|
return;
|
2017-11-15 19:38:50 +03:00
|
|
|
}
|
2017-10-22 22:51:50 +03:00
|
|
|
|
|
|
|
auto json = QJsonDocument::fromJson(data);
|
|
|
|
|
|
|
|
if (!json.isObject()) {
|
|
|
|
qDebug() << "Send message response is not a JSON object";
|
2017-11-15 19:38:50 +03:00
|
|
|
emit messageSendFailed(roomid, txnId);
|
2017-10-22 22:51:50 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto object = json.object();
|
|
|
|
|
|
|
|
if (!object.contains("event_id")) {
|
|
|
|
qDebug() << "SendTextMessage: missing event_id from response";
|
2017-11-15 19:38:50 +03:00
|
|
|
emit messageSendFailed(roomid, txnId);
|
2017-10-22 22:51:50 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit messageSent(object.value("event_id").toString(), roomid, txnId);
|
|
|
|
});
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
MatrixClient::initialSync() noexcept
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrlQuery query;
|
2017-10-05 08:47:29 +03:00
|
|
|
query.addQueryItem("timeout", "0");
|
2017-09-03 11:43:45 +03:00
|
|
|
query.addQueryItem("access_token", token_);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrl endpoint(server_);
|
2017-09-10 12:58:00 +03:00
|
|
|
endpoint.setPath(clientApiUrl_ + "/sync");
|
2017-09-03 11:43:45 +03:00
|
|
|
endpoint.setQuery(query);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkRequest request(QString(endpoint.toEncoded()));
|
2017-10-05 08:47:29 +03:00
|
|
|
request.setRawHeader("Connection", "keep-alive");
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = get(request);
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
emit initialSyncFailed(reply->errorString());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto data = reply->readAll();
|
|
|
|
|
|
|
|
if (data.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto json = QJsonDocument::fromJson(data);
|
|
|
|
|
|
|
|
SyncResponse response;
|
|
|
|
|
|
|
|
try {
|
|
|
|
response.deserialize(json);
|
|
|
|
} catch (DeserializationException &e) {
|
|
|
|
qWarning() << "Sync malformed response" << e.what();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit initialSyncCompleted(response);
|
|
|
|
});
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
MatrixClient::versions() noexcept
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrl endpoint(server_);
|
|
|
|
endpoint.setPath("/_matrix/client/versions");
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkRequest request(endpoint);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = get(request);
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status_code =
|
|
|
|
reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status_code == 404) {
|
|
|
|
emit versionError("Versions endpoint was not found on the server. Possibly "
|
|
|
|
"not a Matrix server");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status_code >= 400) {
|
|
|
|
emit versionError("An unknown error occured. Please try again.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto data = reply->readAll();
|
|
|
|
auto json = QJsonDocument::fromJson(data);
|
|
|
|
|
|
|
|
VersionsResponse response;
|
|
|
|
|
|
|
|
try {
|
|
|
|
response.deserialize(json);
|
|
|
|
if (!response.isVersionSupported(0, 2, 0))
|
|
|
|
emit versionError("Server does not support required API version.");
|
|
|
|
else
|
|
|
|
emit versionSuccess();
|
|
|
|
} catch (DeserializationException &e) {
|
|
|
|
emit versionError("Malformed response. Possibly not a Matrix server");
|
|
|
|
}
|
|
|
|
});
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
MatrixClient::getOwnProfile() noexcept
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-10-01 12:11:33 +03:00
|
|
|
// FIXME: Remove settings from the matrix client. The class should store the
|
|
|
|
// user's matrix ID.
|
2017-09-03 11:43:45 +03:00
|
|
|
QSettings settings;
|
|
|
|
auto userid = settings.value("auth/user_id", "").toString();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("access_token", token_);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrl endpoint(server_);
|
2017-09-10 12:58:00 +03:00
|
|
|
endpoint.setPath(clientApiUrl_ + "/profile/" + userid);
|
2017-09-03 11:43:45 +03:00
|
|
|
endpoint.setQuery(query);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkRequest request(QString(endpoint.toEncoded()));
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkReply *reply = get(request);
|
2017-10-22 22:51:50 +03:00
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status >= 400) {
|
|
|
|
qWarning() << reply->errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto data = reply->readAll();
|
|
|
|
auto json = QJsonDocument::fromJson(data);
|
|
|
|
|
|
|
|
ProfileResponse response;
|
|
|
|
|
|
|
|
try {
|
|
|
|
response.deserialize(json);
|
|
|
|
emit getOwnProfileResponse(response.getAvatarUrl(),
|
|
|
|
response.getDisplayName());
|
|
|
|
} catch (DeserializationException &e) {
|
|
|
|
qWarning() << "Profile:" << e.what();
|
|
|
|
}
|
|
|
|
});
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
2017-04-11 17:45:47 +03:00
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
MatrixClient::fetchRoomAvatar(const QString &roomid, const QUrl &avatar_url)
|
2017-04-11 17:45:47 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
QList<QString> url_parts = avatar_url.toString().split("mxc://");
|
2017-04-11 17:45:47 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
if (url_parts.size() != 2) {
|
|
|
|
qDebug() << "Invalid format for room avatar " << avatar_url.toString();
|
|
|
|
return;
|
|
|
|
}
|
2017-04-11 17:45:47 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("width", "512");
|
|
|
|
query.addQueryItem("height", "512");
|
|
|
|
query.addQueryItem("method", "crop");
|
2017-05-27 01:29:45 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QString media_url =
|
|
|
|
QString("%1/_matrix/media/r0/thumbnail/%2").arg(getHomeServer().toString(), url_parts[1]);
|
2017-05-27 01:29:45 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrl endpoint(media_url);
|
|
|
|
endpoint.setQuery(query);
|
2017-04-11 17:45:47 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkRequest avatar_request(endpoint);
|
2017-04-11 17:45:47 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkReply *reply = get(avatar_request);
|
2017-10-22 22:51:50 +03:00
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply, roomid]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
qWarning() << reply->errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto img = reply->readAll();
|
|
|
|
|
|
|
|
if (img.size() == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QPixmap pixmap;
|
|
|
|
pixmap.loadFromData(img);
|
|
|
|
|
|
|
|
emit roomAvatarRetrieved(roomid, pixmap);
|
|
|
|
});
|
2017-04-11 17:45:47 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
MatrixClient::fetchUserAvatar(const QString &userId, const QUrl &avatarUrl)
|
2017-06-05 02:14:05 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
QList<QString> url_parts = avatarUrl.toString().split("mxc://");
|
2017-06-05 02:14:05 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
if (url_parts.size() != 2) {
|
|
|
|
qDebug() << "Invalid format for user avatar " << avatarUrl.toString();
|
|
|
|
return;
|
|
|
|
}
|
2017-06-05 02:14:05 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("width", "128");
|
|
|
|
query.addQueryItem("height", "128");
|
|
|
|
query.addQueryItem("method", "crop");
|
2017-06-05 02:14:05 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QString media_url =
|
|
|
|
QString("%1/_matrix/media/r0/thumbnail/%2").arg(getHomeServer().toString(), url_parts[1]);
|
2017-06-05 02:14:05 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrl endpoint(media_url);
|
|
|
|
endpoint.setQuery(query);
|
2017-06-05 02:14:05 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkRequest avatar_request(endpoint);
|
2017-06-05 02:14:05 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = get(avatar_request);
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply, userId]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
qWarning() << reply->errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto data = reply->readAll();
|
|
|
|
|
|
|
|
if (data.size() == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QImage img;
|
|
|
|
img.loadFromData(data);
|
|
|
|
|
|
|
|
emit userAvatarRetrieved(userId, img);
|
|
|
|
});
|
2017-06-05 02:14:05 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
MatrixClient::downloadImage(const QString &event_id, const QUrl &url)
|
2017-04-28 14:56:45 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkRequest image_request(url);
|
2017-04-28 14:56:45 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = get(image_request);
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply, event_id]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
qWarning() << reply->errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto img = reply->readAll();
|
|
|
|
|
|
|
|
if (img.size() == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QPixmap pixmap;
|
|
|
|
pixmap.loadFromData(img);
|
|
|
|
|
|
|
|
emit imageDownloaded(event_id, pixmap);
|
|
|
|
});
|
2017-04-28 14:56:45 +03:00
|
|
|
}
|
|
|
|
|
2017-11-28 03:01:37 +03:00
|
|
|
void
|
|
|
|
MatrixClient::downloadFile(const QString &event_id, const QUrl &url)
|
|
|
|
{
|
|
|
|
QNetworkRequest fileRequest(url);
|
|
|
|
|
|
|
|
auto reply = get(fileRequest);
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply, event_id]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
// TODO: Handle error
|
|
|
|
qWarning() << reply->errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto data = reply->readAll();
|
|
|
|
|
|
|
|
if (data.size() == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
emit fileDownloaded(event_id, data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
MatrixClient::fetchOwnAvatar(const QUrl &avatar_url)
|
2017-04-11 17:45:47 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
QList<QString> url_parts = avatar_url.toString().split("mxc://");
|
2017-04-11 17:45:47 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
if (url_parts.size() != 2) {
|
|
|
|
qDebug() << "Invalid format for media " << avatar_url.toString();
|
|
|
|
return;
|
|
|
|
}
|
2017-04-11 17:45:47 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("width", "512");
|
|
|
|
query.addQueryItem("height", "512");
|
|
|
|
query.addQueryItem("method", "crop");
|
2017-05-27 01:29:45 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QString media_url =
|
|
|
|
QString("%1/_matrix/media/r0/thumbnail/%2").arg(getHomeServer().toString(), url_parts[1]);
|
2017-05-27 01:29:45 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrl endpoint(media_url);
|
|
|
|
endpoint.setQuery(query);
|
2017-04-11 17:45:47 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkRequest avatar_request(endpoint);
|
2017-04-11 17:45:47 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = get(avatar_request);
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
qWarning() << reply->errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto img = reply->readAll();
|
|
|
|
|
|
|
|
if (img.size() == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QPixmap pixmap;
|
|
|
|
pixmap.loadFromData(img);
|
|
|
|
|
|
|
|
emit ownAvatarRetrieved(pixmap);
|
|
|
|
});
|
2017-04-11 17:45:47 +03:00
|
|
|
}
|
2017-05-12 15:43:35 +03:00
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
2017-10-22 22:51:50 +03:00
|
|
|
MatrixClient::messages(const QString &roomid, const QString &from_token, int limit) noexcept
|
2017-05-12 15:43:35 +03:00
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("access_token", token_);
|
|
|
|
query.addQueryItem("from", from_token);
|
|
|
|
query.addQueryItem("dir", "b");
|
|
|
|
query.addQueryItem("limit", QString::number(limit));
|
2017-05-12 15:43:35 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QUrl endpoint(server_);
|
2017-10-22 22:51:50 +03:00
|
|
|
endpoint.setPath(clientApiUrl_ + QString("/rooms/%1/messages").arg(roomid));
|
2017-09-03 11:43:45 +03:00
|
|
|
endpoint.setQuery(query);
|
2017-05-12 15:43:35 +03:00
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
QNetworkRequest request(QString(endpoint.toEncoded()));
|
2017-05-12 15:43:35 +03:00
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = get(request);
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply, roomid]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
qWarning() << reply->errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto data = reply->readAll();
|
|
|
|
|
|
|
|
RoomMessages msgs;
|
|
|
|
|
|
|
|
try {
|
|
|
|
msgs.deserialize(QJsonDocument::fromJson(data));
|
|
|
|
} catch (const DeserializationException &e) {
|
|
|
|
qWarning() << "Room messages from" << roomid << e.what();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit messagesRetrieved(roomid, msgs);
|
|
|
|
});
|
2017-05-12 15:43:35 +03:00
|
|
|
}
|
2017-09-10 12:58:00 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
MatrixClient::uploadImage(const QString &roomid, const QString &filename)
|
|
|
|
{
|
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("access_token", token_);
|
|
|
|
|
|
|
|
QUrl endpoint(server_);
|
|
|
|
endpoint.setPath(mediaApiUrl_ + "/upload");
|
|
|
|
endpoint.setQuery(query);
|
|
|
|
|
|
|
|
QFile file(filename);
|
|
|
|
if (!file.open(QIODevice::ReadWrite)) {
|
|
|
|
qDebug() << "Error while reading" << filename;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto imgFormat = QString(QImageReader::imageFormat(filename));
|
|
|
|
|
|
|
|
QNetworkRequest request(QString(endpoint.toEncoded()));
|
|
|
|
request.setHeader(QNetworkRequest::ContentLengthHeader, file.size());
|
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, QString("image/%1").arg(imgFormat));
|
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = post(request, file.readAll());
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply, roomid, filename]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
emit syncFailed(reply->errorString());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto data = reply->readAll();
|
|
|
|
|
|
|
|
if (data.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto json = QJsonDocument::fromJson(data);
|
|
|
|
|
|
|
|
if (!json.isObject()) {
|
|
|
|
qDebug() << "Media upload: Response is not a json object.";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QJsonObject object = json.object();
|
|
|
|
if (!object.contains("content_uri")) {
|
|
|
|
qDebug() << "Media upload: Missing content_uri key";
|
|
|
|
qDebug() << object;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit imageUploaded(roomid, filename, object.value("content_uri").toString());
|
|
|
|
});
|
2017-09-10 12:58:00 +03:00
|
|
|
}
|
2017-10-01 19:49:36 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
MatrixClient::joinRoom(const QString &roomIdOrAlias)
|
|
|
|
{
|
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("access_token", token_);
|
|
|
|
|
|
|
|
QUrl endpoint(server_);
|
|
|
|
endpoint.setPath(clientApiUrl_ + QString("/join/%1").arg(roomIdOrAlias));
|
|
|
|
endpoint.setQuery(query);
|
|
|
|
|
|
|
|
QNetworkRequest request(endpoint);
|
|
|
|
request.setHeader(QNetworkRequest::KnownHeaders::ContentTypeHeader, "application/json");
|
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = post(request, "{}");
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
auto data = reply->readAll();
|
|
|
|
auto response = QJsonDocument::fromJson(data);
|
|
|
|
auto json = response.object();
|
|
|
|
|
|
|
|
if (json.contains("error"))
|
|
|
|
emit joinFailed(json["error"].toString());
|
|
|
|
else
|
|
|
|
qDebug() << reply->errorString();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto data = reply->readAll();
|
|
|
|
auto response = QJsonDocument::fromJson(data);
|
|
|
|
auto room_id = response.object()["room_id"].toString();
|
|
|
|
|
|
|
|
emit joinedRoom(room_id);
|
|
|
|
});
|
2017-10-01 19:49:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MatrixClient::leaveRoom(const QString &roomId)
|
|
|
|
{
|
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("access_token", token_);
|
|
|
|
|
|
|
|
QUrl endpoint(server_);
|
|
|
|
endpoint.setPath(clientApiUrl_ + QString("/rooms/%1/leave").arg(roomId));
|
|
|
|
endpoint.setQuery(query);
|
|
|
|
|
|
|
|
QNetworkRequest request(endpoint);
|
|
|
|
request.setHeader(QNetworkRequest::KnownHeaders::ContentTypeHeader, "application/json");
|
|
|
|
|
2017-10-22 22:51:50 +03:00
|
|
|
auto reply = post(request, "{}");
|
|
|
|
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply, roomId]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
qWarning() << reply->errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit leftRoom(roomId);
|
|
|
|
});
|
2017-10-01 19:49:36 +03:00
|
|
|
}
|
2017-10-31 21:11:49 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
MatrixClient::sendTypingNotification(const QString &roomid, int timeoutInMillis)
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
QString user_id = settings.value("auth/user_id").toString();
|
|
|
|
|
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("access_token", token_);
|
|
|
|
|
|
|
|
QUrl endpoint(server_);
|
|
|
|
endpoint.setPath(clientApiUrl_ + QString("/rooms/%1/typing/%2").arg(roomid).arg(user_id));
|
|
|
|
|
|
|
|
endpoint.setQuery(query);
|
|
|
|
|
|
|
|
QString msgType("");
|
|
|
|
QJsonObject body;
|
|
|
|
|
2017-11-06 00:04:55 +03:00
|
|
|
body = {{"typing", true}, {"timeout", timeoutInMillis}};
|
2017-10-31 21:11:49 +03:00
|
|
|
|
|
|
|
QNetworkRequest request(QString(endpoint.toEncoded()));
|
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json");
|
|
|
|
|
|
|
|
put(request, QJsonDocument(body).toJson(QJsonDocument::Compact));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MatrixClient::removeTypingNotification(const QString &roomid)
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
QString user_id = settings.value("auth/user_id").toString();
|
|
|
|
|
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("access_token", token_);
|
|
|
|
|
|
|
|
QUrl endpoint(server_);
|
|
|
|
endpoint.setPath(clientApiUrl_ + QString("/rooms/%1/typing/%2").arg(roomid).arg(user_id));
|
|
|
|
|
|
|
|
endpoint.setQuery(query);
|
|
|
|
|
|
|
|
QString msgType("");
|
|
|
|
QJsonObject body;
|
|
|
|
|
2017-11-06 00:04:55 +03:00
|
|
|
body = {{"typing", false}};
|
2017-10-31 21:11:49 +03:00
|
|
|
|
|
|
|
QNetworkRequest request(QString(endpoint.toEncoded()));
|
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json");
|
|
|
|
|
|
|
|
put(request, QJsonDocument(body).toJson(QJsonDocument::Compact));
|
|
|
|
}
|
2017-11-24 01:10:58 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
MatrixClient::readEvent(const QString &room_id, const QString &event_id)
|
|
|
|
{
|
|
|
|
QUrlQuery query;
|
|
|
|
query.addQueryItem("access_token", token_);
|
|
|
|
|
|
|
|
QUrl endpoint(server_);
|
|
|
|
endpoint.setPath(clientApiUrl_ +
|
|
|
|
QString("/rooms/%1/receipt/m.read/%2").arg(room_id).arg(event_id));
|
|
|
|
endpoint.setQuery(query);
|
|
|
|
|
|
|
|
QNetworkRequest request(QString(endpoint.toEncoded()));
|
|
|
|
request.setHeader(QNetworkRequest::KnownHeaders::ContentTypeHeader, "application/json");
|
|
|
|
|
|
|
|
auto reply = post(request, "{}");
|
|
|
|
|
|
|
|
connect(reply, &QNetworkReply::finished, this, [this, reply]() {
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
|
|
|
|
|
|
if (status == 0 || status >= 400) {
|
|
|
|
qWarning() << reply->errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|