2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-08-07 23:51:09 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
import ".."
|
2021-09-16 00:18:21 +03:00
|
|
|
import QtQuick 2.15
|
2021-11-21 06:07:57 +03:00
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
import QtQuick.Layouts 1.15
|
2021-08-07 23:51:09 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
2021-11-21 06:07:57 +03:00
|
|
|
Rectangle {
|
2021-08-07 23:51:09 +03:00
|
|
|
id: r
|
|
|
|
|
|
|
|
required property int encryptionError
|
|
|
|
required property string eventId
|
|
|
|
|
2021-12-14 06:07:59 +03:00
|
|
|
radius: fontMetrics.lineSpacing / 2 + Nheko.paddingMedium
|
2022-02-12 01:12:04 +03:00
|
|
|
width: parent.width? parent.width : 0
|
2022-02-09 19:53:02 +03:00
|
|
|
implicitWidth: encryptedText.implicitWidth+24+Nheko.paddingMedium*3 // Column doesn't provide a useful implicitWidth, should be replaced by ColumnLayout
|
2021-11-21 06:07:57 +03:00
|
|
|
height: contents.implicitHeight + Nheko.paddingMedium * 2
|
|
|
|
color: Nheko.colors.alternateBase
|
2021-08-07 23:51:09 +03:00
|
|
|
|
2021-11-21 06:07:57 +03:00
|
|
|
RowLayout {
|
|
|
|
id: contents
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: Nheko.paddingMedium
|
|
|
|
spacing: Nheko.paddingMedium
|
|
|
|
|
|
|
|
Image {
|
|
|
|
source: "image://colorimage/:/icons/icons/ui/shield-filled-cross.svg?" + Nheko.theme.error
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
width: 24
|
|
|
|
height: width
|
|
|
|
}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
spacing: Nheko.paddingSmall
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
MatrixText {
|
2022-02-09 19:53:02 +03:00
|
|
|
id: encryptedText
|
2021-11-21 06:07:57 +03:00
|
|
|
text: {
|
|
|
|
switch (encryptionError) {
|
|
|
|
case Olm.MissingSession:
|
|
|
|
return qsTr("There is no key to unlock this message. We requested the key automatically, but you can try requesting it again if you are impatient.");
|
|
|
|
case Olm.MissingSessionIndex:
|
|
|
|
return qsTr("This message couldn't be decrypted, because we only have a key for newer messages. You can try requesting access to this message.");
|
|
|
|
case Olm.DbError:
|
|
|
|
return qsTr("There was an internal error reading the decryption key from the database.");
|
|
|
|
case Olm.DecryptionFailed:
|
|
|
|
return qsTr("There was an error decrypting this message.");
|
|
|
|
case Olm.ParsingFailed:
|
|
|
|
return qsTr("The message couldn't be parsed.");
|
|
|
|
case Olm.ReplayAttack:
|
|
|
|
return qsTr("The encryption key was reused! Someone is possibly trying to insert false messages into this chat!");
|
|
|
|
default:
|
|
|
|
return qsTr("Unknown decryption error");
|
|
|
|
}
|
|
|
|
}
|
2021-12-14 06:07:59 +03:00
|
|
|
color: Nheko.colors.text
|
2021-12-30 21:32:28 +03:00
|
|
|
width: parent.width
|
2021-08-07 23:51:09 +03:00
|
|
|
}
|
2021-11-21 06:07:57 +03:00
|
|
|
|
|
|
|
Button {
|
|
|
|
palette: Nheko.colors
|
|
|
|
visible: encryptionError == Olm.MissingSession || encryptionError == Olm.MissingSessionIndex
|
|
|
|
text: qsTr("Request key")
|
|
|
|
onClicked: room.requestKeyForEvent(eventId)
|
|
|
|
}
|
|
|
|
|
2021-08-07 23:51:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|