summary refs log tree commit diff
path: root/src/MatrixClient.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/MatrixClient.cc')
-rw-r--r--src/MatrixClient.cc36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/MatrixClient.cc b/src/MatrixClient.cc

index 381f5023..6b4a81bb 100644 --- a/src/MatrixClient.cc +++ b/src/MatrixClient.cc
@@ -309,6 +309,30 @@ void MatrixClient::onGetOwnAvatarResponse(QNetworkReply *reply) emit ownAvatarRetrieved(pixmap); } +void MatrixClient::onImageResponse(QNetworkReply *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); + + auto event_id = reply->property("event_id").toString(); + + emit imageDownloaded(event_id, pixmap); +} + void MatrixClient::onResponse(QNetworkReply *reply) { switch (reply->property("endpoint").toInt()) { @@ -327,6 +351,9 @@ void MatrixClient::onResponse(QNetworkReply *reply) case Endpoint::GetOwnProfile: onGetOwnProfileResponse(reply); break; + case Endpoint::Image: + onImageResponse(reply); + break; case Endpoint::InitialSync: onInitialSyncResponse(reply); break; @@ -528,6 +555,15 @@ void MatrixClient::fetchRoomAvatar(const QString &roomid, const QUrl &avatar_url reply->setProperty("endpoint", Endpoint::RoomAvatar); } +void MatrixClient::downloadImage(const QString &event_id, const QUrl &url) +{ + QNetworkRequest image_request(url); + + QNetworkReply *reply = get(image_request); + reply->setProperty("event_id", event_id); + reply->setProperty("endpoint", Endpoint::Image); +} + void MatrixClient::fetchOwnAvatar(const QUrl &avatar_url) { QList<QString> url_parts = avatar_url.toString().split("mxc://");