mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-22 14:38:15 +08:00
ScanEncryptorUtils.getDownloadBodyAndEncryptIfNeeded can throw, ensure it will not crash the application.
This commit is contained in:
parent
8056285776
commit
14a52d4a05
@ -26,6 +26,7 @@ import org.matrix.rustcomponents.sdk.crypto.PkEncryption
|
|||||||
|
|
||||||
internal object ScanEncryptorUtils {
|
internal object ScanEncryptorUtils {
|
||||||
|
|
||||||
|
@Throws
|
||||||
fun getDownloadBodyAndEncryptIfNeeded(publicServerKey: String?, mxcUrl: String, elementToDecrypt: ElementToDecrypt): DownloadBody {
|
fun getDownloadBodyAndEncryptIfNeeded(publicServerKey: String?, mxcUrl: String, elementToDecrypt: ElementToDecrypt): DownloadBody {
|
||||||
// TODO, upstream refactoring changed the object model here...
|
// TODO, upstream refactoring changed the object model here...
|
||||||
// it's bad we have to recreate and use hardcoded values
|
// it's bad we have to recreate and use hardcoded values
|
||||||
@ -43,6 +44,7 @@ internal object ScanEncryptorUtils {
|
|||||||
v = "v2"
|
v = "v2"
|
||||||
)
|
)
|
||||||
return if (publicServerKey != null) {
|
return if (publicServerKey != null) {
|
||||||
|
// Note: fromBase64 can throw Exception
|
||||||
val pkEncryption = PkEncryption.fromBase64(key = publicServerKey)
|
val pkEncryption = PkEncryption.fromBase64(key = publicServerKey)
|
||||||
val pkMessage = pkEncryption.encrypt(DownloadBody(encryptedInfo).toCanonicalJson())
|
val pkMessage = pkEncryption.encrypt(DownloadBody(encryptedInfo).toCanonicalJson())
|
||||||
DownloadBody(
|
DownloadBody(
|
||||||
|
@ -42,12 +42,12 @@ internal class DefaultScanEncryptedTask @Inject constructor(
|
|||||||
|
|
||||||
override suspend fun execute(params: ScanEncryptedTask.Params): ScanResponse {
|
override suspend fun execute(params: ScanEncryptedTask.Params): ScanResponse {
|
||||||
val mxcUrl = params.mxcUrl
|
val mxcUrl = params.mxcUrl
|
||||||
val dlBody = ScanEncryptorUtils.getDownloadBodyAndEncryptIfNeeded(params.publicServerKey, params.mxcUrl, params.encryptedInfo)
|
|
||||||
|
|
||||||
val scannerUrl = contentScannerStore.getScannerUrl()
|
val scannerUrl = contentScannerStore.getScannerUrl()
|
||||||
contentScannerStore.updateStateForContent(params.mxcUrl, ScanState.IN_PROGRESS, scannerUrl)
|
contentScannerStore.updateStateForContent(params.mxcUrl, ScanState.IN_PROGRESS, scannerUrl)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
val dlBody = ScanEncryptorUtils.getDownloadBodyAndEncryptIfNeeded(params.publicServerKey, params.mxcUrl, params.encryptedInfo)
|
||||||
val api = contentScannerApiProvider.contentScannerApi ?: throw IllegalArgumentException()
|
val api = contentScannerApiProvider.contentScannerApi ?: throw IllegalArgumentException()
|
||||||
val executeRequest = executeRequest<ScanResponse>(null) {
|
val executeRequest = executeRequest<ScanResponse>(null) {
|
||||||
api.scanFile(dlBody)
|
api.scanFile(dlBody)
|
||||||
|
Loading…
Reference in New Issue
Block a user