// SPDX-FileCopyrightText: 2019 Alexey Andreyev // SPDX-License-Identifier: LGPL-2.1-or-later #include "encryptedevent.h" #include "roommessageevent.h" #include "events/eventloader.h" using namespace Quotient; EncryptedEvent::EncryptedEvent(const QJsonObject& ciphertext, const QString& senderKey) : RoomEvent(typeId(), matrixTypeId(), { { AlgorithmKeyL, OlmV1Curve25519AesSha2AlgoKey }, { CiphertextKeyL, ciphertext }, { SenderKeyKeyL, senderKey } }) {} EncryptedEvent::EncryptedEvent(QByteArray ciphertext, const QString& senderKey, const QString& deviceId, const QString& sessionId) : RoomEvent(typeId(), matrixTypeId(), { { AlgorithmKeyL, MegolmV1AesSha2AlgoKey }, { CiphertextKeyL, QString(ciphertext) }, { DeviceIdKeyL, deviceId }, { SenderKeyKeyL, senderKey }, { SessionIdKeyL, sessionId }, }) {} EncryptedEvent::EncryptedEvent(const QJsonObject& obj) : RoomEvent(typeId(), obj) { qCDebug(E2EE) << "Encrypted event from" << senderId(); } QString EncryptedEvent::algorithm() const { const auto algo = contentPart(AlgorithmKeyL); if (!isSupportedAlgorithm(algo)) qWarning(MAIN) << "The EncryptedEvent's algorithm" << algo << "is not supported"; return algo; } RoomEventPtr EncryptedEvent::createDecrypted(const QString &decrypted) const { auto eventObject = QJsonDocument::fromJson(decrypted.toUtf8()).object(); eventObject["event_id"] = id(); eventObject["sender"] = senderId(); eventObject["origin_server_ts"] = originTimestamp().toMSecsSinceEpoch(); if (const auto relatesToJson = contentPart("m.relates_to"_ls); !relatesToJson.isUndefined()) { auto content = eventObject["content"].toObject(); content["m.relates_to"] = relatesToJson.toObject(); eventObject["content"] = content; } if (const auto redactsJson = unsignedPart("redacts"_ls); !redactsJson.isUndefined()) { auto unsign = eventObject["unsigned"].toObject(); unsign["redacts"] = redactsJson.toString(); eventObject["unsigned"] = unsign; } return loadEvent(eventObject); } void EncryptedEvent::setRelation(const QJsonObject& relation) { auto content = editJson()["content"_ls].toObject(); content["m.relates_to"] = relation; editJson()["content"] = content; }